values.yaml を追加
This commit is contained in:
60
values.yaml
Normal file
60
values.yaml
Normal file
@@ -0,0 +1,60 @@
|
||||
replicaCount: 1
|
||||
|
||||
image:
|
||||
nginx:
|
||||
registry: docker.io
|
||||
repository: nginx
|
||||
tag: "1.29.3-alpine-perl"
|
||||
pullPolicy: IfNotPresent
|
||||
wordpress:
|
||||
registry: docker.io
|
||||
repository: repo-name
|
||||
tag: "fpm-alpine"
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
service:
|
||||
# type: ClusterIP
|
||||
type: LoadBalancer
|
||||
port: 80
|
||||
|
||||
ingress:
|
||||
enabled: false
|
||||
className: ""
|
||||
annotations: {}
|
||||
# {
|
||||
# acme.cert-manager.io/http01-ingress-class: "nginx",
|
||||
# cert-manager.io/cluster-issuer: "letsencrypt-issuer",
|
||||
# nginx.ingress.kubernetes.io/from-to-www-redirect: "true",
|
||||
# nginx.ingress.kubernetes.io/proxy-body-size: "100m"
|
||||
# }
|
||||
hosts:
|
||||
- host: example.tld
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
tls: []
|
||||
# [
|
||||
# {
|
||||
# hosts: [ "example.com" ],
|
||||
# secretName: "example-tls"
|
||||
# }
|
||||
# ]
|
||||
|
||||
persistence:
|
||||
enabled: true
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
|
||||
nginx:
|
||||
customConfig:
|
||||
enabled: false
|
||||
snippet: |-
|
||||
|
||||
externalDatabase:
|
||||
host: mariadb-hostname
|
||||
port: 3306
|
||||
database: dbname
|
||||
username: user
|
||||
password: pass
|
||||
|
||||
resources: {}
|
||||
Reference in New Issue
Block a user