mirror of
https://github.com/bitnami/charts.git
synced 2026-03-16 14:57:08 +08:00
* Adds pdb to nginx * Fix readme * Bump version to 8.2.0 * Adds tests for pdb * Fix readme pdb.enabled => pdb.create
32 lines
570 B
YAML
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
|