You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
307 lines
6.8 KiB
YAML
307 lines
6.8 KiB
YAML
# ┐ ┬o┬┌ ┬ ┐┌┐┐ ┬┬─┐
|
|
# │┌┘│├┴┐│ ││││┌ ││─┤
|
|
# └┘ ┘┘ ┘┘─┘┘└┘└─┘┘ ┘
|
|
|
|
nameOverride: ""
|
|
fullnameOverride: ""
|
|
|
|
serviceAccount:
|
|
# Specifies whether a service account should be created
|
|
create: true
|
|
# Annotations to add to the service account
|
|
annotations: {}
|
|
# Extra labels
|
|
extraLabels: {}
|
|
# The name of the service account to use.
|
|
# If not set and create is true, a name is generated using the fullname template
|
|
name: ""
|
|
|
|
# Extra labels that will be added to all resources
|
|
extraLabels: {}
|
|
|
|
# ┬─┐┬─┐┌─┐┌┐┐┌┐┐┬─┐┌┐┐┬─┐
|
|
# ├─ │┬┘│ ││││ │ ├─ ││││ │
|
|
# ┘ ┘└┘┘─┘┘└┘ ┘ ┴─┘┘└┘┘─┘
|
|
|
|
frontend:
|
|
# Public API URL that client's browser will reach
|
|
apiUrl: ""
|
|
|
|
replicaCount: 1
|
|
|
|
image:
|
|
repository: vikunja/frontend
|
|
pullPolicy: IfNotPresent
|
|
# Overrides the image tag whose default is the chart appVersion.
|
|
tag: ""
|
|
|
|
podSecurityContext: {}
|
|
# fsGroup: 1000
|
|
|
|
securityContext:
|
|
capabilities:
|
|
drop:
|
|
- ALL
|
|
# readOnlyRootFilesystem: true
|
|
# runAsNonRoot: true
|
|
# runAsUser: 1000
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 80
|
|
# If you want to set other fields, like externalName, externalTrafficPolicy, etc.
|
|
extraSpec: {}
|
|
|
|
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
|
|
|
|
autoscaling:
|
|
enabled: false
|
|
minReplicas: 1
|
|
maxReplicas: 100
|
|
targetCPUUtilizationPercentage: 80
|
|
# targetMemoryUtilizationPercentage: 80
|
|
|
|
initContainers: []
|
|
|
|
sidecarContainers: []
|
|
|
|
# Extra keys to set in deployment.spec.
|
|
# Useful if you want to set minReadySeconds, progressDeadlineSeconds, strategy
|
|
extraDeploymentSpec: {}
|
|
|
|
pdb:
|
|
enabled: false
|
|
# maxUnavailable: 50%
|
|
minAvailable: 50%
|
|
|
|
imagePullSecrets: []
|
|
|
|
podAnnotations: {}
|
|
|
|
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:
|
|
# Values for this config are described here https://vikunja.io/docs/config-options/
|
|
config:
|
|
service:
|
|
JWTSecret: ""
|
|
interface: ":3456"
|
|
frontendurl: ""
|
|
enableregistration: false
|
|
timezone: GMT
|
|
database:
|
|
type: sqlite
|
|
path: /sqlite/vikunja.db
|
|
cache:
|
|
enabled: true
|
|
type: redis
|
|
redis:
|
|
enabled: false
|
|
host: ""
|
|
password: ""
|
|
db: 0
|
|
cors:
|
|
enable: false
|
|
origins: []
|
|
mailer:
|
|
enabled: false
|
|
log:
|
|
path: null
|
|
files:
|
|
basepath: /files
|
|
defaultsettings:
|
|
avatar_provider: gravatar
|
|
discoverable_by_name: true
|
|
discoverable_by_email: true
|
|
week_start: 1
|
|
|
|
persistence:
|
|
enabled: false
|
|
spec: {}
|
|
# accessModes: ["ReadWriteOnce"]
|
|
# resources:
|
|
# requests:
|
|
# storage: 1Gi
|
|
# storageClassName: openebs-hostpath
|
|
|
|
replicaCount: 1
|
|
|
|
image:
|
|
repository: vikunja/api
|
|
pullPolicy: IfNotPresent
|
|
# Overrides the image tag whose default is the chart appVersion.
|
|
tag: ""
|
|
|
|
securityContext:
|
|
capabilities:
|
|
add: [CAP_CHOWN]
|
|
# readOnlyRootFilesystem: true
|
|
# runAsNonRoot: true
|
|
# runAsUser: 1000
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 80
|
|
# If you want to set other fields, like externalName, externalTrafficPolicy, etc.
|
|
extraSpec: {}
|
|
|
|
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
|
|
|
|
autoscaling:
|
|
enabled: false
|
|
minReplicas: 1
|
|
maxReplicas: 100
|
|
targetCPUUtilizationPercentage: 80
|
|
# targetMemoryUtilizationPercentage: 80
|
|
|
|
initContainers: []
|
|
|
|
sidecarContainers: []
|
|
|
|
# Extra keys to set in deployment.spec.
|
|
# Useful if you want to set minReadySeconds, progressDeadlineSeconds, strategy
|
|
extraDeploymentSpec: {}
|
|
|
|
pdb:
|
|
enabled: false
|
|
# maxUnavailable: 50%
|
|
minAvailable: 50%
|
|
|
|
imagePullSecrets: []
|
|
|
|
podAnnotations: {}
|
|
|
|
podSecurityContext: {}
|
|
# fsGroup: 1000
|
|
|
|
nodeSelector: {}
|
|
|
|
tolerations: []
|
|
|
|
affinity: {}
|
|
|
|
extraVolumes: []
|
|
|
|
extraVolumeMounts: []
|
|
|
|
livenessProbe: {}
|
|
# httpGet:
|
|
# path: /ready
|
|
# port: http
|
|
readinessProbe: {}
|
|
# httpGet:
|
|
# path: /ready
|
|
# port: http
|
|
startupProbe: {}
|
|
# httpGet:
|
|
# path: /
|
|
# port: http
|
|
|
|
env: {}
|
|
|
|
envFrom: {}
|
|
|
|
# ┬─┐┌─┐┐─┐┌┐┐┌─┐┬─┐┬─┐┐─┐┐─┐┬
|
|
# │─┘│ │└─┐ │ │ ┬│┬┘├─ └─┐│ ││
|
|
# ┘ ┘─┘──┘ ┘ ┘─┘┘└┘┴─┘──┘└─\┘─┘
|
|
|
|
postgresqlEnabled: false
|
|
# Please refer to PostgreSQL subchart for a full list of possible values
|
|
postgresql: {}
|
|
|
|
# ┬─┐┬─┐┬─┐o┐─┐
|
|
# │┬┘├─ │ ││└─┐
|
|
# ┘└┘┴─┘┘─┘┘──┘
|
|
|
|
redisEnabled: false
|
|
# Please refer to Redis subchart for a full list of possible values
|
|
redis: {}
|
|
|
|
# ┬─┐┬─┐┐ ┬
|
|
# │┬┘│─┤│││
|
|
# ┘└┘┘ ┘└┴┘
|
|
|
|
# You can create custom resources from the plaintext definition
|
|
raw: []
|