Merge "[OOF] Update OOF image versions"
[oom.git] / kubernetes / policy / components / policy-gui / templates / NOTES.txt
1 {{/*
2 #  ============LICENSE_START=======================================================
3 #   Copyright (C) 2021 Nordix Foundation.
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 #
17 #  SPDX-License-Identifier: Apache-2.0
18 #  ============LICENSE_END=========================================================
19 */}}
20 1. Get the application URL by running these commands:
21 {{- if .Values.ingress.enabled }}
22 {{- range .Values.ingress.hosts }}
23   http://{{ . }}
24 {{- end }}
25 {{- else if contains "NodePort" .Values.service.type }}
26   export NODE_PORT=$(kubectl get --namespace {{ include "common.namespace" . }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "common.name" . }})
27   export NODE_IP=$(kubectl get nodes --namespace {{ include "common.namespace" . }} -o jsonpath="{.items[0].status.addresses[0].address}")
28   echo http://$NODE_IP:$NODE_PORT
29 {{- else if contains "LoadBalancer" .Values.service.type }}
30      NOTE: It may take a few minutes for the LoadBalancer IP to be available.
31            You can watch the status of by running 'kubectl get svc -w {{ include "common.name" . }}'
32   export SERVICE_IP=$(kubectl get svc --namespace {{ include "common.namespace" . }} {{ include "common.name" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
33   echo http://$SERVICE_IP:{{ .Values.service.externalPort }}
34 {{- else if contains "ClusterIP" .Values.service.type }}
35   export POD_NAME=$(kubectl get pods --namespace {{ include "common.namespace" . }} -l "app={{ template "common.name" . }},release={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
36   echo "Visit https://127.0.0.1:8443 to use your application"
37   kubectl port-forward $POD_NAME 8443:{{ .Values.service.internalPort }}
38 {{- end }}