Files
charts/bitnami/nginx/ci/values-with-ingress-metrics-and-serverblock.yaml
Alex Eimer 2b03948fb8 [bitnami/nginx] Adds pdb to nginx (#4479)
* Adds pdb to nginx

* Fix readme

* Bump version to 8.2.0

* Adds tests for pdb

* Fix readme pdb.enabled => pdb.create
2020-11-26 11:11:23 +01:00

32 lines
570 B
YAML

# Test values file for generating all of the yaml and check that
# the rendering is correct
serverBlock: |-
server {
listen 0.0.0.0:8080;
root /app;
location / {
index index.html index.php;
}
location ~ \.php$ {
fastcgi_pass phpfpm-server:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
}
ingress:
enabled: true
tls: true
metrics:
enabled: true
## Kubeval doesn't recognise ServiceMonitor as a valid K8s object
# serviceMonitor:
# enabled: true
pdb:
create: true
minAvailable: 3
maxUnavailable: 5