diff --git a/recipes/recipes.yaml b/recipes/recipes.yaml index 86791e5..d269d36 100644 --- a/recipes/recipes.yaml +++ b/recipes/recipes.yaml @@ -110,6 +110,18 @@ spec: value: tandoorpassword - name: POSTGRES_DB 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: - mountPath: /var/lib/postgresql/data name: postgres-storage @@ -191,31 +203,37 @@ spec: containers: - name: tandoor - image: vabene1111/recipes:latest + image: vabene1111/recipes:1.5.24 + env: - name: SECRET_KEY value: replace-with-long-random-string - name: DB_ENGINE value: django.db.backends.postgresql + - name: POSTGRES_HOST value: tandoor-postgres - name: POSTGRES_PORT value: "5432" + - name: POSTGRES_DB + value: tandoor - name: POSTGRES_USER value: tandoor - name: POSTGRES_PASSWORD value: tandoorpassword - - name: POSTGRES_DB - value: tandoor - - name: REDIS_HOST - value: tandoor-redis - - name: REDIS_PORT - value: "6379" + - name: REDIS_URL + value: redis://tandoor-redis:6379/0 - name: ALLOWED_HOSTS - value: "*" + value: mealcraft.com + + - name: CSRF_TRUSTED_ORIGINS + value: https://mealcraft.com + + - name: NGINX_PROXY + value: "1" - name: DEBUG value: "0"