forked from istio/istio.io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
samples.sh
108 lines (89 loc) · 3.52 KB
/
samples.sh
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#!/usr/bin/env bash
# shellcheck disable=SC2155
# Copyright Istio Authors
#
# 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.
GATEWAY_API="${GATEWAY_API:-false}"
startup_bookinfo_sample() {
kubectl apply -f samples/bookinfo/platform/kube/bookinfo.yaml
if [ "$GATEWAY_API" == "true" ]; then
kubectl apply -f samples/bookinfo/gateway-api/bookinfo-gateway.yaml
kubectl wait --for=condition=programmed gtw bookinfo-gateway --timeout=2m
kubectl apply -f samples/bookinfo/platform/kube/bookinfo-versions.yaml
else
kubectl apply -f samples/bookinfo/networking/bookinfo-gateway.yaml
kubectl apply -f samples/bookinfo/networking/destination-rule-all.yaml
fi
for deploy in "productpage-v1" "details-v1" "ratings-v1" "reviews-v1" "reviews-v2" "reviews-v3"; do
_wait_for_deployment default "$deploy"
done
}
cleanup_bookinfo_sample() {
kubectl delete -f samples/bookinfo/platform/kube/bookinfo.yaml || true
if [ "$GATEWAY_API" == "true" ]; then
kubectl delete -f samples/bookinfo/platform/kube/bookinfo-versions.yaml || true
kubectl delete -f samples/bookinfo/gateway-api/bookinfo-gateway.yaml || true
else
kubectl delete -f samples/bookinfo/networking/destination-rule-all.yaml || true
kubectl delete -f samples/bookinfo/networking/bookinfo-gateway.yaml || true
fi
}
startup_sleep_sample() {
kubectl apply -f samples/sleep/sleep.yaml -n default
_wait_for_deployment default sleep
}
cleanup_sleep_sample() {
kubectl delete -f samples/sleep/sleep.yaml -n default || true
}
startup_httpbin_sample() {
kubectl apply -f samples/httpbin/httpbin.yaml
_wait_for_deployment default httpbin
}
cleanup_httpbin_sample() {
kubectl delete -f samples/httpbin/httpbin.yaml || true
}
# Use curl to send an http request to a sample service via ingressgateway.
# Usage:
# sample_http_request path [ user ]
# Example:
# response=$(sample_http_request "/productpage" "jason")
sample_http_request() {
local path=$1
local user=""
if [[ $# -gt 1 ]]; then
user="$2"
fi
local ingress_url
local sleep_pod
local response
if [ "$GATEWAY_API" == "true" ]; then
ingress_url="http://bookinfo-gateway-istio.default"
else
ingress_url="http://istio-ingressgateway.istio-system"
fi
sleep_pod=$(kubectl get pod -l app=sleep -n default -o 'jsonpath={.items..metadata.name}')
local args=""
if [[ -n "$user" ]]; then
# make request as logged in user
kubectl exec "$sleep_pod" -c sleep -n "default" -- curl -c /tmp/sample.cookies "$ingress_url/login" --data "username=$user&passwd=password"
args="-b /tmp/sample.cookies"
fi
# shellcheck disable=SC2086
response=$(kubectl exec "$sleep_pod" -c sleep -n "default" -- \
curl "$ingress_url$path" $args -s --retry 3 --retry-connrefused --retry-delay 5)
if [[ -n "$user" ]]; then
# shellcheck disable=SC2086
kubectl exec "$sleep_pod" -c sleep -n "default" -- curl $args "$ingress_url/logout"
fi
echo "$response"
}