aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/robot/resources/config/authorization
diff options
context:
space:
mode:
authorMandeep Khinda <Mandeep.Khinda@amdocs.com>2018-05-04 01:34:33 +0000
committerGerrit Code Review <gerrit@onap.org>2018-05-04 01:34:33 +0000
commit8b76ba0aff9839657231328e0b541686d3ccee71 (patch)
tree2b65eed8f9cfcce13c95bd7b912f5908fd07ebcc /kubernetes/robot/resources/config/authorization
parentfe05997c31aacb2929d176024f4259a36e0ba129 (diff)
parent8379c527eac3f69a1180ed3b9ddc95f2f2c7952d (diff)
Merge "Fix old references to portalapps service"
Diffstat (limited to 'kubernetes/robot/resources/config/authorization')
0 files changed, 0 insertions, 0 deletions
pan>#!/bin/bash # SPDX-license-identifier: Apache-2.0 ############################################################################## # Copyright (c) 2018 # All rights reserved. This program and the accompanying materials # are made available under the terms of the Apache License, Version 2.0 # which accompanies this distribution, and is available at # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## set -o errexit set -o nounset set -o pipefail source _functions.sh csar_id=ac39959e-e82c-11e8-9133-525400912638 base_dest=$(grep "base_dest:" $test_folder/../deployment_infra/playbooks/kud-vars.yml | awk -F ': ' '{print $2}') istio_dest=$(grep "istio_dest:" $test_folder/../deployment_infra/playbooks/kud-vars.yml | awk -F ': ' '{print $2}' | sed "s|{{ base_dest }}|$base_dest|g;s|\"||g") istio_version=$(grep "istio_version:" $test_folder/../deployment_infra/playbooks/kud-vars.yml | awk -F ': ' '{print $2}') if ! $(istioctl version &>/dev/null); then echo "This funtional test requires istioctl client" exit 1 fi _checks_args $csar_id pushd ${CSAR_DIR}/${csar_id} istioctl kube-inject -f $istio_dest/istio-$istio_version/samples/bookinfo/platform/kube/bookinfo.yaml > bookinfo-inject.yml kubectl apply -f bookinfo-inject.yml kubectl apply -f $istio_dest/istio-$istio_version/samples/bookinfo/networking/bookinfo-gateway.yaml for deployment in details-v1 productpage-v1 ratings-v1 reviews-v1 reviews-v2 reviews-v3; do wait_deployment $deployment done INGRESS_PORT=$(kubectl -n istio-system get service istio-ingressgateway -o jsonpath='{.spec.ports[?(@.name=="http2")].nodePort}') INGRESS_HOST=$(kubectl get po -l istio=ingressgateway -n istio-system -o 'jsonpath={.items[0].status.hostIP}') call_api http://$INGRESS_HOST:$INGRESS_PORT/productpage >/dev/null popd