Skip to content

Commit

Permalink
remove dead arg (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
conradludgate authored Oct 29, 2024
1 parent ec439e0 commit 496ba6e
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 12 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.10.0
version: 1.10.1
appVersion: "0.1.0"
kubeVersion: "^1.18.x-x"
home: https://neon.tech
Expand Down
3 changes: 1 addition & 2 deletions charts/neon-proxy/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# neon-proxy

![Version: 1.10.0](https://img.shields.io/badge/Version-1.10.0-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.10.1](https://img.shields.io/badge/Version-1.10.1-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 Expand Up @@ -73,7 +73,6 @@ Kubernetes: `^1.18.x-x`
| settings.awsSecretAccessKey | string | `""` | (string) AWS Secret Access Key |
| settings.connectComputeLock | string | `""` | (string) Configures the locking of connect_compute per compute |
| settings.controlplane_token | string | `""` | (string) JWT token to pass to control plane management API |
| settings.disableDynamicRateLimiter | bool | `true` | (bool) Disable dynamic rate limiter |
| settings.domain | string | `""` | domain used in TLS cert for client postgres connections |
| settings.endpointCacheConfig | string | `""` | (string) Config for cache for all valid endpoints |
| settings.endpointRpsLimits | list | `[]` | (list) list of rate limiters for connection attempts over different time intervals |
Expand Down
7 changes: 0 additions & 7 deletions charts/neon-proxy/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,6 @@ spec:
- --sql-over-http-pool-opt-in
- "false"
{{- end }}
{{- if .Values.settings.disableDynamicRateLimiter }}
- --disable-dynamic-rate-limiter
- "true"
{{- else}}
- --disable-dynamic-rate-limiter
- "false"
{{- end }}
{{- if .Values.settings.domain }}
- --tls-key
- /certs/tls.key
Expand Down
2 changes: 0 additions & 2 deletions charts/neon-proxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,6 @@ settings:
sqlOverHttpTimeout: "15s"
# settings.httpPoolOptIn -- (bool) Sets the SQL over HTTP Pool to opt-in-only mode if true. Set false to enable it always
httpPoolOptIn: true
# settings.disableDynamicRateLimiter -- (bool) Disable dynamic rate limiter
disableDynamicRateLimiter: true
# settings.endpointRpsLimits -- (list) list of rate limiters for connection attempts over different time intervals
endpointRpsLimits: []
# settings.wakeComputeLimits -- (list) list of rate limiters for wake_compute over different time intervals
Expand Down

0 comments on commit 496ba6e

Please sign in to comment.