forked from SolaceDev/pubsubplus-cf-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cf_deploy.sh
executable file
·84 lines (63 loc) · 2.37 KB
/
cf_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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/bin/bash
export SCRIPT="$( basename "${BASH_SOURCE[0]}" )"
export SCRIPTPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
export WORKSPACE=${WORKSPACE:-$SCRIPTPATH/../workspace}
export BOSH_NON_INTERACTIVE=${BOSH_NON_INTERACTIVE:-true}
export SYSTEM_DOMAIN=${SYSTEM_DOMAIN:-"bosh-lite.com"}
export CF_DEPLOYMENT_VERSION=${CF_DEPLOYMENT_VERSION:-"v13.21.0"}
source $SCRIPTPATH/bosh-common.sh
## Add CF required stemcells for version $CF_DEPLOYMENT_VERSION
export REQUIRED_STEMCELLS="$REQUIRED_STEMCELLS ubuntu-xenial:621.87"
if [ ! -d $WORKSPACE ]; then
mkdir -p $WORKSPACE
fi
cd $WORKSPACE
if [ -f bosh_env.sh ]; then
source bosh_env.sh
fi
if [ ! -d $WORKSPACE/cf-deployment ]; then
( cd $WORKSPACE; git clone https://github.com/cloudfoundry/cf-deployment.git )
fi
(cd $WORKSPACE/cf-deployment; git fetch --all; git checkout tags/$CF_DEPLOYMENT_VERSION)
cd $WORKSPACE/cf-deployment
loadStemcells
echo "Loading cloud-config iaas-support/bosh-lite/cloud-config.yml"
bosh update-cloud-config $SCRIPTPATH/../cf-pubsubplus-deployment/iaas-support/bosh-lite/cloud-config.yml
bosh -d cf deploy cf-deployment.yml \
-o operations/bosh-lite.yml \
-o operations/use-compiled-releases.yml \
-o $SCRIPTPATH/operations/trusted_certs.yml \
-o $SCRIPTPATH/operations/credhub.yml \
-o $SCRIPTPATH/operations/cf_smaller_mysql.yml \
--vars-store $WORKSPACE/deployment-vars.yml \
-l $SCRIPTPATH/cf_trusted-ca-cert-for-apps.yml \
-v system_domain=$SYSTEM_DOMAIN \
-v mysql_max_connections=500 \
-v mysql_innodb_buffer_pool_size=524288000
if [ "$?" -ne "0" ]; then
echo "ABORTING: cf-deployment was not successful"
exit 1
fi
if [ -f $SCRIPTPATH/cf_env.sh ]; then
$SCRIPTPATH/cf_env.sh
[[ $? -eq 0 ]] && {
echo "Create a system/system org and space"
cf target -o system
cf create-space system
cf target -o system
cf m
}
fi
## This is for development. Open up security groups to support easy deployment and testing.
if [ -f $SCRIPTPATH/apply_open_security_groups.sh ]; then
$SCRIPTPATH/apply_open_security_groups.sh
fi
## This is for development. Open up security groups to support credhub access.
if [ -f $SCRIPTPATH/apply_credhub_security_groups.sh ]; then
$SCRIPTPATH/apply_credhub_security_groups.sh
fi
echo "Setup environment for TCP Routes"
$SCRIPTPATH/setup_tcp_routing.sh
echo
echo "TIP: To access this deployment you can run \"$SCRIPTPATH/cf_env.sh\""
echo