Disallow signups from vaultwarden

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