diff options
| author | Irbe Krumina <irbe@tailscale.com> | 2023-11-20 11:39:14 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-20 10:39:14 +0000 |
| commit | 4f80f403be8ef8cb45b3be583fecb06f20134c93 (patch) | |
| tree | dabd89dc017788316f0bfc6b0badc3ba0ed2bfc0 | |
| parent | 2fa219440bb5b408866413647ed92dac265ad919 (diff) | |
| download | tailscale-4f80f403be8ef8cb45b3be583fecb06f20134c93.tar.xz tailscale-4f80f403be8ef8cb45b3be583fecb06f20134c93.zip | |
cmd/k8s-operator: fix chart syntax error (#10333)
Updates #9222
Signed-off-by: Irbe Krumina <irbe@tailscale.com>
| -rw-r--r-- | cmd/k8s-operator/deploy/chart/templates/deployment.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/k8s-operator/deploy/chart/templates/deployment.yaml b/cmd/k8s-operator/deploy/chart/templates/deployment.yaml index fc39baff1..a451cf27f 100644 --- a/cmd/k8s-operator/deploy/chart/templates/deployment.yaml +++ b/cmd/k8s-operator/deploy/chart/templates/deployment.yaml @@ -29,7 +29,7 @@ spec: serviceAccountName: operator {{- with .Values.operatorConfig.podSecurityContext }} securityContext: - {{- toYaml .Values.operatorConfig.podSecurityContext | nindent 8 }} + {{- toYaml . | nindent 8 }} {{- end }} volumes: - name: oauth |
