Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(charts): cert management security context #3699

Open
wants to merge 11 commits into
base: release-0.60.0
Choose a base branch
from
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
.. _changelog:

0.60.0
------



0.59.0
------



0.58.0
------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@
- name: init-certificates
image: "{{ .Values.global.certificates.image.repository }}:{{ .Values.global.certificates.image.tag }}"
securityContext:
allowPrivilegeEscalation: false
runAsUser: 1000
runAsGroup: 1000
runAsNonRoot: true
{{ toYaml .Values.global.certificates.securityContext | indent 4 }}
volumeMounts:
- name: etc-ssl-certs
mountPath: /etc/ssl/certs/
Expand Down
5 changes: 5 additions & 0 deletions helm-chart/renku/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,11 @@ global:
tag: "0.0.2"
customCAs: []
# - secret:
securityContext:
allowPrivilegeEscalation: false
runAsUser: 1000
runAsGroup: 1000
runAsNonRoot: true
## Database credentials for postgres
db:
## Used by the renku-data-services and potentially other backend services
Expand Down