Fix Tailscale operator: run as root (no longer needs restricted PodSecurity)
The Tailscale operator requires /.config and root-level paths. Namespace 'tailscale' had its pod-security.kubernetes.io/enforce label removed, so runAsNonRoot is no longer required.
This commit is contained in:
parent
0e60fff9a6
commit
fbf3e4a55b
1 changed files with 1 additions and 4 deletions
|
|
@ -32,12 +32,9 @@ spec:
|
||||||
useOAuth: false
|
useOAuth: false
|
||||||
useOIDC: false
|
useOIDC: false
|
||||||
podSecurityContext:
|
podSecurityContext:
|
||||||
runAsNonRoot: true
|
runAsUser: 0
|
||||||
runAsUser: 65532
|
|
||||||
runAsGroup: 65532
|
|
||||||
securityContext:
|
securityContext:
|
||||||
allowPrivilegeEscalation: false
|
allowPrivilegeEscalation: false
|
||||||
runAsNonRoot: true
|
|
||||||
seccompProfile:
|
seccompProfile:
|
||||||
type: RuntimeDefault
|
type: RuntimeDefault
|
||||||
capabilities:
|
capabilities:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue