-
Notifications
You must be signed in to change notification settings - Fork 1
/
stack.sh
executable file
·201 lines (185 loc) · 6.26 KB
/
stack.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
#!/bin/bash
UNAME=$USER
PIP_TYPE=''
WD=$(pwd)
ENABLE_HA=0
PROFILE='dev-tenant'
_usage() {
echo "Usage: $0 [options] <command>"
echo "Commands:"
echo -e "\tprep Download required resources"
echo -e "\tupdate Update all repos"
echo -e "\tgit-status Perform a git status of downloaded repos"
echo -e "\tup [target] Start all nodes required for [target]"
echo -e "\tdown [target] Destroy all nodes required for [target]"
echo -e "\tstatus Status of current environment"
echo -e "\thelp This help screen"
echo "Options"
echo -e "\t--ha Boot all nodes in cluster (default: false)"
echo -e "\t--user [username] Username to clone as"
echo "Targets"
echo -e "\tall"
echo -e "\tproxy Internal proxy"
echo -e "\tproxy-external External proxy"
echo -e "\tdb MySQL, RabbitMQ, MongoDB"
echo -e "\tkeystone"
echo -e "\tglance"
echo -e "\tcinder"
echo -e "\tnova"
echo -e "\tneutron-server"
echo -e "\thorizon"
echo -e "\theat"
echo -e "\tceilometer"
echo -e "\thorizon"
echo -e "\tnet"
echo -e "\tcompute"
}
_print_title() {
msg=$1
echo
echo "#####################################"
echo "# ${msg}"
echo "#####################################"
}
_link_children() {
echo
}
_get_branch() {
local repo_key=$1
local branch='master'
if [ -f settings.yaml ] && grep -q 'ccs-data: ' settings.yaml; then
branch=$(grep 'ccs-data: ' settings.yaml | cut -d ' ' -f2)
elif grep -q 'ccs-data: ' .default_settings.yaml; then
branch=$(grep 'ccs-data: ' .default_settings.yaml | cut -d ' ' -f2)
fi
echo $branch
}
_prep() {
local ccs_data_branch=$(_get_branch ccs-data)
gem list | grep -q 'librarian-puppet-simple' || { echo "Please 'bundle install' before prepping"; exit 1; }
if [ ! -d "dev/ccs-data/.git" ]; then
git clone -b $ccs_data_branch ssh://[email protected]:29418/ccs-data dev/ccs-data
else
cd dev/ccs-data; git pull --ff-only origin $ccs_data_branch; cd $WD
fi
echo "Generating BOM for ccs-dev-1/dev-tenant"
cd dev/ccs-data && bundle install && ./lightfuse.rb -d msg -s ccs-dev-1 -c hiera-bom-unenc.yaml || { echo "Error with installing and running ccs-data BOM"; exit 1; }
cd $WD
cd puppet
librarian-puppet install --verbose
cd modules && ls | while read line; do
cd $line
if ! git branch | grep '*' | grep -q '('; then
git pull origin $(git branch | grep '*' | awk '{ print $2 }')
fi
cd ..
done
cd $WD
}
_update() {
local ccs_data_branch=$(_get_branch ccs-data)
cd dev/ccs-data; git pull --ff-only origin $ccs_data_branch
bundle install && ./lightfuse.rb -d msg -s ccs-dev-1 -c hiera-bom-unenc.yaml || { echo "Error with installing and running ccs-data BOM"; exit 1; }
cd $WD/puppet
librarian-puppet update --verbose
cd $WD
}
_git_status() {
if ! git status | grep -q 'nothing to commit'; then
_print_title "Git Status: ccs-dev"
git status
fi
if [ -d './dev/ccs-data/.git' ]; then
cd dev/ccs-data
if ! git status | grep -q 'nothing to commit'; then
_print_title "Git Status: ccs-data"
git status
fi
cd $WD
fi
if [ -d './puppet/modules' ]; then
cd puppet/modules
for repo in $(ls); do
cd $repo
if ! git status | grep -q 'nothing to commit'; then
_print_title "Git Status: icehouse module ${repo}"
git status
fi
cd ..
done
cd $WD
fi
}
_vagrant_up() {
if [[ $1 == '' ]]; then
echo "Must pass host args to _vagrant_up"
exit 1
fi
vagrant up $1
[ $ENABLE_HA == 0 ] || vagrant up $(echo "${*:2}")
}
_vagrant_down() {
if [[ $1 == '' ]]; then
echo "Must pass host args to _vagrant_down"
exit 1
fi
vagrant destroy -f $(echo "${*:1}")
}
_status() {
vagrant status
}
_vagrant_action() {
local action=$1
local target=${2:-all}
if [[ $action == '' ]] || ! echo $action | egrep -q '(up|down)'; then
echo "Invalid action '${action}'; must be 'up' or 'down'"
exit 1
fi
if ! echo $target | egrep -q '(all|proxy|proxy-external|db|keystone|glance|cinder|nova|neutron-server|heat|ceilometer|net|compute|horizon)'; then
echo "Invalid target specified '${target}'"
exit 1
fi
_vagrant_${action} proxyinternal-001 proxyinternal-002
[[ $target != 'proxy' ]] || return
_vagrant_${action} db-001 db-002 db-003
[[ $target != 'db' ]] || return
_vagrant_${action} keystonectl-001 keystonectl-002
[[ $target != 'keystone' ]] || return
if [[ $target == 'proxy-external' ]] || [[ $target == 'all' ]]; then _vagrant_${action} proxyexternal-001 proxyexternal-002; fi
if [[ $target == 'glance' ]] || [[ $target == 'all' ]]; then _vagrant_${action} glancectl-001 glancectl-002; fi
if [[ $target == 'cinder' ]] || [[ $target == 'all' ]]; then _vagrant_${action} cinderctl-001 cinderctl-002; fi
if [[ $target == 'nova' ]] || [[ $target == 'all' ]]; then _vagrant_${action} novactl-001 novactl-002; fi
if [[ $target == 'neutron-server' ]] || [[ $target == 'all' ]]; then _vagrant_${action} neutronapi-001 neutronapi-002; fi
if [[ $target == 'heat' ]] || [[ $target == 'all' ]]; then _vagrant_${action} heatctl-001 heatctl-002; fi
if [[ $target == 'ceilometer' ]] || [[ $target == 'all' ]]; then _vagrant_${action} ceilometerctl-001 ceilometerctl-002; fi
if [[ $target == 'horizon' ]] || [[ $target == 'all' ]]; then _vagrant_${action} horizon-001 horizon-002; fi
if [[ $target == 'net' ]] || [[ $target == 'all' ]]; then _vagrant_${action} net-001 net-002; fi
if [[ $target == 'compute' ]] || [[ $target == 'all' ]]; then _vagrant_${action} nova-001 nova-002; fi
}
if [ $# == 0 ]; then
_usage
exit 1
fi
while [[ $1 != '' ]]; do
case $1 in
--ha) ENABLE_HA=1;;
--user) shift; UNAME=$1; USER=$1;;
help) _usage; exit 0;;
prep) ACTION='prep';;
update) ACTION='update';;
git-status) ACTION='git-status';;
up) ACTION='up'; shift; TARGET=$1;;
down) ACTION='down'; shift; TARGET=$1;;
status) ACTION='status';;
*) _usage; exit 0;;
esac
shift
done
case $ACTION in
prep) _prep;;
update) _update;;
git-status) _git_status | less;;
up) _vagrant_action 'up' $TARGET;;
down) _vagrant_action 'down' $TARGET;;
status) _status;;
esac