- Added debug mode, structured ConfigMap pattern, and README to all charts - Migrated all flat-structure charts to hierarchical values under chartname key - Fixed templates to use correct hierarchical paths - Renamed helm-rustical key to rustical, added HPA support - Fixed ingress YAML parsing (oxicloud), nested env vars (rustical) - Pushed all normalized charts to OCI registry as 1.0.0+ and updated ArgoCD apps
76 lines
1.2 KiB
YAML
76 lines
1.2 KiB
YAML
vaultwarden:
|
|
replicaCount: 1
|
|
|
|
image:
|
|
repository: vaultwarden/server
|
|
pullpolicy: Always
|
|
tag: ""
|
|
|
|
imagePullSecrets: []
|
|
podAnnotations: {}
|
|
podSecurityContext: {}
|
|
securityContext: {}
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 80
|
|
targetPort: 80
|
|
|
|
ingress:
|
|
enabled: false
|
|
|
|
config:
|
|
database:
|
|
url: ""
|
|
enableWal: true
|
|
connectionRetries: 15
|
|
timeout: 30
|
|
idleTimeout: 600
|
|
minConns: 2
|
|
maxConns: 10
|
|
connInit: ""
|
|
webVault:
|
|
enabled: true
|
|
folder: "web-vault/"
|
|
|
|
persistence:
|
|
enabled: true
|
|
storageClass: "truenas-nfs-csi"
|
|
accessMode: ReadWriteMany
|
|
size: 5Gi
|
|
existingClaim: ""
|
|
|
|
autoscaling:
|
|
enabled: false
|
|
|
|
resources: {}
|
|
|
|
livenessProbe:
|
|
tcpSocket:
|
|
port: 80
|
|
initialDelaySeconds: 30
|
|
timeoutSeconds: 15
|
|
successThreshold: 1
|
|
failureThreshold: 3
|
|
periodSeconds: 10
|
|
|
|
readinessProbe:
|
|
tcpSocket:
|
|
port: 80
|
|
initialDelaySeconds: 15
|
|
timeoutSeconds: 2
|
|
successThreshold: 1
|
|
failureThreshold: 3
|
|
periodSeconds: 10
|
|
|
|
nodeSelector: {}
|
|
tolerations: []
|
|
affinity: {}
|
|
|
|
secret:
|
|
enabled: true
|
|
existingSecretName: "vaultwarden-kubernetes-secrets"
|
|
data: {}
|
|
|
|
debug:
|
|
enabled: false
|