From 580d29e621d9a1697b29abc5071706990e0f586c Mon Sep 17 00:00:00 2001 From: sebdet Date: Wed, 5 Jun 2019 18:11:00 +0200 Subject: Update git submodules * Update docs/submodules/clamp.git from branch 'dublin' to 60d8a197a65db5b53bae5ea6950cb9af559b643f - Bump the version Bump the version for Dublin release in doc Issue-ID: CLAMP-407 Change-Id: Ie2ea9d582c82c9fd389b6b44576a411529b4002a Signed-off-by: sebdet --- docs/submodules/clamp.git | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/submodules/clamp.git b/docs/submodules/clamp.git index c27f4c28d..60d8a197a 160000 --- a/docs/submodules/clamp.git +++ b/docs/submodules/clamp.git @@ -1 +1 @@ -Subproject commit c27f4c28d922408fb8a560f3de2139bc9988cd54 +Subproject commit 60d8a197a65db5b53bae5ea6950cb9af559b643f -- cgit 1.2.3-korg id="lfcollabprojects-logo" href="http://collabprojects.linuxfoundation.org" >Linux Foundation Collaborative Projects
summaryrefslogtreecommitdiffstats
blob: 5da4ade3a540d86bc333383dadb3ed2c7d408767 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright © 2018 Amdocs, Bell Canada
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

1. Get the application URL by running these commands:
{{- if .Values.ingress.enabled }}
{{- range .Values.ingress.hosts }}
  http://{{ . }}
{{- end }}
  export NODE_PORT=$(kubectl get --namespace {{ include "common.namespace" . }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "common.name" . }})
  export NODE_IP=$(kubectl get nodes --namespace {{ include "common.namespace" . }} -o jsonpath="{.items[0].status.addresses[0].address}")
  echo http://$NODE_IP:$NODE_PORT
     NOTE: It may take a few minutes for the LoadBalancer IP to be available.
           You can watch the status of by running 'kubectl get svc -w {{ include "common.name" . }}'
  export SERVICE_IP=$(kubectl get svc --namespace {{ include "common.namespace" . }} {{ include "common.name" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
  echo http://$SERVICE_IP:{{ .Values.service.externalPort }}
  export POD_NAME=$(kubectl get pods --namespace {{ include "common.namespace" . }} -l "app={{ .Chart.Name }},release={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
  echo "Visit http://127.0.0.1:8080 to use your application"
  kubectl port-forward $POD_NAME 8080:{{ .Values.service.internalPort }}
{{- end }}