Closed alexminder closed 1 year ago
containerPort: 443 is hardcoded in to charts.
containerPort: 443
It requires to run pod in privileged mode:
securityContext: runAsUser: 0 runAsGroup: 0
And for OpenShift configure SCC require:
$ oc adm policy add-scc-to-user privileged -z system:serviceaccount:<NS>:<SA>
These are pointless actions and security downgrades. Can you change to unprivileged port, 8443?
Hello @alexminder, thanks for this request. I'll take a look to see what can be done for this as the webserver is setup by the upstream libraries.
Chart version v2.2.0 should now resolve this issue :)
containerPort: 443
is hardcoded in to charts.It requires to run pod in privileged mode:
And for OpenShift configure SCC require:
These are pointless actions and security downgrades. Can you change to unprivileged port, 8443?