fukuops/k8s/charts/dokuwiki/values.yaml
cătălin 1fd2bfef3d
feat(helm): complete chart normalization with ConfigMap, HPA, and OCI migration
- 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
2026-08-14 09:35:19 +02:00

71 lines
1.1 KiB
YAML

dokuwiki:
replicaCount: 1
image:
repository: dokuwiki/dokuwiki
pullpolicy: IfNotPresent
tag: ""
imagePullSecrets: []
podAnnotations: {}
podSecurityContext: {}
securityContext: {}
service:
type: LoadBalancer
port: 8004
targetPort: 8080
ingress:
enabled: true
className: ""
annotations: {}
hosts:
- host: wiki.roboces.dev
paths:
- path: /
pathType: Prefix
tls: []
config:
php:
timezone: Europe/Madrid
memoryLimit: 512M
uploadLimit: 128M
persistence:
enabled: true
storageClass: "truenas-nfs-csi"
accessMode: ReadWriteMany
size: 2Gi
existingClaim: ""
autoscaling:
enabled: false
resources: {}
livenessProbe:
tcpSocket:
port: 8080
initialDelaySeconds: 30
timeoutSeconds: 15
successThreshold: 1
failureThreshold: 3
periodSeconds: 10
readinessProbe:
tcpSocket:
port: 8080
initialDelaySeconds: 15
timeoutSeconds: 2
successThreshold: 1
failureThreshold: 3
periodSeconds: 10
nodeSelector: {}
tolerations: []
affinity: {}
debug:
enabled: false