Files
launchpad/infra/values/base/databunker-values.yaml
2026-04-27 13:00:37 +02:00

35 lines
1.2 KiB
YAML

# Default values for databunkerpro
image:
tag: 0.14.15
ingress:
enabled: false # Set to true to enable ingress
className: traefik
# Set host to enable ingress
host: databunker.example.com
annotations:
kubernetes.io/ingress.class: traefik
cert-manager.io/cluster-issuer: "letsencrypt-prod" # or your cluster issuer
traefik.ingress.kubernetes.io/ssl-redirect: "true"
traefik.ingress.kubernetes.io/force-ssl-redirect: "true"
traefik.ingress.kubernetes.io/ssl-passthrough: "false"
# Security headers
traefik.ingress.kubernetes.io/configuration-snippet: |
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always;
add_header X-Frame-Options DENY always;
add_header X-Content-Type-Options nosniff always;
add_header X-XSS-Protection "1; mode=block" always;
# TLS configuration
tls:
enabled: true # Set to true to enable TLS
secretName: "databunker-tls" # Name of the secret containing TLS certificate
resources:
# Uncomment and adjust these values based on your requirements
# requests:
# memory: "512Mi"
# cpu: "250m"
# limits:
# memory: "1Gi"
# cpu: "500m"