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