adding deployments and small adjustments

This commit is contained in:
2026-07-16 13:00:48 -03:00
parent ce8270290d
commit 656f9053b4
3 changed files with 204 additions and 92 deletions

View File

@@ -30,6 +30,31 @@ spec:
ports:
- containerPort: 80
name: vault-port
# /alive requires no authentication and verifies the Vaultwarden process
startupProbe:
httpGet:
path: /alive
port: vault-port
scheme: HTTP
periodSeconds: 5
timeoutSeconds: 3
failureThreshold: 30
readinessProbe:
httpGet:
path: /alive
port: vault-port
scheme: HTTP
periodSeconds: 10
timeoutSeconds: 3
failureThreshold: 3
livenessProbe:
httpGet:
path: /alive
port: vault-port
scheme: HTTP
periodSeconds: 15
timeoutSeconds: 3
failureThreshold: 6
volumeMounts:
- name: vaultwarden-data
mountPath: /data
@@ -87,9 +112,9 @@ metadata:
spec:
ingressClassName: nginx
tls:
- hosts:
- vault.haven
secretName: vaultwarden-tls
- hosts:
- vault.haven
secretName: vaultwarden-tls
rules:
- host: vault.haven
http:
@@ -120,4 +145,4 @@ spec:
service:
name: vaultwarden
port:
number: 80
number: 80