forked from GoogleCloudPlatform/gke-network-policy-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.sh
86 lines (74 loc) · 3.45 KB
/
common.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
#!/bin/bash -e
# Copyright 2018 Google LLC
#
# 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
#
# https://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.
# "---------------------------------------------------------"
# "- -"
# "- Common commands for all scripts -"
# "- -"
# "---------------------------------------------------------"
# git is required for this tutorial
command -v git >/dev/null 2>&1 || { \
echo >&2 "I require git but it's not installed. Aborting."; exit 1; }
# glcoud is required for this tutorial
command -v gcloud >/dev/null 2>&1 || { \
echo >&2 "I require gcloud but it's not installed. Aborting."; exit 1; }
# bastion set up
BASTION_INSTANCE_NAME=gke-demo-bastion
# set to jenkins if there is no $USER
# USER=$(whoami)
# [[ "${USER}" == "root" ]] && export USER=jenkins
# echo "user is: $USER"
# validate deployment status via bastion server
function validate_deployment_bastion() {
deployment=$1
ROLLOUT=$(gcloud compute ssh "${USER}"@"${BASTION_INSTANCE_NAME}" --command "kubectl rollout status deploy/${deployment}")
MESSAGE="deployment \"${deployment}\" successfully rolled out"
# Test the ROLLOUT variable to see if the grep has returned the expected value.
# Depending on the test print success or failure messages.
if [[ $ROLLOUT = *"$MESSAGE"* ]]; then
echo "Validation Passed: the deployment ${deployment} has been deployed"
else
echo "Validation Failed: the deployment ${deployment} has not been deployed"
exit 1
fi
}
# gcloud config holds values related to your environment. If you already
# defined a default region we will retrieve it and use it
REGION="$(gcloud config get-value compute/region)"
if [[ -z "${REGION}" ]]; then
echo "https://cloud.google.com/compute/docs/regions-zones/changing-default-zone-region" 1>&2
echo "gcloud cli must be configured with a default region." 1>&2
echo "run 'gcloud config set compute/region REGION'." 1>&2
echo "replace 'REGION' with the region name like us-west1." 1>&2
exit 1;
fi
# gcloud config holds values related to your environment. If you already
# defined a default zone we will retrieve it and use it
ZONE="$(gcloud config get-value compute/zone)"
if [[ -z "${ZONE}" ]]; then
echo "https://cloud.google.com/compute/docs/regions-zones/changing-default-zone-region" 1>&2
echo "gcloud cli must be configured with a default zone." 1>&2
echo "run 'gcloud config set compute/zone ZONE'." 1>&2
echo "replace 'ZONE' with the zone name like us-west1-a." 1>&2
exit 1;
fi
# gcloud config holds values related to your environment. If you already
# defined a default project we will retrieve it and use it
PROJECT="$(gcloud config get-value core/project)"
if [[ -z "${PROJECT}" ]]; then
echo "gcloud cli must be configured with a default project." 1>&2
echo "run 'gcloud config set core/project PROJECT'." 1>&2
echo "replace 'PROJECT' with the project name." 1>&2
exit 1;
fi