Skip to content

Commit

Permalink
multi-tenant mode should not be enabled by default
Browse files Browse the repository at this point in the history
  • Loading branch information
AnchorArray committed Dec 9, 2024
1 parent 7c812d7 commit df56949
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/guardrails/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/). |

----------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion charts/guardrails/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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/).
Expand Down

0 comments on commit df56949

Please sign in to comment.