-
Notifications
You must be signed in to change notification settings - Fork 34
/
bigpave-pws.sh
executable file
·77 lines (61 loc) · 2.06 KB
/
bigpave-pws.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
#!/usr/bin/env bash
# Use this script to pave your PWS instance with the correct services
set -eu
if [ -z ${1+x} ] && [ -z ${2+x} ] && [ -z ${3+x} ] && [ -z ${4+x} ]; then
echo "Usage: USERNAME PASSWORD ORG SPACE"
exit 1
fi
export CF='command -v cf'
if [[ $? != 0 ]]; then
echo "I don't think the CF command line client (cf-cli) is installed."
echo "Please see the instructions here: https://docs.cloudfoundry.org/cf-cli/install-go-cli.html"
exit 1
else
echo $'\nYou have the CF command line client already; that\'s awesome!\n'
fi
export API="https://api.run.pivotal.io"
echo "API: ${API}"
if [ -z ${1+x} ]; then
echo "I need your PWS username (email address) to continue."
exit 1
else
echo "Username: $1"
fi
if [ -z ${2+x} ]; then
echo "I need your PWS password to continue."
exit 1
else
echo "Password is {SECRET}."
fi
if [ -z ${3+x} ]; then
echo "I need your PWS ORG name to continue."
exit 1
else
echo "Org: $3"
fi
if [ -z ${4+x} ]; then
echo "I need your PWS SPACE name to continue."
exit 1
else
echo "Space: $4"
fi
echo $'Logging in to PWS using the details provided...\n'
cf login -a ${API} -u $1 -p $2 -o $3 -s $4
if [[ $? != 0 ]]; then
echo "Abort. There was a problem logging in to PWS with the details given. Please resolve the problem and try again."
exit 1
else
echo $'\nWe\'re logged in. Super!\n'
fi
echo $'Now we\'ll create some services using the Cloud Foundry marketplace [#Awesome #NoOps]...\n'
cf create-service cleardb amp enginedb
cf create-service cleardb amp appdb
cf create-service cloudamqp tiger rabbit
cf create-service p-service-registry standard registry
cf create-service p-config-server standard config -c config-server-setup.json
echo $'\nNow we need to wait a few minutes until all five
services show \"create succeeded\" as their status.'
echo "This may take while, so I'll start a watch. Press CTRL+C any time to quit (the services will still be created)."
read -p "Press [Enter] to start watching..."
watch -n 1 "cf services"
echo $'\nWe\'re done. You can now use the push.sh script provided to push your apps.'