From df569499cbcce2137da467b4c84188cfa65203ae Mon Sep 17 00:00:00 2001 From: AnchorArray Date: Mon, 9 Dec 2024 16:39:25 -0700 Subject: [PATCH] multi-tenant mode should not be enabled by default --- charts/guardrails/README.md | 2 +- charts/guardrails/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/guardrails/README.md b/charts/guardrails/README.md index afcd6a4..9b40059 100644 --- a/charts/guardrails/README.md +++ b/charts/guardrails/README.md @@ -322,7 +322,7 @@ autoscaling: | serviceAccount.labels | object | `{}` | Labels to add to the service account. | | serviceAccount.name | string | `""` | If this is set and `serviceAccount.create` is `true` this will be used for the created `ServiceAccount` name, if set and `serviceAccount.create` is `false` then this will define an existing `ServiceAccount` to use. | | startupProbe | object | `{"failureThreshold":20,"httpGet":{"path":"/health","port":8000},"initialDelaySeconds":20,"periodSeconds":10}` | [Readiness probe](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/) configuration for the `guardrails` container. Liveness and readiness probes are suppressed until the startup probe succeeds. | -| tenancyMode | string | `"MULTI"` | tenancyMode for the guardrails service. Must be `SINGLE` or `MULTI`. | +| tenancyMode | string | `"SINGLE"` | tenancyMode for the guardrails service. Must be `SINGLE` or `MULTI`. | | tolerations | list | `[]` | Node taints which will be tolerated for `Pod` [scheduling](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/). | ---------------------------------------------- diff --git a/charts/guardrails/values.yaml b/charts/guardrails/values.yaml index 4af725c..39d015d 100644 --- a/charts/guardrails/values.yaml +++ b/charts/guardrails/values.yaml @@ -228,7 +228,7 @@ startupProbe: periodSeconds: 10 # -- (string) tenancyMode for the guardrails service. Must be `SINGLE` or `MULTI`. -tenancyMode: MULTI +tenancyMode: SINGLE # -- Node taints which will be tolerated for `Pod` # [scheduling](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/).