45 lines
789 B
YAML
45 lines
789 B
YAML
|
image:
|
||
|
repository: tccr.io/truecharts/clarkson
|
||
|
pullPolicy: IfNotPresent
|
||
|
tag: v1.1.2@sha256:cfbc3aca546a36a74d62969511c0bbc1aad521867610faf502ee8abe0dbe3258
|
||
|
|
||
|
strategy:
|
||
|
type: Recreate
|
||
|
|
||
|
securityContext:
|
||
|
runAsNonRoot: false
|
||
|
readOnlyRootFilesystem: false
|
||
|
|
||
|
|
||
|
podSecurityContext:
|
||
|
runAsUser: 0
|
||
|
runAsGroup: 0
|
||
|
|
||
|
service:
|
||
|
main:
|
||
|
ports:
|
||
|
main:
|
||
|
port: 10244
|
||
|
targetPort: 3000
|
||
|
|
||
|
env:
|
||
|
MYSQL_USERNAME: "{{ .Values.mariadb.mariadbUsername }}"
|
||
|
MYSQL_HOST:
|
||
|
secretKeyRef:
|
||
|
name: mariadbcreds
|
||
|
key: plainhost
|
||
|
MYSQL_PASSWORD:
|
||
|
secretKeyRef:
|
||
|
name: mariadbcreds
|
||
|
key: mariadb-password
|
||
|
|
||
|
persistence:
|
||
|
varrun:
|
||
|
enabled: true
|
||
|
|
||
|
mariadb:
|
||
|
enabled: true
|
||
|
mariadbUsername: clarkson
|
||
|
mariadbDatabase: clarkson
|
||
|
existingSecret: "mariadbcreds"
|