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
3 changes: 3 additions & 0 deletions .scala-steward.conf
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@
# directory itself also contains a build.sbt the dot can be used to
# specify it. Default: ["."]
buildRoots = [ "acceptance-tests" ]
updates.ignore = [
{ groupId = "org.seleniumhq.selenium", artifactId = "selenium-java" }
]
13 changes: 12 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
.. _changelog:

0.60.0
------



0.59.0
------



=======
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
=======

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This shouldn't be there and it's making the tests about the docs fail.

0.58.1
------

Expand Down Expand Up @@ -83,7 +94,7 @@ Internal Changes
Individual Components
~~~~~~~~~~~~~~~~~~~~~

- `renku-search 0.6.1 <https://github.com/SwissDataScienceCenter/renku-search/releases/tag/v0.6.1>`_
- `renku-search 0.6.1 <https://github.com/SwissDataScienceCenter/renku-search/releases/tag/v0.6.0>`_
- `renku-ui 3.36.0 <https://github.com/SwissDataScienceCenter/renku-ui/releases/tag/3.36.0>`_
- `renku-ui 3.37.0 <https://github.com/SwissDataScienceCenter/renku-ui/releases/tag/3.37.0>`_
- `renku-ui 3.37.1 <https://github.com/SwissDataScienceCenter/renku-ui/releases/tag/3.37.1>`_
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
4 changes: 4 additions & 0 deletions helm-chart/values.yaml.changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ For changes that require manual steps other than changing values, please check o
Please follow this convention when adding a new row
* `<type: NEW|EDIT|DELETE> - *<resource name>*: <details>`

## Upgrading to Renku 0.59.0

* NEW ``global.certificates.securityContext`` has been added to allow customization of the `securityContext` for the containers managing custom/self-signed Certificate Authorities.

## Upgrading to Renku 0.57.0

* DELETE ``gateway.image.auth`` has been removed.
Expand Down
Loading