Skip to content
This repository has been archived by the owner on Sep 5, 2023. It is now read-only.

Commit

Permalink
Merge pull request #27 from mmz-srf/feature/PLATFORM-2830-updatable-s…
Browse files Browse the repository at this point in the history
…ecrets

Make gpg and jwt secrets updatable
  • Loading branch information
claudio-walser authored Feb 10, 2023
2 parents 95c9c03 + 0dcfae4 commit 98ff505
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.8.1
version: 1.8.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
1 change: 0 additions & 1 deletion templates/secret-gpg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ metadata:
labels:
{{ include "passbolt-helm.labels" . | indent 4 }}
annotations:
"helm.sh/hook": "pre-install"
"helm.sh/hook-delete-policy": "before-hook-creation"
data:
"serverkey.asc": {{ if .Values.passbolt.config.serverkey }}{{ .Values.passbolt.config.serverkey | b64enc | quote }}{{ else }}{{ .Files.Get "secrets/gpg/serverkey.asc" | b64enc | quote }}{{ end }}
Expand Down
1 change: 0 additions & 1 deletion templates/secret-jwt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ metadata:
labels:
{{ include "passbolt-helm.labels" . | indent 4 }}
annotations:
"helm.sh/hook": "pre-install"
"helm.sh/hook-delete-policy": "before-hook-creation"
data:
"jwt.key": {{ if .Values.passbolt.config.jwtkey }}{{ .Values.passbolt.config.jwtkey | b64enc | quote }}{{ else }}{{ .Files.Get "secrets/jwt/jwt.key" | b64enc | quote }}{{ end }}
Expand Down

0 comments on commit 98ff505

Please sign in to comment.