38 lines
621 B
YAML
38 lines
621 B
YAML
|
replicaCount: 1
|
||
|
|
||
|
image:
|
||
|
repository: nginx
|
||
|
pullPolicy: IfNotPresent
|
||
|
tag: "latest"
|
||
|
|
||
|
service:
|
||
|
type: ClusterIP
|
||
|
port: 80
|
||
|
|
||
|
ingress:
|
||
|
enabled: true
|
||
|
className: nginx
|
||
|
hosts:
|
||
|
- host: chart-example.local
|
||
|
paths:
|
||
|
- path: /
|
||
|
pathType: Prefix
|
||
|
|
||
|
persistence:
|
||
|
enabled: true
|
||
|
accessMode: ReadWriteOnce
|
||
|
size: 1Gi
|
||
|
storageClass: ""
|
||
|
|
||
|
|
||
|
ingress:
|
||
|
tls:
|
||
|
enabled: true
|
||
|
secretName: chart-example-tls
|
||
|
hosts:
|
||
|
- chart-example.local
|
||
|
annotations: {}
|
||
|
# kubernetes.io/ingress.class: nginx
|
||
|
# kubernetes.io/tls-acme: "true"
|
||
|
# cert-manager.io/cluster-issuer: "letsencrypt-prod"
|