Skip to content

Commit

Permalink
revert: undo changes
Browse files Browse the repository at this point in the history
  • Loading branch information
franklinkim committed Jan 2, 2025
1 parent a7f9686 commit e98419f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/sesamy-umami/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
2 changes: 1 addition & 1 deletion charts/sesamy-umami/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e98419f

Please sign in to comment.