26 lines
439 B
YAML
26 lines
439 B
YAML
|
|
replicaCount: 2
|
||
|
|
|
||
|
|
image:
|
||
|
|
repository: python-web-app
|
||
|
|
pullPolicy: IfNotPresent
|
||
|
|
tag: "latest"
|
||
|
|
|
||
|
|
service:
|
||
|
|
type: ClusterIP
|
||
|
|
port: 80
|
||
|
|
|
||
|
|
ingress:
|
||
|
|
enabled: true
|
||
|
|
hosts:
|
||
|
|
- host: k8smonitor.local
|
||
|
|
paths:
|
||
|
|
- path: /
|
||
|
|
pathType: ImplementationSpecific
|
||
|
|
annotations:
|
||
|
|
kubernetes.io/ingress.nginx._tls.k8smonitor.local: "cert-manager-challenge"
|
||
|
|
|
||
|
|
persistence:
|
||
|
|
enabled: true
|
||
|
|
size: 1Gi
|
||
|
|
storageClassName: standard
|