update PSPs to allow projected volumes

This commit is contained in:
Mike Danese 2018-11-02 13:25:41 -07:00
parent cde4c9ebe1
commit 98c468de8d
4 changed files with 4 additions and 0 deletions

View File

@ -19,6 +19,7 @@ spec:
volumes: volumes:
- 'hostPath' - 'hostPath'
- 'secret' - 'secret'
- 'projected'
# TODO: This only needs a hostPath to read /etc/ssl/certs, # TODO: This only needs a hostPath to read /etc/ssl/certs,
# but it should be able to just include these in the image. # but it should be able to just include these in the image.
allowedHostPaths: allowedHostPaths:

View File

@ -20,6 +20,7 @@ spec:
- 'configMap' - 'configMap'
- 'hostPath' - 'hostPath'
- 'secret' - 'secret'
- 'projected'
allowedHostPaths: allowedHostPaths:
- pathPrefix: /var/log - pathPrefix: /var/log
- pathPrefix: /var/lib/docker/containers - pathPrefix: /var/lib/docker/containers

View File

@ -15,6 +15,7 @@ spec:
volumes: volumes:
- 'nfs' - 'nfs'
- 'secret' # Required for service account credentials. - 'secret' # Required for service account credentials.
- 'projected'
hostNetwork: false hostNetwork: false
hostIPC: false hostIPC: false
hostPID: false hostPID: false

View File

@ -39,6 +39,7 @@ spec:
- 'emptyDir' - 'emptyDir'
- 'configMap' - 'configMap'
- 'secret' - 'secret'
- 'projected'
hostNetwork: false hostNetwork: false
hostIPC: false hostIPC: false
hostPID: false hostPID: false