Skip to content

Commit

Permalink
wip: fix catalog string
Browse files Browse the repository at this point in the history
  • Loading branch information
nleconte-csgroup committed Mar 12, 2024
1 parent 68a40ce commit 3e60701
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions charts/rs-server-catalog/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ spec:
- name: RSPY_UAC_CHECK_URL
value: {{ .Values.app.uacURL }}
- name: APP_HOST
value: 0.0.0.0
value: "0.0.0.0"
- name: APP_PORT
value: 8000
value: "8000"
- name: POSTGRES_HOST_READER
value: {{ .Values.postgres.host.ro }}
- name: POSTGRES_HOST_WRITER
Expand All @@ -59,11 +59,11 @@ spec:
- name: GDAL_DISABLE_READDIR_ON_OPEN
value: EMPTY_DIR
- name: EMPTY_DIR
value: 1
value: "1"
- name: DB_MAX_CONN_SIZE
value: 1
value: "1"
- name: USE_API_HYDRATE
value: false
value: "false"
- name: POSTGRES_HOST
value: {{ .Values.postgres.host.rw }}
- name: POSTGRES_PORT
Expand Down

0 comments on commit 3e60701

Please sign in to comment.