diff --git a/apigateway/helm/README.md b/apigateway/helm/README.md index 79b4782..5aae370 100644 --- a/apigateway/helm/README.md +++ b/apigateway/helm/README.md @@ -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`. | diff --git a/developerportal/helm/README.md b/developerportal/helm/README.md index 82e37f5..16a2cdf 100644 --- a/developerportal/helm/README.md +++ b/developerportal/helm/README.md @@ -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. | diff --git a/developerportal/helm/values.yaml b/developerportal/helm/values.yaml index e0fd7ef..19cb8c2 100644 --- a/developerportal/helm/values.yaml +++ b/developerportal/helm/values.yaml @@ -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. diff --git a/utils/image-builder-using-azure-devops/lagacy/Dockerfile b/utils/image-builder-using-azure-devops/lagacy/Dockerfile index 389f49d..e2c5d26 100644 --- a/utils/image-builder-using-azure-devops/lagacy/Dockerfile +++ b/utils/image-builder-using-azure-devops/lagacy/Dockerfile @@ -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 diff --git a/utils/image-builder-using-azure-devops/own-entrypoint/Dockerfile b/utils/image-builder-using-azure-devops/own-entrypoint/Dockerfile index 3aeabfd..973d1e2 100644 --- a/utils/image-builder-using-azure-devops/own-entrypoint/Dockerfile +++ b/utils/image-builder-using-azure-devops/own-entrypoint/Dockerfile @@ -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