Skip to content

Commit

Permalink
helm: use double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
nsantacruz committed Aug 31, 2023
1 parent 7b583ca commit 11a5649
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ data:
SERVER_EMAIL = os.getenv("SERVER_EMAIL")
auth_str = f'{os.getenv("ELASTIC_USERNAME")}:{os.getenv("ELASTIC_PASSWORD")}@' if os.getenv("ELASTIC_USERNAME") else ''
SEARCH_ADMIN = f'http://{auth_str}' + {{ .Values.nginx.SEARCH_HOST | quote }} + ":9200"
SEARCH_ADMIN = f'http://{auth_str}' + {{ .Values.nginx.SEARCH_HOST | quote }} + ':9200'
SEARCH_INDEX_ON_SAVE = True
SEARCH_INDEX_NAME_TEXT = 'text' # name of the ElasticSearch index to use
SEARCH_INDEX_NAME_SHEET = 'sheet'
Expand Down

0 comments on commit 11a5649

Please sign in to comment.