From 324eacbebabaaf89b9b881b8039543a924a4f630 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils-Bo=CC=88rge=20Margotti?= Date: Sun, 29 Jan 2023 01:18:52 +0100 Subject: [PATCH] Update --- charts/vaultwarden/Chart.yaml | 2 +- charts/vaultwarden/templates/configmap.yaml | 12 ++++++------ charts/vaultwarden/values.yaml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/charts/vaultwarden/Chart.yaml b/charts/vaultwarden/Chart.yaml index 27b9f78..9e322ce 100644 --- a/charts/vaultwarden/Chart.yaml +++ b/charts/vaultwarden/Chart.yaml @@ -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: 0.2.10 +version: 0.2.11 # 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 diff --git a/charts/vaultwarden/templates/configmap.yaml b/charts/vaultwarden/templates/configmap.yaml index e6c5354..b262314 100644 --- a/charts/vaultwarden/templates/configmap.yaml +++ b/charts/vaultwarden/templates/configmap.yaml @@ -8,21 +8,21 @@ metadata: data: {{- with .Values.vaultwarden }} {{- with .accounts.register }} - SIGNUPS_ALLOWED: {{ print "%t" .enabled | quote }} - SIGNUPS_VERIFY: {{ print "%t" .verify | quote }} + SIGNUPS_ALLOWED: {{ print .enabled | quote }} + SIGNUPS_VERIFY: {{ print .verify | quote }} {{- if .domainAllowList }} SIGNUPS_DOMAINS_WHITELIST: {{ .domainAllowList | quote }} {{- end }} {{- end }} {{- with .accounts.invite }} - INVITATIONS_ALLOWED: {{ print "%t" .enabled | quote }} + INVITATIONS_ALLOWED: {{ print .enabled | quote }} INVITATION_ORG_NAME: {{ .inviter | default "Vaultwarden" }} INVITATION_EXPIRATION_HOURS: {{ .expiration | quote }} {{- end }} DOMAIN: {{ .domain | quote }} LOG_LEVEL: {{ .logLevel | quote }} {{- with .sends }} - SENDS_ALLOWED: {{ print "%t" .enabled | quote }} + SENDS_ALLOWED: {{ print .enabled | quote }} {{- end }} {{- with .server }} ROCKET_ADDRESS: {{ .address | quote }} @@ -37,11 +37,11 @@ data: SMTP_AUTH_MECHANISM: {{ .auth | quote }} {{- end }} {{- with .webVault }} - WEB_VAULT_ENABLED: {{ print "%t" .enabled | quote }} + WEB_VAULT_ENABLED: {{ print .enabled | quote }} WEB_VAULT_FOLDER: {{ .path | quote }} {{- end }} {{- with .websocket }} - WEBSOCKET_ENABLED: {{ print "%t" .enabled | quote }} + WEBSOCKET_ENABLED: {{ print .enabled | quote }} WEBSOCKET_ADDRESS: {{ .address | quote }} WEBSOCKET_PORT: {{ .port | quote }} {{- end }} diff --git a/charts/vaultwarden/values.yaml b/charts/vaultwarden/values.yaml index 3afef53..e8bfbf6 100644 --- a/charts/vaultwarden/values.yaml +++ b/charts/vaultwarden/values.yaml @@ -99,7 +99,7 @@ securityContext: {} service: type: ClusterIP - port: 80 + port: 8080 ingress: enabled: false