Enable HTTPS for vaultwarden

This commit is contained in:
Daniel Cosme
2026-05-07 21:11:11 -04:00
parent 2be057343f
commit 38e96bd999
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -17,6 +17,8 @@ spec:
spec: spec:
containers: containers:
- env: - env:
- name: DOMAIN
value: https://vault.danicos.me
- name: SIGNUPS_ALLOWED - name: SIGNUPS_ALLOWED
value: "true" value: "true"
image: quay.io/vaultwarden/server:1.36.0 image: quay.io/vaultwarden/server:1.36.0
+1 -1
View File
@@ -37,7 +37,7 @@ func Stack() stack.Stack {
func Deployment() apps.Deployment { func Deployment() apps.Deployment {
envMap := map[string]string{ envMap := map[string]string{
// "DOMAIN": root.Vaultwarden.Public.URL, "DOMAIN": root.Vaultwarden.Public.URL,
"SIGNUPS_ALLOWED": "true", "SIGNUPS_ALLOWED": "true",
} }
dataVol := kube.NewVolumeFrom(kube.VolumeSourcePVC, "data", pvc.Name) dataVol := kube.NewVolumeFrom(kube.VolumeSourcePVC, "data", pvc.Name)