From 669b0c3e776bf0a4d6bd48c84ede5d51f08e4621 Mon Sep 17 00:00:00 2001 From: Anna Khanova <32508607+khanova@users.noreply.github.com> Date: Tue, 12 Dec 2023 17:24:47 +0100 Subject: [PATCH] Enable dynamic rate limiter by default (#47) --- charts/neon-proxy/Chart.yaml | 2 +- charts/neon-proxy/README.md | 3 ++- charts/neon-proxy/values.yaml | 2 ++ 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/charts/neon-proxy/Chart.yaml b/charts/neon-proxy/Chart.yaml index 7f7177b..e57b8b7 100644 --- a/charts/neon-proxy/Chart.yaml +++ b/charts/neon-proxy/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: neon-proxy description: Neon Proxy type: application -version: 1.7.4 +version: 1.7.5 appVersion: "0.1.0" kubeVersion: "^1.18.x-x" home: https://neon.tech diff --git a/charts/neon-proxy/README.md b/charts/neon-proxy/README.md index cdbefab..84c6f56 100644 --- a/charts/neon-proxy/README.md +++ b/charts/neon-proxy/README.md @@ -1,6 +1,6 @@ # neon-proxy -![Version: 1.7.4](https://img.shields.io/badge/Version-1.7.4-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.5](https://img.shields.io/badge/Version-1.7.5-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 @@ -64,6 +64,7 @@ Kubernetes: `^1.18.x-x` | settings.authBackend | string | `"link"` | auth method used (console|link|postgres) | | settings.authEndpoint | string | `""` | auth endpoint, e.g. "http://console.neon/authenticate_proxy_request/" | | settings.controlplane_token | string | `""` | (string) JWT token to pass to control plane management API | +| settings.disableDynamicRateLimiter | bool | `false` | (bool) Disable dynamic rate limiter | | settings.domain | string | `""` | domain used in TLS cert for client postgres connections | | settings.extraDomains | list | `[]` | domains used in extra TLS certs for client postgres connections | | settings.httpPoolOptIn | bool | `true` | (bool) Sets the SQL over HTTP Pool to opt-in-only mode if true. Set false to enable it always | diff --git a/charts/neon-proxy/values.yaml b/charts/neon-proxy/values.yaml index c5b38f1..b8d2aee 100644 --- a/charts/neon-proxy/values.yaml +++ b/charts/neon-proxy/values.yaml @@ -59,6 +59,8 @@ settings: wakeComputeLock: "permits=0" # 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: false serviceAccount: # serviceAccount.create - Specifies whether a service account should be created