From 187e8bde4d6ca85d0844e4651a862e56fb4f6fba Mon Sep 17 00:00:00 2001 From: DarthSim Date: Sat, 9 Mar 2024 19:50:03 +0300 Subject: [PATCH] Set default resources.ingress.hosts to [null] --- Readme.md | 2 +- imgproxy/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index d19842f..58840d2 100644 --- a/Readme.md +++ b/Readme.md @@ -412,7 +412,7 @@ Deployment specific options. |**resources.ingress.annotations**|Additional annotations for the ingress resource|| |**resources.ingress.enabled**|When true, enables ingress resource for imgproxy|`false`| |**resources.ingress.health.whitelist**|Comma separated string of CIDR addresses that are allowed to access `/health` url of imgproxy|| -|**resources.ingress.hosts**|Hostnames for the ingress resource to use|`["example.com"]`| +|**resources.ingress.hosts**|Hostnames for the ingress resource to use|`[null]`| |**resources.ingress.pathSuffix**|Suffix to be added to path prefix, for example wildcard '*' for AWS balancer|| |**resources.ingress.tls**|TLS config array|| |**resources.ingress.tls[].hosts**|Hostnames this tls secret is used for|`["example.com"]`| diff --git a/imgproxy/values.yaml b/imgproxy/values.yaml index 80bc787..b736391 100644 --- a/imgproxy/values.yaml +++ b/imgproxy/values.yaml @@ -202,7 +202,7 @@ resources: annotations: {} # kubernetes.io/ingress.class: nginx # kubernetes.io/tls-acme: "true" - hosts: [] + hosts: [null] # - example.com # - www.example.com tls: []