save receipes
This commit is contained in:
parent
e9148bc1af
commit
93341e9142
1 changed files with 26 additions and 8 deletions
|
|
@ -110,6 +110,18 @@ spec:
|
||||||
value: tandoorpassword
|
value: tandoorpassword
|
||||||
- name: POSTGRES_DB
|
- name: POSTGRES_DB
|
||||||
value: tandoor
|
value: tandoor
|
||||||
|
- name: SITE_URL
|
||||||
|
value: https://mealcraft.com
|
||||||
|
- name: ALLOWED_HOSTS
|
||||||
|
value: mealcraft.com
|
||||||
|
- name: CSRF_TRUSTED_ORIGINS
|
||||||
|
value: https://mealcraft.com
|
||||||
|
- name: NGINX_PROXY
|
||||||
|
value: "1"
|
||||||
|
- name: DEBUG
|
||||||
|
value: "1"
|
||||||
|
- name: SECURE_PROXY_SSL_HEADER
|
||||||
|
value: HTTP_X_FORWARDED_PROTO,https
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- mountPath: /var/lib/postgresql/data
|
- mountPath: /var/lib/postgresql/data
|
||||||
name: postgres-storage
|
name: postgres-storage
|
||||||
|
|
@ -191,31 +203,37 @@ spec:
|
||||||
|
|
||||||
containers:
|
containers:
|
||||||
- name: tandoor
|
- name: tandoor
|
||||||
image: vabene1111/recipes:latest
|
image: vabene1111/recipes:1.5.24
|
||||||
|
|
||||||
env:
|
env:
|
||||||
- name: SECRET_KEY
|
- name: SECRET_KEY
|
||||||
value: replace-with-long-random-string
|
value: replace-with-long-random-string
|
||||||
|
|
||||||
- name: DB_ENGINE
|
- name: DB_ENGINE
|
||||||
value: django.db.backends.postgresql
|
value: django.db.backends.postgresql
|
||||||
|
|
||||||
- name: POSTGRES_HOST
|
- name: POSTGRES_HOST
|
||||||
value: tandoor-postgres
|
value: tandoor-postgres
|
||||||
- name: POSTGRES_PORT
|
- name: POSTGRES_PORT
|
||||||
value: "5432"
|
value: "5432"
|
||||||
|
- name: POSTGRES_DB
|
||||||
|
value: tandoor
|
||||||
- name: POSTGRES_USER
|
- name: POSTGRES_USER
|
||||||
value: tandoor
|
value: tandoor
|
||||||
- name: POSTGRES_PASSWORD
|
- name: POSTGRES_PASSWORD
|
||||||
value: tandoorpassword
|
value: tandoorpassword
|
||||||
- name: POSTGRES_DB
|
|
||||||
value: tandoor
|
|
||||||
|
|
||||||
- name: REDIS_HOST
|
- name: REDIS_URL
|
||||||
value: tandoor-redis
|
value: redis://tandoor-redis:6379/0
|
||||||
- name: REDIS_PORT
|
|
||||||
value: "6379"
|
|
||||||
|
|
||||||
- name: ALLOWED_HOSTS
|
- name: ALLOWED_HOSTS
|
||||||
value: "*"
|
value: mealcraft.com
|
||||||
|
|
||||||
|
- name: CSRF_TRUSTED_ORIGINS
|
||||||
|
value: https://mealcraft.com
|
||||||
|
|
||||||
|
- name: NGINX_PROXY
|
||||||
|
value: "1"
|
||||||
|
|
||||||
- name: DEBUG
|
- name: DEBUG
|
||||||
value: "0"
|
value: "0"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue