1234567891011121314151617181920 |
- # Copyright Broadcom, Inc. All Rights Reserved.
- # SPDX-License-Identifier: APACHE-2.0
- file:
- /bitnami/moodledata:
- exists: true
- filetype: directory
- mode: "2775"
- http:
- https://moodle:{{ .Vars.service.ports.https }}:
- status: 200
- allow-insecure: true
- 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
|