feat: Add AWS CDK project and Helm charts for Beckn-Onix deployment on AWS cloud

This commit is contained in:
Mozammil Khan
2024-09-23 22:57:34 +05:30
parent 5d5e363ccd
commit c683ec3d74
114 changed files with 10018 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
{{ "\n" }}
Get the Beckn-ONIX BAP Network (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 }}