openreplay/scripts/helm/roles/openreplay/templates/http.yaml
Rajesh Rajendran 91110489fb Squashed commit of the following:
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
2021-10-21 22:03:33 +05:30

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 %}