e67c2bc8 by Adam Heath

Use https to connect to opensearch.

1 parent 1d1ba2b5
...@@ -63,7 +63,7 @@ Create the name of the service account to use ...@@ -63,7 +63,7 @@ Create the name of the service account to use
63 63
64 {{- define "moqui.opensearch-url" -}} 64 {{- define "moqui.opensearch-url" -}}
65 {{- if .Values.opensearch.enabled -}} 65 {{- if .Values.opensearch.enabled -}}
66 "http://{{- include "opensearch.masterService" .Subcharts.opensearch }}:{{ .Values.opensearch.httpPort }}" 66 "https://{{- include "opensearch.masterService" .Subcharts.opensearch }}:{{ .Values.opensearch.httpPort }}"
67 {{- else }} 67 {{- else }}
68 {{- printf "%s" .Values.opensearch.url }} 68 {{- printf "%s" .Values.opensearch.url }}
69 {{- end }} 69 {{- end }}
......