Created
June 20, 2018 07:44
-
-
Save viktortnk/848e218ae8b4aa3ee948115da2103815 to your computer and use it in GitHub Desktop.
Nginx Ingress chart example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ingress-values-dev.yml | |
controller: | |
replicaCount: 3 | |
config: | |
ssl-redirect: "false" | |
hsts: "false" | |
hsts-include-subdomains: "true" | |
hsts-max-age: "0" | |
client-body-buffer-size: "128k" | |
disable-access-log: "true" | |
enable-vts-status: "true" | |
use-http2: "true" | |
enable-opentracing: "true" | |
zipkin-collector-host: jaeger-collector.prod.svc.cluster.local | |
headers: | |
X-GeoIP-Country: "$geoip_country_code" | |
X-GeoIP-Region-Name: "$geoip_region_name" | |
X-GeoIP-City: "$geoip_city" | |
X-GeoIP-Postal-Code: "$geoip_postal_code" | |
defaultSSLCertificate: default/tls-secret | |
stats: | |
enabled: true | |
statsExporter: | |
service: | |
annotations: | |
prometheus.io/scrape: "true" | |
prometheus.io/port: "9913" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment