wordpress-helm/values.yaml
2025-09-23 10:49:42 -03:00

91 lines
1.3 KiB
YAML

replicaCount: 1
image:
repository: wordpress
pullPolicy: IfNotPresent
tag: "6.4.0-php8.2-apache"
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
podAnnotations: {}
podSecurityContext: {}
securityContext: {}
service:
type: ClusterIP
port: 80
ingress:
enabled: false
className: ""
annotations: {}
hosts:
- host: chart-example.local
paths:
- path: /
pathType: Prefix
tls: []
resources:
limits:
memory: 1Gi
requests:
cpu: 250m
memory: 512Mi
autoscaling:
enabled: true
minReplicas: 2
maxReplicas: 5
targetCPUUtilizationPercentage: 80
nodeSelector: {}
tolerations: []
affinity: {}
wordpress:
tablePrefix: "wp_"
authKey: ""
secureAuthKey: ""
loggedInKey: ""
nonceKey: ""
authSalt: ""
secureAuthSalt: ""
loggedInSalt: ""
nonceSalt: ""
postgresql:
host: "wordpress-website-postgresql"
database: "wordpress"
username: "wordpress"
password: "changeme"
image:
repository: postgres
tag: "15-alpine"
pullPolicy: IfNotPresent
resources:
limits:
cpu: 1000m
memory: 1Gi
requests:
cpu: 500m
memory: 512Mi
podSecurityContext: {}
persistence:
enabled: true
size: 20Gi
accessModes:
- ReadWriteOnce
storageClass: ""
persistence:
size: 20Gi
accessModes:
- ReadWriteOnce
storageClass: ""