Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit c894ff2

Browse files
authored
Merge pull request #119 from SoftwareAG/dev-thr
Azure Pipelines enhanced
2 parents 2eb026c + a354f33 commit c894ff2

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

apigateway/helm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ Sub-folder `examples` contains some *values* examples for more use-cases. To use
262262
| grpcService.hostname | string | `""` | |
263263
| grpcService.type | string | `"LoadBalancer"` | |
264264
| hostAliases | list | `[]` | Value to add extra host aliases to APIGW container. |
265-
| image.pullPolicy | string | `"IfNotPresent"` | |
265+
| image | object | `{"pullPolicy":"IfNotPresent","repository":"sagcr.azurecr.io/apigateway-minimal","tag":"10.15"}` | The number of old ReplicaSets to retain to allow rollback. revisionHistoryLimit: 10 |
266266
| image.repository | string | `"sagcr.azurecr.io/apigateway-minimal"` | The repository for the image. By default, this points to the Software AG container repository. Change this for air-gapped installations or custom images. For the Software AG container repository you need to have a valid access token stored as registry credentials |
267267
| image.tag | string | `"10.15"` | The image tag of the apigateway image default this will be the latest version. For realworld scenarios SAG recommends to use a specific version to not accidently change production versions with newer images. |
268268
| imagePullSecrets | list | `[{"name":"regcred"}]` | Image pull secret reference. By default looks for `regcred`. |

developerportal/helm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ helm install webmethods/developerportal devportal
6161
| autoscaling.targetCPUUtilizationPercentage | int | `80` | |
6262
| devportal.clusterPorts.end | int | `47509` | |
6363
| devportal.clusterPorts.start | int | `47500` | |
64-
| devportal.cspDomains | string | `""` | csp domains for SSO usage with external Identity providers. This should point to your identity provider domains. Controls the PORTAL_SERVER_CONFIG_HEADERS_CONTENT_SECURITY_POLICY environment variable for developer portal |
64+
| devportal.cspDomains | string | `""` | csp domains for SSO usage with external Identity providers. This should point to your identity provider domains. Controls the PORTAL_SERVER_CONFIG_HEADERS_CONTENT_SECURITY_POLICY environment variable for developer portal. More CSP information on https://tech.forums.softwareag.com/t/webmethods-developer-portal-csp-content-security-policy-troubleshooting/263736 |
6565
| devportal.elasticSearchDeployment | bool | `true` | Deploy Elasticsearch. Depends on Elasic Search Helm Charts. See https://github.com/elastic/helm-charts/blob/main/elasticsearch |
6666
| devportal.port | int | `8083` | HTTP listening port. Use on wM version 10.15 (default): `8083`, 11.0: `8080` |
6767
| devportal.useDefaultAffinityRule | bool | `true` | Use the default anti pod affinity. Specifies a Pod Anti-Affinity rule for Kubernetes pods. The default Pod Anti-Affinity is a scheduling preference that indicates how Kubernetes should distribute pods across nodes to avoid having multiple pods of the same application or with specific labels running on the same node. If you want to use your on rules, refer to affinity value and provide your own configuration. |

developerportal/helm/values.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,9 @@ devportal:
167167
clusterPorts:
168168
start: 47500
169169
end: 47509
170-
# -- csp domains for SSO usage with external Identity providers. This should point to your identity provider domains.
171-
# Controls the PORTAL_SERVER_CONFIG_HEADERS_CONTENT_SECURITY_POLICY environment variable for developer portal
170+
# -- csp domains for SSO usage with external Identity providers. This should point to your identity provider domains.
171+
# Controls the PORTAL_SERVER_CONFIG_HEADERS_CONTENT_SECURITY_POLICY environment variable for developer portal.
172+
# More CSP information on https://tech.forums.softwareag.com/t/webmethods-developer-portal-csp-content-security-policy-troubleshooting/263736
172173
cspDomains: ""
173174
# -- Use the default anti pod affinity.
174175
# Specifies a Pod Anti-Affinity rule for Kubernetes pods.

utils/image-builder-using-azure-devops/lagacy/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ RUN echo 'Debug Installer script: ' && echo && cat installer.script
4747
# and Change user context to ...
4848
USER sagadmin
4949
RUN sh installer.bin -readScript installer.script -console
50+
RUN echo 'Debug installation log ...' && echo && find . -name "installLog.txt" | xargs cat
5051

5152
# Cleanup ...
5253
USER root

utils/image-builder-using-azure-devops/own-entrypoint/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ RUN echo 'Debug Installer script: ' && echo && cat installer.script
4848
# and Change user context to ...
4949
USER sagadmin
5050
RUN sh installer.bin -readScript installer.script -console
51+
RUN echo 'Debug installation log ...' && echo && find . -name "installLog.txt" | xargs cat
5152

5253
# Cleanup ...
5354
USER root

0 commit comments

Comments
 (0)