1234567891011121314151617181920212223242526272829 |
- # Copyright Broadcom, Inc. All Rights Reserved.
- # SPDX-License-Identifier: APACHE-2.0
- file:
- /host/proc:
- exists: true
- filetype: directory
- mode: "0555"
- owner: root
- /host/sys:
- exists: true
- filetype: directory
- mode: "0555"
- owner: root
- command:
- {{- $uid := .Vars.containerSecurityContext.runAsUser }}
- {{- $gid := .Vars.podSecurityContext.fsGroup }}
- check-user-info:
- # The UID and GID should always be either the one specified as vars (always a bigger number that the default)
- # or the one randomly defined by openshift (larger values). Otherwise, the chart is still using the default value.
- exec: if [ $(id -u) -lt {{ $uid }} ] || [ $(id -G | awk '{print $2}') -lt {{ $gid }} ]; then exit 1; fi
- exit-status: 0
- {{ if .Vars.automountServiceAccountToken }}
- check-sa:
- exec: cat /var/run/secrets/kubernetes.io/serviceaccount/token | cut -d '.' -f 2 | xargs -I '{}' echo '{}====' | fold -w 4 | sed '$ d' | tr -d '\n' | base64 -d
- exit-status: 0
- stdout:
- - /serviceaccount.*name.*{{.Env.BITNAMI_APP_NAME }}/
- {{ end }}
|