helm-chart/values.yaml

290 lines
6.7 KiB
YAML
Raw Normal View History

2023-01-31 07:43:51 +00:00
# ┐ ┬o┬┌ ┬ ┐┌┐┐ ┬┬─┐
# │┌┘│├┴┐│ ││││┌ ││─┤
# └┘ ┘┘ ┘┘─┘┘└┘└─┘┘ ┘
nameOverride: ""
fullnameOverride: ""
serviceAccount:
# Specifies whether a service account should be created
create: true
# Annotations to add to the service account
annotations: {}
2023-01-31 08:11:00 +00:00
# Extra labels
extraLabels: {}
2023-01-31 07:43:51 +00:00
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
2023-01-31 08:11:00 +00:00
# Extra labels that will be added to all resources
extraLabels: {}
2023-01-31 07:43:51 +00:00
# ┬─┐┬─┐┌─┐┌┐┐┌┐┐┬─┐┌┐┐┬─┐
# ├─ │┬┘│ ││││ │ ├─ ││││ │
# ┘ ┘└┘┘─┘┘└┘ ┘ ┴─┘┘└┘┘─┘
frontend:
2023-01-31 08:11:00 +00:00
# Public API URL that client's browser will reach
2023-01-31 07:43:51 +00:00
apiUrl: ""
image:
repository: vikunja/frontend
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
2023-01-31 08:11:00 +00:00
tag: ""
2023-01-31 07:43:51 +00:00
2023-01-31 17:55:51 +00:00
podSecurityContext: {}
# fsGroup: 1000
2023-01-31 07:43:51 +00:00
securityContext:
allowPrivilegeEscalation: false
runAsUser: 101 # nginx
2023-01-31 07:43:51 +00:00
capabilities:
drop:
- ALL
add:
- NET_BIND_SERVICE
2023-01-31 07:43:51 +00:00
service:
type: ClusterIP
port: 80
2023-01-31 08:11:00 +00:00
# If you want to set other fields, like externalName, externalTrafficPolicy, etc.
extraSpec: {}
2023-01-31 07:43:51 +00:00
ingress:
enabled: false
className: ""
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths:
- path: /
pathType: ImplementationSpecific
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
resources: {}
# 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
replicaCount: 1
2023-01-31 07:43:51 +00:00
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 100
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80
2023-01-31 08:11:00 +00:00
initContainers: []
sidecarContainers: []
# Extra keys to set in deployment.spec.
# Useful if you want to set minReadySeconds, progressDeadlineSeconds, strategy
extraDeploymentSpec: {}
2023-02-21 13:44:51 +00:00
pdb:
enabled: false
# maxUnavailable: 50%
minAvailable: 50%
2023-01-31 08:11:00 +00:00
imagePullSecrets: []
podAnnotations: {}
2023-01-31 07:43:51 +00:00
nodeSelector: {}
tolerations: []
affinity: {}
extraVolumes: []
extraVolumeMounts: []
livenessProbe: {}
# httpGet:
# path: /ready
# port: http
readinessProbe: {}
# httpGet:
# path: /ready
# port: http
startupProbe: {}
# httpGet:
# path: /
# port: http
env: {}
envFrom: {}
# ┬─┐┬─┐o
# │─┤│─┘│
# ┘ ┘┘ ┘
api:
# Everything under this key is loaded into a native Vikunja yaml config: https://vikunja.io/docs/config-options/
2023-01-31 07:43:51 +00:00
config:
database:
type: sqlite
path: /sqlite/vikunja.db
files:
basepath: /files
persistence:
enabled: false
2023-09-15 12:14:37 +00:00
# Specifies whether a PVC should be created
create: true
# The name of the PVC to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
2023-01-31 07:43:51 +00:00
spec: {}
# accessModes: ["ReadWriteOnce"]
# resources:
# requests:
# storage: 1Gi
# storageClassName: openebs-hostpath
image:
repository: vikunja/api
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
2023-01-31 08:11:00 +00:00
tag: ""
2023-01-31 07:43:51 +00:00
securityContext:
capabilities:
2023-02-21 13:44:51 +00:00
add: [CAP_CHOWN]
2023-01-31 07:43:51 +00:00
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
service:
type: ClusterIP
port: 80
2023-01-31 08:11:00 +00:00
# If you want to set other fields, like externalName, externalTrafficPolicy, etc.
extraSpec: {}
2023-01-31 07:43:51 +00:00
ingress:
enabled: false
className: ""
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths:
- path: /
pathType: ImplementationSpecific
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
resources: {}
# 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
replicaCount: 1
2023-01-31 07:43:51 +00:00
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 100
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80
2023-01-31 08:11:00 +00:00
initContainers: []
sidecarContainers: []
# Extra keys to set in deployment.spec.
# Useful if you want to set minReadySeconds, progressDeadlineSeconds, strategy
extraDeploymentSpec: {}
2023-02-21 13:44:51 +00:00
pdb:
enabled: false
# maxUnavailable: 50%
minAvailable: 50%
2023-01-31 08:11:00 +00:00
imagePullSecrets: []
podAnnotations: {}
podSecurityContext: {}
# fsGroup: 1000
2023-01-31 07:43:51 +00:00
nodeSelector: {}
tolerations: []
affinity: {}
extraVolumes: []
extraVolumeMounts: []
livenessProbe: {}
# httpGet:
# path: /ready
# port: http
readinessProbe: {}
# httpGet:
# path: /ready
# port: http
startupProbe: {}
# httpGet:
# path: /
# port: http
env: {}
envFrom: {}
# ┬─┐┌─┐┐─┐┌┐┐┌─┐┬─┐┬─┐┐─┐┐─┐┬
# │─┘│ │└─┐ │ │ ┬│┬┘├─ └─┐│ ││
2023-01-31 07:43:51 +00:00
# ┘ ┘─┘──┘ ┘ ┘─┘┘└┘┴─┘──┘└─\┘─┘
postgresqlEnabled: false
# Please refer to PostgreSQL subchart for a full list of possible values
# https://github.com/bitnami/charts/tree/main/bitnami/postgresql/#parameters
2023-01-31 07:43:51 +00:00
postgresql: {}
# ┬─┐┬─┐┬─┐o┐─┐
# │┬┘├─ │ ││└─┐
# ┘└┘┴─┘┘─┘┘──┘
2023-01-31 17:55:51 +00:00
redisEnabled: false
2023-01-31 07:43:51 +00:00
# Please refer to Redis subchart for a full list of possible values
# https://github.com/bitnami/charts/tree/main/bitnami/redis/#parameters
2023-01-31 07:43:51 +00:00
redis: {}
2023-01-31 08:11:00 +00:00
# ┬─┐┬─┐┐ ┬
# │┬┘│─┤│││
# ┘└┘┘ ┘└┴┘
# You can create custom resources from the plaintext definition
raw: []