Files
truecharts/charts/stable/healthchecks/values.yaml
T
acf510ea13 (feat) Standardise and Harden default app securitycontext (#1028)
* Apply security hardened defaults to values.yaml for all apps

* Add default common securityContext to all apps

* Adjust securityContext defaults in questions.yaml, according to values.yaml

* Add default common podSecurityContext to all apps

* Clean whitespace

* Clean more whitespace

* Adjust podSecurityContext defaults in questions.yaml, according to values.yaml

* fix pgadmin

Co-authored-by: Stavros kois <s.kois@outlook.com>
2021-09-26 20:05:21 +02:00

53 lines
1.5 KiB
YAML

# Default values for healthchecks.
image:
# -- image repository
repository: ghcr.io/linuxserver/healthchecks
# -- image tag
tag: version-v1.22.0@sha256:11b714fd49962069da7352d420e93800354e44cf00754bb3fafb4dbd03a6f716
# -- image pull policy
pullPolicy: IfNotPresent
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
# -- Configures service settings for the chart.
# @default -- See values.yaml
service:
main:
ports:
main:
port: 8000
# -- environment variables. See [image docs](https://github.com/linuxserver/docker-healthchecks#parameters) for more details.
# @default -- See below
env:
# -- Set the container timezone
TZ: UTC
# -- Set to true to always override the local_settings.py file with values from environment variables. Do not set to True if you have made manual modifications to this file.
REGENERATE_SETTINGS: "True"
# -- The site's top-level URL and the port it listens to
SITE_ROOT: https://healthchecks.domain
# -- The site's name (e.g., "Example Corp HealthChecks")
SITE_NAME: 8265
# -- Superuser email
SUPERUSER_EMAIL: email@healthchecks.io
# -- Superuser password
SUPERUSER_PASSWORD: myVeryStrongPassword
# -- Configure persistence settings for the chart under this key.
# @default -- See values.yaml
persistence:
# -- Volume used for configuration
config:
enabled: true
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
mountpath: /config