Compare commits
1 commit
main
...
kube-chang
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ff5ef6329a |
5 changed files with 8 additions and 8 deletions
|
|
@ -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 }}
|
||||||
|
|
|
||||||
|
|
@ -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 %}
|
||||||
|
|
|
||||||
|
|
@ -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 }}"
|
||||||
|
|
|
||||||
|
|
@ -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 }}"
|
||||||
|
|
|
||||||
|
|
@ -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 }}"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue