4e97715e74a556681da64c786a7d3390b34f2042
[dcaegen2/services.git] /
1 # ============LICENSE_START==========================================
2 # ===================================================================
3 #  Copyright (c) 2020 QCT
4 #
5 #  Licensed under the Apache License, Version 2.0 (the "License");
6 #  you may not use this file except in compliance with the License.
7 #  You may obtain a copy of the License at
8 #
9 #         http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #============LICENSE_END============================================
17
18
19 1. Get the application URL by running these commands:
20 {{- if .Values.ingress.enabled }}
21 {{- range $host := .Values.ingress.hosts }}
22   {{- range .paths }}
23   http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ . }}
24   {{- end }}
25 {{- end }}
26 {{- else if contains "NodePort" .Values.service.type }}
27   export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "dcae-datalake-feeder.fullname" . }})
28   export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
29   echo http://$NODE_IP:$NODE_PORT
30 {{- else if contains "LoadBalancer" .Values.service.type }}
31      NOTE: It may take a few minutes for the LoadBalancer IP to be available.
32            You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "dcae-datalake-feeder.fullname" . }}'
33   export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "dcae-datalake-feeder.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
34   echo http://$SERVICE_IP:{{ .Values.service.port }}
35 {{- else if contains "ClusterIP" .Values.service.type }}
36   export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "dcae-datalake-feeder.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
37   echo "Visit http://127.0.0.1:8080 to use your application"
38   kubectl port-forward $POD_NAME 8080:80
39 {{- end }}