63 lines
1.6 KiB
YAML
63 lines
1.6 KiB
YAML
image:
|
|
repository: shlinkio/shlink
|
|
pullPolicy: IfNotPresent
|
|
tag: 4.1.1@sha256:e34a3eb2fffaf39a39dc8cd8b97535f11481b6062c90400f7dcc6b4baf4ee870
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 10153
|
|
cnpg:
|
|
main:
|
|
enabled: true
|
|
user: shlink
|
|
database: shlink
|
|
redis:
|
|
enabled: true
|
|
includeCommon: true
|
|
redisUsername: "default"
|
|
portal:
|
|
open:
|
|
enabled: false
|
|
securityContext:
|
|
container:
|
|
runAsNonRoot: false
|
|
readOnlyRootFilesystem: false
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
probes:
|
|
liveness:
|
|
path: "/rest/health"
|
|
readiness:
|
|
path: "/rest/health"
|
|
startup:
|
|
path: "/rest/health"
|
|
env:
|
|
DEFAULT_DOMAIN: ""
|
|
GEOLITE_LICENSE_KEY: ""
|
|
ANONYMIZE_REMOTE_ADDR: true
|
|
ENABLE_PERIODIC_VISIT_LOCATE: true
|
|
IS_HTTPS_ENABLED: true
|
|
PORT: "{{ .Values.service.main.ports.main.port }}"
|
|
DB_DRIVER: "postgres"
|
|
DB_USER: "{{ .Values.cnpg.main.user }}"
|
|
DB_NAME: "{{ .Values.cnpg.main.database }}"
|
|
DB_PASSWORD:
|
|
secretKeyRef:
|
|
name: cnpg-main-user
|
|
key: password
|
|
DB_HOST:
|
|
secretKeyRef:
|
|
name: cnpg-main-urls
|
|
key: host
|
|
REDIS_SERVERS:
|
|
secretKeyRef:
|
|
expandObjectName: false
|
|
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
|
|
key: url
|