12 lines
455 B
Plaintext
12 lines
455 B
Plaintext
{{ "\n" }}
|
|
Get the Beckn-ONIX BPP Client (Protocol Server) URL by running these commands:
|
|
{{ "\n" }}
|
|
{{- if .Values.global.ingress.enabled }}
|
|
export INGRESS_HOST=$(kubectl get ingress {{ include "common.name" . }}-ingress -n {{ .Values.namespace }} -o jsonpath="{.status.loadBalancer.ingress[0].hostname}")
|
|
{{- if .Values.global.ingress.tls.enabled }}
|
|
echo "https://$INGRESS_HOST"
|
|
{{- else }}
|
|
echo "http://$INGRESS_HOST"
|
|
{{- end }}
|
|
{{- end }}
|