35 lines
837 B
YAML
35 lines
837 B
YAML
env:
|
|
SECRET_KEY_BASE: sensitive_secret_key_base
|
|
SMTP_ADDRESS: smtp.yourhost.com
|
|
SMTP_AUTHENTICATION: plain
|
|
SMTP_DOMAIN: smtp.yourhost.com
|
|
SMTP_EMAIL_FROM: ciao@yourhost.com
|
|
SMTP_EMAIL_TO: you@yourhost.com
|
|
SMTP_ENABLE_STARTTLS_AUTO: "true"
|
|
SMTP_PASSWORD: sensitive_password
|
|
SMTP_PORT: "587"
|
|
SMTP_USERNAME: ciao
|
|
image:
|
|
pullPolicy: IfNotPresent
|
|
repository: tccr.io/truecharts/ciao
|
|
tag: latest@sha256:e8be249d55395f9033ee97c622a7e34082f5bfa83325182d00fb4de1de4c3b1d
|
|
persistence:
|
|
databaselocation:
|
|
enabled: true
|
|
mountPath: /app/db/sqlite
|
|
podSecurityContext:
|
|
runAsGroup: 0
|
|
runAsUser: 0
|
|
securityContext:
|
|
readOnlyRootFilesystem: false
|
|
runAsNonRoot: false
|
|
service:
|
|
main:
|
|
enabled: true
|
|
ports:
|
|
main:
|
|
enabled: true
|
|
port: 8090
|
|
protocol: TCP
|
|
targetPort: 3000
|