## # This file contains Values.yaml content that gets added to the output of questions.yaml # It's ONLY meant for content that the user is NOT expected to change. # Example: Everything under "image" is not included in questions.yaml but is included here. ## image: repository: bitnami/phpmyadmin pullPolicy: IfNotPresent tag: 5.1.0-debian-10-r28 startAsRoot: true ## # Most other defaults are set in questions.yaml # For other options please refer to the wiki, default_values.yaml or the common library chart ## ## Probes configuration probes: liveness: enabled: true ## Set this to true if you wish to specify your own livenessProbe custom: true ## The spec field contains the values for the default livenessProbe. ## If you selected custom: true, this field holds the definition of the livenessProbe. spec: initialDelaySeconds: 30 timeoutSeconds: 30 periodSeconds: 10 successThreshold: 1 failureThreshold: 6 httpGet: path: / port: http readiness: enabled: true ## Set this to true if you wish to specify your own readinessProbe custom: true ## The spec field contains the values for the default readinessProbe. ## If you selected custom: true, this field holds the definition of the readinessProbe. spec: initialDelaySeconds: 30 timeoutSeconds: 30 periodSeconds: 10 successThreshold: 1 failureThreshold: 6 httpGet: path: / port: http startup: enabled: true ## Set this to true if you wish to specify your own startupProbe custom: true ## The spec field contains the values for the default startupProbe. ## If you selected custom: true, this field holds the definition of the startupProbe. spec: initialDelaySeconds: 30 timeoutSeconds: 30 periodSeconds: 10 successThreshold: 1 failureThreshold: 6 httpGet: path: / port: http