Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Nols1000 committed Jan 29, 2023
1 parent 6c18ecc commit 324eacb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion charts/vaultwarden/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: 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
Expand Down
12 changes: 6 additions & 6 deletions charts/vaultwarden/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion charts/vaultwarden/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ securityContext: {}

service:
type: ClusterIP
port: 80
port: 8080

ingress:
enabled: false
Expand Down

0 comments on commit 324eacb

Please sign in to comment.