2020-08-23 12:56:55 -05:00
# Default values for gitea.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
2022-06-09 06:21:25 -05:00
## @section Global
#
## @param global.imageRegistry global image registry override
## @param global.imagePullSecrets global image pull secrets override; can be extended by `imagePullSecrets`
## @param global.storageClass global storage class override
2023-02-21 11:53:25 -06:00
## @param global.hostAliases global hostAliases which will be added to the pod's hosts files
2022-06-09 05:55:08 -05:00
global :
imageRegistry : ""
## E.g.
## imagePullSecrets:
## - myRegistryKeySecretName
##
imagePullSecrets : [ ]
storageClass : ""
2023-02-21 11:53:25 -06:00
hostAliases : [ ]
# - ip: 192.168.137.2
# hostnames:
# - example.com
2019-12-12 12:38:31 -06:00
2022-06-09 06:21:25 -05:00
## @param replicaCount number of replicas for the statefulset
2020-08-23 12:56:55 -05:00
replicaCount : 1
2019-12-12 12:38:31 -06:00
2022-06-09 06:21:25 -05:00
## @param clusterDomain cluster domain
2020-10-29 12:08:58 -05:00
clusterDomain : cluster.local
2022-06-09 06:21:25 -05:00
## @section Image
## @param image.registry image registry, e.g. gcr.io,docker.io
## @param image.repository Image to start for this pod
2022-07-09 15:43:04 -05:00
## @param image.tag Visit: [Image tag](https://hub.docker.com/r/gitea/gitea/tags?page=1&ordering=last_updated). Defaults to `appVersion` within Chart.yaml.
2022-06-09 06:21:25 -05:00
## @param image.pullPolicy Image pull policy
## @param image.rootless Wether or not to pull the rootless version of Gitea, only works on Gitea 1.14.x or higher
2020-08-23 12:56:55 -05:00
image :
2022-06-09 06:21:25 -05:00
registry : ""
2020-08-23 12:56:55 -05:00
repository : gitea/gitea
2022-03-01 08:55:44 -06:00
# Overrides the image tag whose default is the chart appVersion.
tag : ""
2020-08-23 12:56:55 -05:00
pullPolicy : Always
2021-04-29 04:12:48 -05:00
rootless : false # only possible when running 1.14 or later
2019-12-12 12:38:31 -06:00
2022-06-09 06:21:25 -05:00
## @param imagePullSecrets Secret to use for pulling the image
2020-08-23 12:56:55 -05:00
imagePullSecrets : [ ]
2019-12-12 12:38:31 -06:00
2022-06-09 06:21:25 -05:00
## @section Security
2021-12-18 05:10:48 -06:00
# Security context is only usable with rootless image due to image design
2022-06-09 06:21:25 -05:00
## @param podSecurityContext.fsGroup Set the shared file system group for all containers in the pod.
2021-12-18 05:10:48 -06:00
podSecurityContext :
fsGroup : 1000
2022-06-09 06:21:25 -05:00
## @param containerSecurityContext Security context
2021-12-18 05:10:48 -06:00
containerSecurityContext : {}
2021-07-01 10:02:56 -05:00
# allowPrivilegeEscalation: false
# capabilities:
# drop:
# - ALL
# # Add the SYS_CHROOT capability for root and rootless images if you intend to
# # run pods on nodes that use the container runtime cri-o. Otherwise, you will
# # get an error message from the SSH server that it is not possible to read from
# # the repository.
# # https://gitea.com/gitea/helm-chart/issues/161
# add:
# - SYS_CHROOT
# privileged: false
# readOnlyRootFilesystem: true
# runAsGroup: 1000
# runAsNonRoot: true
# runAsUser: 1000
2021-03-01 06:16:49 -06:00
2023-01-10 00:54:55 -06:00
## @deprecated The securityContext variable has been split two:
2022-06-09 06:21:25 -05:00
## - containerSecurityContext
## - podSecurityContext.
## @param securityContext Run init and Gitea containers as a specific securityContext
2021-12-18 05:10:48 -06:00
securityContext : {}
2022-06-09 06:21:25 -05:00
## @section Service
2019-12-12 12:38:31 -06:00
service :
2022-06-09 06:21:25 -05:00
## @param service.http.type Kubernetes service type for web traffic
## @param service.http.port Port number for web traffic
## @param service.http.clusterIP ClusterIP setting for http autosetup for statefulset is None
## @param service.http.loadBalancerIP LoadBalancer IP setting
## @param service.http.nodePort NodePort for http service
## @param service.http.externalTrafficPolicy If `service.http.type` is `NodePort` or `LoadBalancer`, set this to `Local` to enable source IP preservation
## @param service.http.externalIPs External IPs for service
## @param service.http.ipFamilyPolicy HTTP service dual-stack policy
## @param service.http.ipFamilies HTTP service dual-stack familiy selection,for dual-stack parameters see official kubernetes [dual-stack concept documentation](https://kubernetes.io/docs/concepts/services-networking/dual-stack/).
## @param service.http.loadBalancerSourceRanges Source range filter for http loadbalancer
## @param service.http.annotations HTTP service annotations
2019-12-12 12:38:31 -06:00
http :
2020-08-23 12:56:55 -05:00
type : ClusterIP
2019-12-12 12:38:31 -06:00
port : 3000
2020-12-16 06:37:47 -06:00
clusterIP : None
2022-06-09 06:21:25 -05:00
loadBalancerIP :
nodePort :
externalTrafficPolicy :
externalIPs :
ipFamilyPolicy :
ipFamilies :
2021-06-07 12:53:01 -05:00
loadBalancerSourceRanges : [ ]
2022-06-09 06:21:25 -05:00
annotations : {}
## @param service.ssh.type Kubernetes service type for ssh traffic
## @param service.ssh.port Port number for ssh traffic
## @param service.ssh.clusterIP ClusterIP setting for ssh autosetup for statefulset is None
## @param service.ssh.loadBalancerIP LoadBalancer IP setting
## @param service.ssh.nodePort NodePort for ssh service
## @param service.ssh.externalTrafficPolicy If `service.ssh.type` is `NodePort` or `LoadBalancer`, set this to `Local` to enable source IP preservation
## @param service.ssh.externalIPs External IPs for service
## @param service.ssh.ipFamilyPolicy SSH service dual-stack policy
## @param service.ssh.ipFamilies SSH service dual-stack familiy selection,for dual-stack parameters see official kubernetes [dual-stack concept documentation](https://kubernetes.io/docs/concepts/services-networking/dual-stack/).
## @param service.ssh.hostPort HostPort for ssh service
## @param service.ssh.loadBalancerSourceRanges Source range filter for ssh loadbalancer
## @param service.ssh.annotations SSH service annotations
2019-12-12 12:38:31 -06:00
ssh :
2020-08-23 12:56:55 -05:00
type : ClusterIP
2019-12-12 12:38:31 -06:00
port : 22
2020-12-16 06:37:47 -06:00
clusterIP : None
2022-06-09 06:21:25 -05:00
loadBalancerIP :
nodePort :
externalTrafficPolicy :
externalIPs :
ipFamilyPolicy :
ipFamilies :
hostPort :
2021-02-04 14:42:42 -06:00
loadBalancerSourceRanges : [ ]
2022-06-09 06:21:25 -05:00
annotations : {}
## @section Ingress
## @param ingress.enabled Enable ingress
## @param ingress.className Ingress class name
## @param ingress.annotations Ingress annotations
## @param ingress.hosts[0].host Default Ingress host
## @param ingress.hosts[0].paths[0].path Default Ingress path
## @param ingress.hosts[0].paths[0].pathType Ingress path type
## @param ingress.tls Ingress tls settings
## @extra ingress.apiVersion Specify APIVersion of ingress object. Mostly would only be used for argocd.
2020-08-23 12:56:55 -05:00
ingress :
2019-12-12 12:38:31 -06:00
enabled : false
2021-09-01 21:53:48 -05:00
# className: nginx
2022-06-09 06:21:25 -05:00
className :
2023-03-28 16:18:23 -05:00
annotations :
{}
2020-08-23 12:56:55 -05:00
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts :
2021-06-24 13:28:45 -05:00
- host : git.example.com
paths :
- path : /
pathType : Prefix
2020-08-23 12:56:55 -05:00
tls : [ ]
# - secretName: chart-example-tls
# hosts:
# - git.example.com
2021-12-20 05:54:37 -06:00
# Mostly for argocd or any other CI that uses `helm template | kubectl apply` or similar
# If helm doesn't correctly detect your ingress API version you can set it here.
# apiVersion: networking.k8s.io/v1
2020-08-23 12:56:55 -05:00
2022-06-09 06:21:25 -05:00
## @section StatefulSet
#
## @param resources Kubernetes resources
2023-03-28 16:18:23 -05:00
resources :
{}
2020-08-23 12:56:55 -05:00
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
2019-12-12 12:38:31 -06:00
2021-06-07 03:41:16 -05:00
## Use an alternate scheduler, e.g. "stork".
## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
##
2022-06-09 06:21:25 -05:00
## @param schedulerName Use an alternate scheduler, e.g. "stork"
schedulerName : ""
2021-06-07 03:41:16 -05:00
2022-06-09 06:21:25 -05:00
## @param nodeSelector NodeSelector for the statefulset
2019-12-12 12:38:31 -06:00
nodeSelector : {}
2020-08-23 12:56:55 -05:00
2022-06-09 06:21:25 -05:00
## @param tolerations Tolerations for the statefulset
2019-12-12 12:38:31 -06:00
tolerations : [ ]
2020-08-23 12:56:55 -05:00
2022-06-09 06:21:25 -05:00
## @param affinity Affinity for the statefulset
2019-12-12 12:38:31 -06:00
affinity : {}
2022-06-27 01:35:55 -05:00
## @param dnsConfig dnsConfig for the statefulset
dnsConfig : {}
2023-04-07 05:58:34 -05:00
## @param priorityClassName priorityClassName for the statefulset
priorityClassName : ""
2022-06-09 06:21:25 -05:00
## @param statefulset.env Additional environment variables to pass to containers
## @param statefulset.terminationGracePeriodSeconds How long to wait until forcefully kill the pod
## @param statefulset.labels Labels for the statefulset
## @param statefulset.annotations Annotations for the Gitea StatefulSet to be created
2020-08-23 12:56:55 -05:00
statefulset :
2023-03-28 16:18:23 -05:00
env :
[ ]
2020-09-10 05:15:34 -05:00
# - name: VARIABLE
# value: my-value
2020-08-23 12:56:55 -05:00
terminationGracePeriodSeconds : 60
2021-03-16 19:07:42 -05:00
labels : {}
2022-04-21 10:55:53 -05:00
annotations : {}
2020-08-23 12:56:55 -05:00
2023-05-31 03:47:58 -05:00
## @section ServiceAccount
## @param serviceAccount.create Enable the creation of a ServiceAccount
## @param serviceAccount.name Name of the created ServiceAccount, defaults to release name. Can also link to an externally provided ServiceAccount that should be used.
## @param serviceAccount.automountServiceAccountToken Enable/disable auto mounting of the service account token
## @param serviceAccount.imagePullSecrets Image pull secrets, available to the ServiceAccount
## @param serviceAccount.annotations Custom annotations for the ServiceAccount
## @param serviceAccount.labels Custom labels for the ServiceAccount
serviceAccount :
create : false
name : ""
automountServiceAccountToken : false
imagePullSecrets : [ ]
# - name: private-registry-access
annotations : {}
labels : {}
2022-06-09 06:21:25 -05:00
## @section Persistence
#
## @param persistence.enabled Enable persistent storage
## @param persistence.existingClaim Use an existing claim to store repository information
## @param persistence.size Size for persistence to store repo information
## @param persistence.accessModes AccessMode for persistence
## @param persistence.labels Labels for the persistence volume claim to be created
## @param persistence.annotations Annotations for the persistence volume claim to be created
## @param persistence.storageClass Name of the storage class to use
## @param persistence.subPath Subdirectory of the volume to mount at
2020-08-23 12:56:55 -05:00
persistence :
enabled : true
2022-06-09 06:21:25 -05:00
existingClaim :
2020-08-23 12:56:55 -05:00
size : 10Gi
accessModes :
- ReadWriteOnce
2021-01-22 02:24:37 -06:00
labels : {}
annotations : {}
2022-06-09 06:21:25 -05:00
storageClass :
subPath :
2020-08-23 12:56:55 -05:00
2022-06-09 06:21:25 -05:00
## @param extraVolumes Additional volumes to mount to the Gitea statefulset
2022-08-07 14:32:19 -05:00
extraVolumes : [ ]
2021-01-20 05:28:39 -06:00
# - name: postgres-ssl-vol
# secret:
# secretName: gitea-postgres-ssl
2022-08-07 14:32:19 -05:00
## @param extraContainerVolumeMounts Mounts that are only mapped into the Gitea runtime/main container, to e.g. override custom templates.
extraContainerVolumeMounts : [ ]
2021-01-20 05:28:39 -06:00
2022-08-07 14:32:19 -05:00
## @param extraInitVolumeMounts Mounts that are only mapped into the init-containers. Can be used for additional preconfiguration.
extraInitVolumeMounts : [ ]
2023-01-10 00:54:55 -06:00
## @deprecated The extraVolumeMounts variable has been split two:
2022-08-07 14:32:19 -05:00
## - extraContainerVolumeMounts
## - extraInitVolumeMounts
## As an example, can be used to mount a client cert when connecting to an external Postgres server.
## @param extraVolumeMounts **DEPRECATED** Additional volume mounts for init containers and the Gitea main container
extraVolumeMounts : [ ]
2021-01-20 05:28:39 -06:00
# - name: postgres-ssl-vol
# readOnly: true
# mountPath: "/pg-ssl"
2022-06-09 06:21:25 -05:00
## @section Init
## @param initPreScript Bash shell script copied verbatim to the start of the init-container.
2021-01-20 05:28:39 -06:00
initPreScript : ""
#
# initPreScript: |
# mkdir -p /data/git/.postgresql
# cp /pg-ssl/* /data/git/.postgresql/
# chown -R git:git /data/git/.postgresql/
# chmod 400 /data/git/.postgresql/postgresql.key
2023-04-01 06:35:11 -05:00
## @param initContainers.resources.limits initContainers.limits Kubernetes resource limits for init containers
## @param initContainers.resources.requests.cpu initContainers.requests.cpu Kubernetes cpu resource limits for init containers
## @param initContainers.resources.requests.memory initContainers.requests.memory Kubernetes memory resource limits for init containers
initContainers :
resources :
limits : {}
requests :
cpu : 100m
memory : 128Mi
2021-06-29 14:23:32 -05:00
# Configure commit/action signing prerequisites
2022-06-09 06:21:25 -05:00
## @section Signing
#
## @param signing.enabled Enable commit/action signing
## @param signing.gpgHome GPG home directory
2023-01-17 10:58:10 -06:00
## @param signing.privateKey Inline private gpg key for signed Gitea actions
## @param signing.existingSecret Use an existing secret to store the value of `signing.privateKey`
2021-06-29 14:23:32 -05:00
signing :
enabled : false
gpgHome : /data/git/.gnupg
2023-01-17 10:58:10 -06:00
privateKey : ""
# privateKey: |-
# -----BEGIN PGP PRIVATE KEY BLOCK-----
# ...
# -----END PGP PRIVATE KEY BLOCK-----
existingSecret : ""
2021-01-20 05:28:39 -06:00
2022-06-09 06:21:25 -05:00
## @section Gitea
#
2020-08-23 12:56:55 -05:00
gitea :
2022-06-09 06:21:25 -05:00
## @param gitea.admin.username Username for the Gitea admin user
## @param gitea.admin.existingSecret Use an existing secret to store admin user credentials
## @param gitea.admin.password Password for the Gitea admin user
## @param gitea.admin.email Email for the Gitea admin user
2020-08-23 12:56:55 -05:00
admin :
2023-03-28 16:18:23 -05:00
# existingSecret: gitea-admin-secret
2022-06-09 06:21:25 -05:00
existingSecret :
2020-08-23 12:56:55 -05:00
username : gitea_admin
password : r8sA8CPHD9!bt6d
email : "gitea@local.domain"
2022-06-09 06:21:25 -05:00
## @param gitea.metrics.enabled Enable Gitea metrics
## @param gitea.metrics.serviceMonitor.enabled Enable Gitea metrics service monitor
2021-01-21 09:45:26 -06:00
metrics :
enabled : false
serviceMonitor :
enabled : false
2021-06-07 09:28:28 -05:00
# additionalLabels:
# prometheus-release: prom1
2021-01-21 09:45:26 -06:00
2022-06-09 06:21:25 -05:00
## @param gitea.ldap LDAP configuration
2023-03-28 16:18:23 -05:00
ldap :
[ ]
2021-10-08 07:16:24 -05:00
# - name: "LDAP 1"
# existingSecret:
# securityProtocol:
# host:
# port:
# userSearchBase:
# userFilter:
# adminFilter:
# emailAttribute:
# bindDn:
# bindPassword:
# usernameAttribute:
# publicSSHKeyAttribute:
2020-08-23 12:56:55 -05:00
2021-12-20 08:43:55 -06:00
# Either specify inline `key` and `secret` or refer to them via `existingSecret`
2022-06-09 06:21:25 -05:00
## @param gitea.oauth OAuth configuration
2023-03-28 16:18:23 -05:00
oauth :
[ ]
2021-12-20 08:43:55 -06:00
# - name: 'OAuth 1'
# provider:
# key:
# secret:
# existingSecret:
# autoDiscoverUrl:
# useCustomUrls:
# customAuthUrl:
# customTokenUrl:
# customProfileUrl:
# customEmailUrl:
2021-03-01 06:24:11 -06:00
2022-06-09 06:21:25 -05:00
## @param gitea.config Configuration for the Gitea server,ref: [config-cheat-sheet](https://docs.gitea.io/en-us/config-cheat-sheet/)
2020-08-23 12:56:55 -05:00
config : {}
# APP_NAME: "Gitea: Git with a cup of tea"
2021-01-20 05:28:39 -06:00
# RUN_MODE: dev
#
2020-08-23 12:56:55 -05:00
# server:
# SSH_PORT: 22
#
# security:
# PASSWORD_COMPLEXITY: spec
2022-06-09 06:21:25 -05:00
## @param gitea.additionalConfigSources Additional configuration from secret or configmap
2021-12-22 04:44:04 -06:00
additionalConfigSources : [ ]
# - secret:
# secretName: gitea-app-ini-oauth
# - configMap:
# name: gitea-app-ini-plaintext
2022-06-09 06:21:25 -05:00
## @param gitea.additionalConfigFromEnvs Additional configuration sources from environment variables
2022-03-09 00:47:55 -06:00
additionalConfigFromEnvs : [ ]
2022-06-09 06:21:25 -05:00
## @param gitea.podAnnotations Annotations for the Gitea pod
2020-09-24 11:32:11 -05:00
podAnnotations : {}
2023-03-22 03:13:31 -05:00
## @param gitea.ssh.logLevel Configure OpenSSH's log level. Only available for root-based Gitea image.
ssh :
logLevel : "INFO"
2022-06-09 06:21:25 -05:00
## @section LivenessProbe
#
## @param gitea.livenessProbe.enabled Enable liveness probe
## @param gitea.livenessProbe.tcpSocket.port Port to probe for liveness
## @param gitea.livenessProbe.initialDelaySeconds Initial delay before liveness probe is initiated
## @param gitea.livenessProbe.timeoutSeconds Timeout for liveness probe
## @param gitea.livenessProbe.periodSeconds Period for liveness probe
## @param gitea.livenessProbe.successThreshold Success threshold for liveness probe
## @param gitea.livenessProbe.failureThreshold Failure threshold for liveness probe
2021-12-13 02:50:08 -06:00
# Modify the liveness probe for your needs or completely disable it by commenting out.
2021-03-01 08:46:05 -06:00
livenessProbe :
2022-06-09 06:21:25 -05:00
enabled : true
2021-12-13 02:50:08 -06:00
tcpSocket :
port : http
2021-03-01 08:46:05 -06:00
initialDelaySeconds : 200
timeoutSeconds : 1
periodSeconds : 10
successThreshold : 1
failureThreshold : 10
2021-12-13 02:50:08 -06:00
2022-06-09 06:21:25 -05:00
## @section ReadinessProbe
#
## @param gitea.readinessProbe.enabled Enable readiness probe
## @param gitea.readinessProbe.tcpSocket.port Port to probe for readiness
## @param gitea.readinessProbe.initialDelaySeconds Initial delay before readiness probe is initiated
## @param gitea.readinessProbe.timeoutSeconds Timeout for readiness probe
## @param gitea.readinessProbe.periodSeconds Period for readiness probe
## @param gitea.readinessProbe.successThreshold Success threshold for readiness probe
## @param gitea.readinessProbe.failureThreshold Failure threshold for readiness probe
2021-12-13 02:50:08 -06:00
# Modify the readiness probe for your needs or completely disable it by commenting out.
2021-03-01 08:46:05 -06:00
readinessProbe :
2022-06-09 06:21:25 -05:00
enabled : true
2021-12-13 02:50:08 -06:00
tcpSocket :
port : http
2021-03-01 08:46:05 -06:00
initialDelaySeconds : 5
timeoutSeconds : 1
periodSeconds : 10
successThreshold : 1
failureThreshold : 3
2021-12-13 02:50:08 -06:00
# # Uncomment the startup probe to enable and modify it for your needs.
2022-06-09 06:21:25 -05:00
## @section StartupProbe
#
## @param gitea.startupProbe.enabled Enable startup probe
## @param gitea.startupProbe.tcpSocket.port Port to probe for startup
## @param gitea.startupProbe.initialDelaySeconds Initial delay before startup probe is initiated
## @param gitea.startupProbe.timeoutSeconds Timeout for startup probe
## @param gitea.startupProbe.periodSeconds Period for startup probe
## @param gitea.startupProbe.successThreshold Success threshold for startup probe
## @param gitea.startupProbe.failureThreshold Failure threshold for startup probe
startupProbe :
enabled : false
tcpSocket :
port : http
initialDelaySeconds : 60
timeoutSeconds : 1
periodSeconds : 10
successThreshold : 1
failureThreshold : 10
2021-03-01 08:46:05 -06:00
2022-06-09 06:21:25 -05:00
## @section Memcached
#
## @param memcached.enabled Memcached is loaded as a dependency from [Bitnami](https://github.com/bitnami/charts/tree/master/bitnami/memcached) if enabled in the values. Complete Configuration can be taken from their website.
2023-03-28 16:11:33 -05:00
## ref: https://hub.docker.com/r/bitnami/memcached/tags/
## @param memcached.service.ports.memcached Port for Memcached
2020-08-23 12:56:55 -05:00
memcached :
2021-12-22 09:41:35 -06:00
enabled : true
2023-03-28 16:11:33 -05:00
# image:
# registry: docker.io
# repository: bitnami/memcached
# tag: ""
# digest: ""
# pullPolicy: IfNotPresent
# pullSecrets: []
2020-08-23 12:56:55 -05:00
service :
2023-03-28 16:11:33 -05:00
ports :
memcached : 11211
2020-08-23 12:56:55 -05:00
2022-06-09 06:21:25 -05:00
## @section PostgreSQL
#
## @param postgresql.enabled Enable PostgreSQL
2023-05-02 08:32:54 -05:00
## @param postgresql.global.postgresql.auth.password Password for the `gitea` user (overrides `auth.password`)
2023-03-27 12:12:29 -05:00
## @param postgresql.global.postgresql.auth.database Name for a custom database to create (overrides `auth.database`)
## @param postgresql.global.postgresql.auth.username Name for a custom user to create (overrides `auth.username`)
## @param postgresql.global.postgresql.service.ports.postgresql PostgreSQL service port (overrides `service.ports.postgresql`)
## @param postgresql.primary.persistence.size PVC Storage Request for PostgreSQL volume
2020-08-23 12:56:55 -05:00
postgresql :
2021-12-22 09:41:35 -06:00
enabled : true
2020-08-23 12:56:55 -05:00
global :
postgresql :
2023-03-27 12:12:29 -05:00
auth :
password : gitea
database : gitea
username : gitea
service :
ports :
postgresql : 5432
primary :
persistence :
size : 10Gi
2020-08-23 12:56:55 -05:00
2021-12-22 10:25:32 -06:00
# By default, removed or moved settings that still remain in a user defined values.yaml will cause Helm to fail running the install/update.
# Set it to false to skip this basic validation check.
2022-06-09 06:21:25 -05:00
## @section Advanced
## @param checkDeprecation Set it to false to skip this basic validation check.
2023-03-09 09:25:45 -06:00
## @param test.enabled Set it to false to disable test-connection Pod.
## @param test.image.name Image name for the wget container used in the test-connection Pod.
## @param test.image.tag Image tag for the wget container used in the test-connection Pod.
2021-12-22 10:25:32 -06:00
checkDeprecation : true
2023-03-09 09:25:45 -06:00
test :
enabled : true
image :
name : busybox
tag : latest
2023-05-02 08:32:54 -05:00
## @param extraDeploy Array of extra objects to deploy with the release
##
extraDeploy : [ ]