From e98419f47377721ae252d6a507a7677778f020a1 Mon Sep 17 00:00:00 2001 From: Kevin Franklin Kim Date: Thu, 2 Jan 2025 16:47:29 +0100 Subject: [PATCH] revert: undo changes --- charts/sesamy-umami/README.md | 2 +- charts/sesamy-umami/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/sesamy-umami/README.md b/charts/sesamy-umami/README.md index 57ec465..767b294 100644 --- a/charts/sesamy-umami/README.md +++ b/charts/sesamy-umami/README.md @@ -32,7 +32,7 @@ Helm chart for the Sesamy Umami integration. | networkPolicy.metrics.cidrs | list | `[]` | Specifies specific network CIDRs which are allowed to access the metrics port. In case you use namespaceSelector, you also have to specify your kubelet networks here. The metrics ports are also used for probes. | | networkPolicy.metrics.namespaceSelector | object | `{}` | Specifies the namespaces which are allowed to access the metrics port | | networkPolicy.metrics.podSelector | object | `{}` | Specifies the Pods which are allowed to access the metrics port. As this is cross-namespace communication, you also need the namespaceSelector. | -| proxy.config | string | `"server {\n listen 443 ssl;\n\n ssl_certificate /etc/nginx/ssl/tls.crt;\n ssl_certificate_key /etc/nginx/ssl/tls.key;\n ssl_session_cache shared:SSL:10m;\n ssl_session_timeout 1h;\n ssl_buffer_size 8k;\n\n location / {\n proxy_pass http://0.0.0.0:{{ .Values.umami.service.port }};\n proxy_set_header Host $host;\n proxy_set_header X-Real-IP $remote_addr;\n proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n proxy_set_header X-Forwarded-Host $server_name;\n proxy_set_header Upgrade $http_upgrade;\n proxy_set_header Connection 'upgrade';\n proxy_cache_bypass $http_upgrade;\n }\n}\n"` | See values.yaml | +| proxy.config | string | see values.yaml | Nginx SSL Reverse Proxy config. The value is templated using `tpl`. | | proxy.image.pullPolicy | string | `"IfNotPresent"` | The image pull policy | | proxy.image.repository | string | `"nginx"` | The image repository | | proxy.image.tag | string | `"1.25-alpine"` | The image tag | diff --git a/charts/sesamy-umami/values.yaml b/charts/sesamy-umami/values.yaml index 9d592d7..3d84db4 100644 --- a/charts/sesamy-umami/values.yaml +++ b/charts/sesamy-umami/values.yaml @@ -32,7 +32,7 @@ proxy: resources: {} # -- Nginx SSL Reverse Proxy config. # The value is templated using `tpl`. - # -- See values.yaml + # @default -- see values.yaml config: | server { listen 443 ssl;