Skip to content

Commit

Permalink
fix quotation of --endpoint-rps-limit in proxy, take 2
Browse files Browse the repository at this point in the history
  • Loading branch information
kelvich committed Dec 17, 2023
1 parent ca01d90 commit 7b1d354
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/neon-proxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: neon-proxy
description: Neon Proxy
type: application
version: 1.7.9
version: 1.7.10
appVersion: "0.1.0"
kubeVersion: "^1.18.x-x"
home: https://neon.tech
Expand Down
2 changes: 1 addition & 1 deletion charts/neon-proxy/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# neon-proxy

![Version: 1.7.9](https://img.shields.io/badge/Version-1.7.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) [![Lint and Test Charts](https://github.com/neondatabase/helm-charts/actions/workflows/lint-test.yaml/badge.svg)](https://github.com/neondatabase/helm-charts/actions/workflows/lint-test.yaml)
![Version: 1.7.10](https://img.shields.io/badge/Version-1.7.10-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) [![Lint and Test Charts](https://github.com/neondatabase/helm-charts/actions/workflows/lint-test.yaml/badge.svg)](https://github.com/neondatabase/helm-charts/actions/workflows/lint-test.yaml)

Neon Proxy

Expand Down
6 changes: 3 additions & 3 deletions charts/neon-proxy/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,13 @@ spec:
- --certs-dir
- /certs-extra
{{- end }}
{{- range .Values.settings.endpointRpsLimits }}
- --endpoint-rps-limit="{{ . | quote }}"
{{- end }}
{{- with .Values.settings.wakeComputeLock }}
- --wake-compute-lock
- {{ . }}
{{- end }}
{{- range .Values.settings.endpointRpsLimits }}
--endpoint-rps-limit={{ . | quote }}
{{- end }}
{{- if .Values.settings }}
env:
{{- with .Values.settings.otelExporterOtlpEndpoint }}
Expand Down

0 comments on commit 7b1d354

Please sign in to comment.