From 128d3ad1a9053e11bc1555c32c1e87ea726afa8c Mon Sep 17 00:00:00 2001 From: Gabriel Martinez <19713226+GMartinez-Sisti@users.noreply.github.com> Date: Wed, 22 Nov 2023 11:02:54 +0000 Subject: [PATCH] cmd/k8s-operator: helm chart add missing keys (#10296) * cmd/k8s-operator: add missing keys to Helm values file Updates #10182 Signed-off-by: Gabriel Martinez --- cmd/k8s-operator/deploy/chart/values.yaml | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/cmd/k8s-operator/deploy/chart/values.yaml b/cmd/k8s-operator/deploy/chart/values.yaml index 893e6c395..4cd9ce750 100644 --- a/cmd/k8s-operator/deploy/chart/values.yaml +++ b/cmd/k8s-operator/deploy/chart/values.yaml @@ -4,9 +4,9 @@ # Operator oauth credentials. If set a Kubernetes Secret with the provided # values will be created in the operator namespace. If unset a Secret named # operator-oauth must be precreated. -# oauth: -# clientId: "" -# clientSecret: "" +oauth: {} + # clientId: "" + # clientSecret: "" operatorConfig: image: @@ -15,11 +15,23 @@ operatorConfig: # used. tag: "" digest: "" + pullPolicy: Always logging: "info" hostname: "tailscale-operator" nodeSelector: kubernetes.io/os: linux + resources: {} + + podAnnotations: {} + + tolerations: [] + + affinity: {} + + podSecurityContext: {} + + securityContext: {} # proxyConfig contains configuraton that will be applied to any ingress/egress # proxies created by the operator. @@ -43,3 +55,5 @@ proxyConfig: # https://tailscale.com/kb/1236/kubernetes-operator/#accessing-the-kubernetes-control-plane-using-an-api-server-proxy apiServerProxyConfig: mode: "false" # "true", "false", "noauth" + +imagePullSecrets: []