23 lines
1 KiB
YAML
23 lines
1 KiB
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 }}"
|
|
# In case of minio, the instance is running inside kuberntes,
|
|
# which is accessible via nginx ingress.
|
|
{% if s3_endpoint != "http://minio.db.svc.cluster.local:9000" %}
|
|
ASSETS_ORIGIN: "https://{{assets_bucket}}.{{ s3_endpoint.split('https://')[-1] }}"
|
|
{% endif %}
|
|
|
|
{% if not (docker_registry_username is defined and docker_registry_username and docker_registry_password is defined and docker_registry_password) %}
|
|
imagePullSecrets: []
|
|
{% endif %}
|