Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apigateway/helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ Sub-folder `examples` contains some *values* examples for more use-cases. To use
| grpcService.hostname | string | `""` | |
| grpcService.type | string | `"LoadBalancer"` | |
| hostAliases | list | `[]` | Value to add extra host aliases to APIGW container. |
| image.pullPolicy | string | `"IfNotPresent"` | |
| 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 |
| 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 |
| 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. |
| imagePullSecrets | list | `[{"name":"regcred"}]` | Image pull secret reference. By default looks for `regcred`. |
Expand Down
2 changes: 1 addition & 1 deletion developerportal/helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ helm install webmethods/developerportal devportal
| autoscaling.targetCPUUtilizationPercentage | int | `80` | |
| devportal.clusterPorts.end | int | `47509` | |
| devportal.clusterPorts.start | int | `47500` | |
| 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 |
| 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 |
| devportal.elasticSearchDeployment | bool | `true` | Deploy Elasticsearch. Depends on Elasic Search Helm Charts. See https://github.com/elastic/helm-charts/blob/main/elasticsearch |
| devportal.port | int | `8083` | HTTP listening port. Use on wM version 10.15 (default): `8083`, 11.0: `8080` |
| 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. |
Expand Down
5 changes: 3 additions & 2 deletions developerportal/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,9 @@ devportal:
clusterPorts:
start: 47500
end: 47509
# -- 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
# -- 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
cspDomains: ""
# -- Use the default anti pod affinity.
# Specifies a Pod Anti-Affinity rule for Kubernetes pods.
Expand Down
1 change: 1 addition & 0 deletions utils/image-builder-using-azure-devops/lagacy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ RUN echo 'Debug Installer script: ' && echo && cat installer.script
# and Change user context to ...
USER sagadmin
RUN sh installer.bin -readScript installer.script -console
RUN echo 'Debug installation log ...' && echo && find . -name "installLog.txt" | xargs cat

# Cleanup ...
USER root
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ RUN echo 'Debug Installer script: ' && echo && cat installer.script
# and Change user context to ...
USER sagadmin
RUN sh installer.bin -readScript installer.script -console
RUN echo 'Debug installation log ...' && echo && find . -name "installLog.txt" | xargs cat

# Cleanup ...
USER root
Expand Down
Loading