2021-01-09 17:54:42 +00:00
|
|
|
playmaker_enabled: true
|
|
|
|
playmaker_publish: false
|
2021-01-25 18:04:57 +00:00
|
|
|
playmeker_short_name: "playmaker"
|
2021-01-09 17:54:42 +00:00
|
|
|
playmaker_default_values:
|
|
|
|
replicaCount: 1
|
|
|
|
image:
|
|
|
|
repository: "{{ docker_registry }}/playmaker"
|
|
|
|
pullPolicy: IfNotPresent
|
|
|
|
# Overrides the image tag whose default is the chart appVersion.
|
|
|
|
tag: "0.6.4"
|
|
|
|
|
|
|
|
imagePullSecrets: []
|
|
|
|
nameOverride: ""
|
|
|
|
fullnameOverride: "playmaker"
|
|
|
|
|
|
|
|
#env:
|
|
|
|
# - name: LANG_LOCALE
|
|
|
|
# value: "en_US"
|
|
|
|
# - name: LANG_TIMEZONE
|
|
|
|
# value: "Europe/Moscow"
|
|
|
|
# - name: DEVICE_CODE
|
|
|
|
# value: "gemini"
|
|
|
|
# - name: CRONTAB_STRING
|
|
|
|
# value: "0 2 * * *"
|
|
|
|
|
|
|
|
#credentials: |
|
|
|
|
# [google]
|
|
|
|
# email = YOUR_GOOGLE_EMAIL
|
|
|
|
# password = YOUR_GOOGLE_EMAIL_PASSWORD
|
|
|
|
|
|
|
|
serviceAccount:
|
|
|
|
# Specifies whether a service account should be created
|
|
|
|
create: true
|
|
|
|
# Annotations to add to the service account
|
|
|
|
annotations: {}
|
|
|
|
# The name of the service account to use.
|
|
|
|
# If not set and create is true, a name is generated using the fullname template
|
|
|
|
name: ""
|
|
|
|
|
|
|
|
podAnnotations: {}
|
|
|
|
|
|
|
|
podSecurityContext:
|
|
|
|
fsGroup: 999
|
|
|
|
|
|
|
|
securityContext: {}
|
|
|
|
# capabilities:
|
|
|
|
# drop:
|
|
|
|
# - ALL
|
|
|
|
# readOnlyRootFilesystem: true
|
|
|
|
# runAsNonRoot: true
|
|
|
|
# runAsUser: 1000
|
|
|
|
|
|
|
|
service:
|
|
|
|
type: ClusterIP
|
|
|
|
port: 80
|
|
|
|
|
|
|
|
ingress:
|
|
|
|
enabled: true
|
|
|
|
annotations:
|
|
|
|
kubernetes.io/ingress.class: "{{ external_ingress_class if playmaker_publish else internal_ingress_class }}"
|
|
|
|
cert-manager.io/cluster-issuer: "letsencrypt-prod"
|
|
|
|
kubernetes.io/tls-acme: "true"
|
|
|
|
hosts:
|
2021-01-25 18:04:57 +00:00
|
|
|
- host: "{{ playmaker_short_name }}.{{ domain }}"
|
2021-01-09 17:54:42 +00:00
|
|
|
paths: ["/"]
|
|
|
|
tls:
|
2021-01-25 18:04:57 +00:00
|
|
|
- secretName: "{{ playmaker_short_name }}.{{ domain }}-tls"
|
2021-01-09 17:54:42 +00:00
|
|
|
hosts:
|
2021-01-25 18:04:57 +00:00
|
|
|
- "{{ playmaker_short_name }}.{{ domain }}"
|
2021-01-09 17:54:42 +00:00
|
|
|
persistence:
|
|
|
|
enabled: true
|
|
|
|
storageClass: "{{ playmaker_storage | default('nfs-hdd') }}"
|
|
|
|
size: "{{ playmaker_size | default('20Gi') }}"
|
|
|
|
accessMode: "{{ playmaker_storage_mode | default('ReadWriteMany') }}"
|
|
|
|
|