-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdeploy.sh
executable file
·64 lines (55 loc) · 1.84 KB
/
deploy.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
#!/bin/bash
#
# *******************************************************************************
# * Copyright (c) 2019 Edgeworx, Inc.
# *
# * This program and the accompanying materials are made available under the
# * terms of the Eclipse Public License v. 2.0 which is available at
# * http://www.eclipse.org/legal/epl-2.0
# *
# * SPDX-License-Identifier: EPL-2.0
# *******************************************************************************
#
set -o errexit -o pipefail -o noclobber -o nounset
cd "$(dirname "$0")"
. ./scripts/utils.sh
usage() {
echo
echoInfo "Usage: `basename $0` variables_file.tfvars"
echoInfo " `basename $0` [-h, --help]"
echoInfo "$0 will deploy minimal infrastructure: VPC, GKE, Packet nodes"
}
realpath() {
[[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"
}
if [[ "${1-}" == "--help" ]] || [[ "${1-}" == "-h" ]]; then
usage
exit 0
fi
if [[ ! -r "${1-}" ]]; then
echoError "Variables file \"${1-}\" does not exist!"
usage
exit 1
fi
TFVARS=$(realpath "${1-}")
prettyHeader "Deploying infrastructure"
echoInfo "Using ${TFVARS} as variable file"
cd "infrastructure/gcp"
if ! terraform init ; then
echoError "Terraform init failed"
exit 2
fi
echoInfo "Current terraform resources:"
terraform show
export KUBECONFIG=$PWD/kubeconfig
if ! terraform apply -var-file="${TFVARS}" -target=module.gcp_network -auto-approve ; then
echoError "Terraform apply failed (-target=module.gcp_network)."
exit 3
fi
if ! terraform apply -var-file="${TFVARS}" -auto-approve ; then
echoError "Terraform apply failed."
exit 3
fi
terraform output ecn_yaml >| "../../ecn.yaml"
echoSuccess "Infrastructure successfully created!"
echoSuccess "You can now check and modify a generated file 'ecn.yaml', then deploy your first ECN on the new infrastructure using 'iofogctl deploy -f ecn.yaml'"