mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-05-15 05:17:38 -02:30
Error in nginx when starting registry-proxy (#4785)
Error starting nginx because in requiredDropCapabilities is dropped all capabilities. The nginx requires the following capabilities: - CHOWN - SETGID - SETUID Signed-off-by: André R. de Miranda <andre@miranda.work>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
5d9946184a
commit
4bc204925a
@@ -17,7 +17,16 @@ spec:
|
|||||||
privileged: false
|
privileged: false
|
||||||
allowPrivilegeEscalation: false
|
allowPrivilegeEscalation: false
|
||||||
requiredDropCapabilities:
|
requiredDropCapabilities:
|
||||||
- ALL
|
- SETPCAP
|
||||||
|
- MKNOD
|
||||||
|
- AUDIT_WRITE
|
||||||
|
- NET_RAW
|
||||||
|
- DAC_OVERRIDE
|
||||||
|
- FOWNER
|
||||||
|
- FSETID
|
||||||
|
- KILL
|
||||||
|
- SYS_CHROOT
|
||||||
|
- SETFCAP
|
||||||
volumes:
|
volumes:
|
||||||
- 'configMap'
|
- 'configMap'
|
||||||
- 'emptyDir'
|
- 'emptyDir'
|
||||||
|
|||||||
Reference in New Issue
Block a user