Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Rajesh Rajendran
ff5ef6329a fix(postgres): variable name 2021-10-13 15:08:17 +05:30
5 changed files with 8 additions and 8 deletions

View file

@ -50,9 +50,9 @@ spec:
{{- if eq .Values.pvc.name "hostPath" }} {{- if eq .Values.pvc.name "hostPath" }}
volumeMounts: volumeMounts:
- mountPath: {{ .Values.pvc.mountPath }} - mountPath: {{ .Values.pvc.mountPath }}
name: {{ .Values.pvc.name }} name: datadir
volumes: volumes:
- name: mydir - name: datadir
hostPath: hostPath:
# Ensure the file directory is created. # Ensure the file directory is created.
path: {{ .Values.pvc.hostMountPath }} path: {{ .Values.pvc.hostMountPath }}

View file

@ -17,7 +17,7 @@ env:
jwt_secret: "{{ jwt_secret_key }}" jwt_secret: "{{ jwt_secret_key }}"
pg_host: "{{ postgres_endpoint }}" pg_host: "{{ postgres_endpoint }}"
pg_port: "{{ postgres_port }}" pg_port: "{{ postgres_port }}"
pg_dbname: "{{ postgres_port }}" pg_dbname: "{{ postgres_db_name }}"
pg_user: "{{ postgres_db_user }}" pg_user: "{{ postgres_db_user }}"
pg_password: "{{ postgres_db_password }}" pg_password: "{{ postgres_db_password }}"
EMAIL_HOST: "{{ email_host }}" EMAIL_HOST: "{{ email_host }}"
@ -29,8 +29,8 @@ env:
EMAIL_SSL_KEY: "{{ email_ssl_key }}" EMAIL_SSL_KEY: "{{ email_ssl_key }}"
EMAIL_SSL_CERT: "{{ email_ssl_cert }}" EMAIL_SSL_CERT: "{{ email_ssl_cert }}"
EMAIL_FROM: "{{ email_from }}" EMAIL_FROM: "{{ email_from }}"
AWS_DEFAULT_REGION: "{{ aws_default_region }}" AWS_DEFAULT_REGION: "{{ aws_region }}"
sessions_region: "{{ aws_default_region }}" sessions_region: "{{ aws_region }}"
{% if env is defined and env.chalice is defined and env.chalice%} {% if env is defined and env.chalice is defined and env.chalice%}
{{ env.chalice | to_nice_yaml | trim | indent(2) }} {{ env.chalice | to_nice_yaml | trim | indent(2) }}
{% endif %} {% endif %}

View file

@ -5,7 +5,7 @@ image:
{% endif %} {% endif %}
env: env:
LICENSE_KEY: "{{ enterprise_edition_license }}" LICENSE_KEY: "{{ enterprise_edition_license }}"
POSTGRES_STRING: "postgres://{{ postgres_db_user }}:{{ postgres_password }}@{{ postgres_endpoint }}:{{ postgres_port }}" POSTGRES_STRING: "postgres://{{ postgres_db_user }}:{{ postgres_db_password }}@{{ postgres_endpoint }}:{{ postgres_port }}"
REDIS_STRING: "{{ redis_endpoint }}" REDIS_STRING: "{{ redis_endpoint }}"
KAFKA_SERVERS: "{{ kafka_endpoint }}" KAFKA_SERVERS: "{{ kafka_endpoint }}"
KAFKA_USE_SSL: "{{ kafka_ssl }}" KAFKA_USE_SSL: "{{ kafka_ssl }}"

View file

@ -8,7 +8,7 @@ env:
AWS_SECRET_ACCESS_KEY: "{{ minio_secret_key }}" AWS_SECRET_ACCESS_KEY: "{{ minio_secret_key }}"
LICENSE_KEY: "{{ enterprise_edition_license }}" LICENSE_KEY: "{{ enterprise_edition_license }}"
AWS_REGION: "{{ aws_region }}" AWS_REGION: "{{ aws_region }}"
POSTGRES_STRING: "postgres://{{ postgres_db_user }}:{{ postgres_password }}@{{ postgres_endpoint }}:{{ postgres_port }}" POSTGRES_STRING: "postgres://{{ postgres_db_user }}:{{ postgres_db_password }}@{{ postgres_endpoint }}:{{ postgres_port }}"
REDIS_STRING: "{{ redis_endpoint }}" REDIS_STRING: "{{ redis_endpoint }}"
KAFKA_SERVERS: "{{ kafka_endpoint }}" KAFKA_SERVERS: "{{ kafka_endpoint }}"
KAFKA_USE_SSL: "{{ kafka_ssl }}" KAFKA_USE_SSL: "{{ kafka_ssl }}"

View file

@ -5,7 +5,7 @@ image:
{% endif %} {% endif %}
env: env:
LICENSE_KEY: "{{ enterprise_edition_license }}" LICENSE_KEY: "{{ enterprise_edition_license }}"
POSTGRES_STRING: "postgres://{{ postgres_db_user }}:{{ postgres_password }}@{{ postgres_endpoint }}:{{ postgres_port }}" POSTGRES_STRING: "postgres://{{ postgres_db_user }}:{{ postgres_db_password }}@{{ postgres_endpoint }}:{{ postgres_port }}"
# #
REDIS_STRING: "{{ redis_endpoint }}" REDIS_STRING: "{{ redis_endpoint }}"
KAFKA_SERVERS: "{{ kafka_endpoint }}" KAFKA_SERVERS: "{{ kafka_endpoint }}"