Files
Cees-Jan Kiewiet 2ace5c85fa [stable/quassel] Update image and deployment apiVersion (#18569)
* [stable/quassel] Update to latest quassel-core image tag

The current tag is two+ years old and new versions have been released.
Also the repo seems to do weekly/monthly image update to unsure all
packages inside are up te date.

Signed-off-by: Cees-Jan Kiewiet <ceesjank@gmail.com>

* [stable/quassel] Update apiVersion to apps/v1

apps/v1beta2 isn't supported anymore on the latest k8s. (Tested on this
1.16.)

Signed-off-by: Cees-Jan Kiewiet <ceesjank@gmail.com>
2020-07-18 06:08:51 -07:00

100 lines
2.4 KiB
YAML

# Default values for quassel.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
# imagePullSecrets:
image:
repository: linuxserver/quassel-core
tag: 0.13.1-ls33
pullPolicy: IfNotPresent
# User and Group IDs to run Quassel as
uid: 1000
gid: 1000
service:
port: 4242
type: ClusterIP
# nodePort:
externalIPs: []
persistence:
enabled: true
## Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
##
# storageClass: "-"
## A manually managed Persistent Volume and Claim
## Requires persistence.enabled: true
## If defined, PVC must be created manually before volume will be bound
# existingClaim:
accessMode: ReadWriteOnce
size: 1Gi
resources: {}
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
nodeSelector: {}
tolerations: []
affinity: {}
## Configuration values for the postgresql dependency.
## ref: https://github.com/kubernetes/charts/blob/master/stable/postgresql/README.md
##
postgresql:
## Use the PostgreSQL chart dependency.
##
enabled: false
### PostgreSQL User to create.
##
postgresUser: quassel
## PostgreSQL Password for the new user.
## If not set, a random 10 characters password will be used.
##
# postgresPassword: quassel
## PostgreSQL Database to create.
##
postgresDatabase: quassel
## Persistent Volume Storage configuration.
## ref: https://kubernetes.io/docs/user-guide/persistent-volumes
##
persistence:
## Enable PostgreSQL persistence using Persistent Volume Claims.
##
enabled: true
## Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
##
# storageClass: "-"
## A manually managed Persistent Volume and Claim
## Requires persistence.enabled: true
## If defined, PVC must be created manually before volume will be bound
# existingClaim:
accessMode: ReadWriteOnce
size: 1Gi