chore(env): injecting postgres db name with connection string
chore(install): fail if postgresql migration failed
fix(variable): templating for chalice
fix(postgres): variable name
chore(vars): overriding variables for
- s3
- postgres
- aws credentials
18 lines
776 B
YAML
18 lines
776 B
YAML
{% if docker_registry_url is defined and docker_registry_url %}
|
|
image:
|
|
repository: {{ docker_registry_url }}
|
|
tag: {{ image_tag }}
|
|
{% endif %}
|
|
env:
|
|
AWS_ACCESS_KEY_ID: "{{ minio_access_key }}"
|
|
AWS_SECRET_ACCESS_KEY: "{{ minio_secret_key }}"
|
|
LICENSE_KEY: "{{ enterprise_edition_license }}"
|
|
AWS_REGION: "{{ aws_region }}"
|
|
POSTGRES_STRING: "postgres://{{ postgres_db_user }}:{{ postgres_db_password }}@{{ postgres_endpoint }}:{{ postgres_port }}/{{ postgres_db_name }}"
|
|
REDIS_STRING: "{{ redis_endpoint }}"
|
|
KAFKA_SERVERS: "{{ kafka_endpoint }}"
|
|
KAFKA_USE_SSL: "{{ kafka_ssl }}"
|
|
|
|
{% if not (docker_registry_username is defined and docker_registry_username and docker_registry_password is defined and docker_registry_password) %}
|
|
imagePullSecrets: []
|
|
{% endif %}
|