2021-10-19 12:20:06 +00:00
|
|
|
image:
|
|
|
|
# -- image repository
|
2021-12-03 12:02:44 +00:00
|
|
|
repository: tccr.io/truecharts/recipes
|
2021-10-19 12:20:06 +00:00
|
|
|
# -- image tag
|
2021-12-03 14:07:49 +00:00
|
|
|
tag: v1.0.2@sha256:d61f230769c64948f1b2c56ec189666bb08821b02f383f4e0c299c35d2542cbc
|
2021-10-19 12:20:06 +00:00
|
|
|
# -- image pull policy
|
|
|
|
pullPolicy: IfNotPresent
|
|
|
|
|
|
|
|
nginxImage:
|
|
|
|
# -- nginx sidecar image repository
|
2021-12-03 12:10:34 +00:00
|
|
|
repository: tccr.io/truecharts/nginx
|
2021-10-19 12:20:06 +00:00
|
|
|
# -- nginx sidecar image tag
|
2021-12-03 14:07:49 +00:00
|
|
|
tag: v1.21.4@sha256:81b9486bd8b0f8c9d933013a4b4a6267463625e0dcc756c01ec766ba386f6c93
|
2021-10-19 12:20:06 +00:00
|
|
|
|
|
|
|
securityContext:
|
|
|
|
readOnlyRootFilesystem: false
|
|
|
|
runAsNonRoot: false
|
|
|
|
|
|
|
|
podSecurityContext:
|
|
|
|
runAsUser: 0
|
|
|
|
runAsGroup: 0
|
|
|
|
|
|
|
|
# -- environment variables. See [project docs](https://raw.githubusercontent.com/vabene1111/recipes/master/.env.template) for more details.
|
|
|
|
# @default -- See below
|
|
|
|
env:
|
|
|
|
TIMEZONE: UTC
|
|
|
|
DEBUG: 0
|
|
|
|
ALLOWED_HOSTS: "*"
|
|
|
|
SECRET_KEY: "changeme"
|
|
|
|
GUNICORN_MEDIA: 0
|
|
|
|
FRACTION_PREF_DEFAULT: 0
|
|
|
|
COMMENT_PREF_DEFAULT: 1
|
|
|
|
SHOPPING_MIN_AUTOSYNC_INTERVAL: 5
|
|
|
|
|
|
|
|
envTpl:
|
|
|
|
DB_ENGINE: "django.db.backends.postgresql"
|
|
|
|
POSTGRES_DB: "{{ .Values.postgresql.postgresqlDatabase }}"
|
|
|
|
POSTGRES_USER: "{{ .Values.postgresql.postgresqlUsername }}"
|
|
|
|
POSTGRES_PORT: "5432"
|
|
|
|
|
|
|
|
envValueFrom:
|
|
|
|
POSTGRES_PASSWORD:
|
|
|
|
secretKeyRef:
|
|
|
|
name: dbcreds
|
|
|
|
key: postgresql-password
|
|
|
|
POSTGRES_HOST:
|
|
|
|
secretKeyRef:
|
|
|
|
name: dbcreds
|
|
|
|
key: plainhost
|
|
|
|
|
|
|
|
additionalContainers:
|
|
|
|
nginx:
|
|
|
|
name: nginx
|
|
|
|
image: "{{ .Values.nginxImage.repository }}:{{ .Values.nginxImage.tag }}"
|
|
|
|
ports:
|
|
|
|
- containerPort: 80
|
|
|
|
name: main
|
|
|
|
volumeMounts:
|
|
|
|
- name: recipes-config
|
2021-11-14 19:19:16 +00:00
|
|
|
mountPath: "/etc/nginx/nginx.conf"
|
2021-10-19 12:20:06 +00:00
|
|
|
subPath: nginx-config
|
|
|
|
readOnly: true
|
|
|
|
- name: media
|
2021-11-14 19:19:16 +00:00
|
|
|
mountPath: "/media"
|
2021-10-19 12:20:06 +00:00
|
|
|
- name: static
|
2021-11-14 19:19:16 +00:00
|
|
|
mountPath: "/static"
|
2021-10-19 12:20:06 +00:00
|
|
|
|
|
|
|
# -- Configures service settings for the chart.
|
|
|
|
# @default -- See values.yaml
|
|
|
|
service:
|
|
|
|
main:
|
|
|
|
ports:
|
|
|
|
main:
|
2021-11-28 09:26:31 +00:00
|
|
|
port: 10029
|
2021-11-06 21:55:18 +00:00
|
|
|
targetPort: 80
|
2021-10-19 12:20:06 +00:00
|
|
|
|
|
|
|
# -- Configure persistence settings for the chart under this key.
|
|
|
|
# @default -- See values.yaml
|
|
|
|
persistence:
|
|
|
|
media:
|
|
|
|
enabled: true
|
2021-11-14 19:19:16 +00:00
|
|
|
mountPath: "/opt/recipes/mediafiles"
|
2021-10-19 12:20:06 +00:00
|
|
|
static:
|
|
|
|
enabled: true
|
|
|
|
type: emptyDir
|
2021-11-14 19:19:16 +00:00
|
|
|
mountPath: "/opt/recipes/staticfiles"
|
2021-10-19 12:20:06 +00:00
|
|
|
|
|
|
|
# Enabled postgres
|
|
|
|
postgresql:
|
|
|
|
enabled: true
|
|
|
|
existingSecret: "dbcreds"
|
|
|
|
postgresqlUsername: recipes
|
|
|
|
postgresqlDatabase: recipes
|