-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.sh
executable file
·290 lines (264 loc) · 7.79 KB
/
setup.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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
#!/bin/bash
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2018,2022
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
set -o errexit
set -o nounset
set -o pipefail
if [ "${DEBUG:-false}" == "true" ]; then
set -o xtrace
export PKG_DEBUG=true
fi
PASSWORD='password'
GIT_REPO_HOST="https://opendev.org/openstack"
LOCAL_CONFIG_PATH="/opt/stack/devstack/local.conf"
# https://docs.openstack.org/devstack/latest/plugin-registry.html
plugins=(
"aodh"
"barbican"
"blazar"
"ceilometer"
"ceilometer-powervm"
"cinderlib"
"cloudkitty"
"cyborg"
"designate"
"devstack-plugin-amqp1"
"devstack-plugin-ceph"
"devstack-plugin-container"
"devstack-plugin-kafka"
"devstack-plugin-nfs"
"devstack-plugin-open-cas"
"ec2-api"
"freezer"
"freezer-api"
"freezer-tempest-plugin"
"freezer-web-ui"
"heat"
"heat-dashboard"
"ironic"
"ironic-inspector"
"ironic-prometheus-exporter"
"ironic-ui"
"keystone"
"kuryr-kubernetes"
"kuryr-libnetwork"
"kuryr-tempest-plugin"
"magnum"
"magnum-ui"
"manila"
"manila-tempest-plugin"
"manila-ui"
"masakari"
"mistral"
"monasca-api"
"monasca-events-api"
"monasca-tempest-plugin"
"murano"
"networking-bagpipe"
"networking-baremetal"
"networking-bgpvpn"
"networking-generic-switch"
"networking-hyperv"
"networking-odl"
"networking-powervm"
"networking-sfc"
"neutron"
"neutron-dynamic-routing"
"neutron-fwaas"
"neutron-fwaas-dashboard"
"neutron-tempest-plugin"
"neutron-vpnaas"
"neutron-vpnaas-dashboard"
"nova-powervm"
"octavia"
"octavia-dashboard"
"octavia-tempest-plugin"
"openstacksdk"
"osprofiler"
"oswin-tempest-plugin"
"ovn-octavia-provider"
"patrole"
"rally-openstack"
"sahara"
"sahara-dashboard"
"senlin"
"shade"
"skyline-apiserver"
"solum"
"storlets"
"tacker"
"tap-as-a-service"
"telemetry-tempest-plugin"
"trove"
"trove-dashboard"
"venus"
"venus-dashboard"
"vitrage"
"vitrage-dashboard"
"vitrage-tempest-plugin"
"watcher"
"watcher-dashboard"
"whitebox-tempest-plugin"
"zaqar"
"zaqar-ui"
"zun"
"zun-ui"
)
declare -A services=(
["ceilometer"]="ceilometer-api"
["cloudkitty"]="ck-api,ck-proc"
["designate"]="designate,designate-central,designate-api,designate-pool-manager,designate-zone-manager,designate-mdns"
["horizon"]="horizon"
["marconi"]="marconi-server"
["neutron-fwaas"]="q-fwaas"
["neutron-lbaas"]="q-lbaasv2"
["neutron-metering"]="q-metering"
["neutron-vpnaas"]="q-vpnaas"
["octavia"]="octavia,o-cw,o-hk,o-hm,o-api"
["rally"]="rally"
["swift"]="s-proxy,s-object,s-container,s-account"
["trove"]="trove,tr-api,tr-tmgr,tr-cond"
)
function _enable_kernel_attr {
local attr="$1"
if [ "$(sysctl -n "$attr")" != "1" ]; then
if [ -d /etc/sysctl.d ]; then
echo "$attr=1" | sudo tee "/etc/sysctl.d/$attr.conf"
elif [ -f /etc/sysctl.conf ]; then
echo "$attr=1" | sudo tee --append /etc/sysctl.conf
fi
sudo sysctl "$attr=1"
fi
}
function _enable_plugin {
if [[ ${plugins[*]} =~ (^|[[:space:]])"$1"($|[[:space:]]) ]]; then
_append_config_line "enable_plugin $1 $GIT_REPO_HOST/$1.git"
fi
}
function _enable_services {
local os_project=$1
if [[ ${services[$os_project]:+1} ]]; then
_enable_service "${services[$os_project]//,/ }"
fi
}
function _enable_service {
_append_config_line "enable_service $1"
}
function _disable_service {
_append_config_line "disable_service $1"
}
function _append_config_line {
if ! grep -q "$1" "$LOCAL_CONFIG_PATH"; then
echo "$1" | tee --append "$LOCAL_CONFIG_PATH"
fi
}
function _disable_ipv6 {
_enable_kernel_attr net.ipv6.conf.all.disable_ipv6
_enable_kernel_attr net.ipv6.conf.default.disable_ipv6
sudo sysctl -p
}
function _manage_deps {
# shellcheck disable=SC1091
source /etc/os-release || source /usr/lib/os-release
case ${ID,,} in
ubuntu | debian)
sudo apt-get update
sudo apt-get install -y -qq -o=Dpkg::Use-Pty=0 curl
sudo apt-get remove -y python3-yaml python3-httplib2 python3-pyasn1 postgresql postgresql-client python3-cryptography
;;
esac
# NOTE: Shorten link -> https://github.com/electrocucaracha/pkg-mgr_scripts
curl -fsSL http://bit.ly/install_pkg | PKG_COMMANDS_LIST="sudo,git" bash
}
function _clone_repo {
if [ ! -d /opt/stack/devstack ]; then
sudo -E git clone --depth 1 -b "${DEVSTACK_RELEASE:-stable/2024.2}" "$GIT_REPO_HOST/devstack" /opt/stack/devstack
sudo chown -R "$USER" /opt/stack/
fi
}
function _set_env_values {
for env_var in $(printenv | grep "LINT_DEVSTACK_"); do
_append_config_line "${env_var//LINT_DEVSTACK_/}"
done
}
function _create_local_conf {
mkdir -p /opt/stack/devstack/
if [ ! -f "$LOCAL_CONFIG_PATH" ]; then
pushd /opt/stack/devstack/
cat <<EOL >"$LOCAL_CONFIG_PATH"
[[local|localrc]]
HOST_IP=$(ip route get 8.8.8.8 | grep "^8." | awk '{ print $7 }')
SERVICE_DIR=$HOME/status
GLOBAL_VENV=False
LOGFILE=\$DATA_DIR/logs/stack.log
VERBOSE=True
IP_VERSION=4
IPV6_ENABLED=False
MYSQL_PASSWORD=${MYSQL_PASSWORD:-$PASSWORD}
DATABASE_PASSWORD=${DATABASE_PASSWORD:-$PASSWORD}
SERVICE_TOKEN=$(openssl rand -hex 10)
SERVICE_PASSWORD=${SERVICE_PASSWORD:-$PASSWORD}
ADMIN_PASSWORD=${ADMIN_PASSWORD:-$PASSWORD}
RABBIT_PASSWORD=${RABBIT_PASSWORD:-$PASSWORD}
REQUIREMENTS_DIR=$HOME/requirements
EOL
_set_env_values
if [ -n "${OS_PROJECT_LIST+x}" ]; then
for project in ${OS_PROJECT_LIST//,/ }; do
_enable_plugin "$project"
_enable_services "$project"
case $project in
"osprofiler")
_append_config_line "CEILOMETER_NOTIFICATION_TOPICS=notifications,profiler"
;;
"magnum")
# Enable barbican service and use it to store TLS certificates
_enable_plugin "barbican"
_enable_plugin "heat"
;;
"python-neutronclient")
_append_config_line "LIBS_FROM_GIT+=python-neutronclient"
;;
"python-openstackclient")
_append_config_line "LIBS_FROM_GIT+=python-openstackclient"
;;
"rally")
git clone --depth 1 https://opendev.org/stackforge/rally /tmp/rally
cp /tmp/rally/contrib/devstack/lib/rally lib/
cp /tmp/rally/contrib/devstack/extras.d/70-rally.sh extras.d/
;;
"swift")
_append_config_line "SWIFT_HASH=swift"
;;
esac
done
fi
if [ -n "${OS_DISABLE_SVC_LIST+x}" ]; then
for service in ${OS_DISABLE_SVC_LIST//,/ }; do
_disable_service "$service"
done
fi
_append_config_line "# OFFLINE=True"
popd
cat ./post-configs/* >>"$LOCAL_CONFIG_PATH"
fi
}
function main {
_disable_ipv6
_manage_deps
_clone_repo
_create_local_conf
cd /opt/stack/devstack/
FORCE=yes ./stack.sh
echo "source /opt/stack/devstack/openrc admin admin" >>~/.bashrc
# script /dev/null
}
if [[ ${__name__:-"__main__"} == "__main__" ]]; then
main
fi