
As per victoria cycle testing runtime and community goal[1] we need to migrate upstream CI/CD to Ubuntu Focal(20.04). -Bump the lower constraints for required deps which added python3.8 support in their later version. -Changing the way to install and configure Zookeeper. Installing Zookeeper from official Apache's tarball. Adding the possiblity to set the specific Zookeeper version. Minor change in zookeeper logger. -Use mariadb JDBC for monasca-thresh in devstack, since Drizzle isn't compatible with MySql Server v8.0.x which is default in Focal -Python 3.8 doesn't seem to like dictionary keys changing during iteration. Fixing RuntimeError: dictionary keys changed during iteration. Tech. details: It runs well in py27: 5 iterations It runs risky in py37: 7 iterations It is forbbiden in py38: raised RuntimeError Fixed with list(dic.items()) or tuple(dic.items()) dic = {'1': 'a', '2': 'b', '3': 'c', '4': 'd', '5': 'e'} for key, value in dic.items(): print("Key: {0} Value: {1}".format(key,value)) del dic[key] print(dic) dic[key] = value print(dic) Story: #2007865 Task: #40197 Depends-On: https://review.opendev.org/756859 Change-Id: Ieb4cf38038ffb4d1a152f8ab3b64a14098c7cbb3
75 lines
2.6 KiB
Bash
75 lines
2.6 KiB
Bash
#!/bin/bash
|
|
|
|
# Copyright 2020 FUJITSU LIMITED
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
_XTRACE_ZOOKEEPER=$(set +o | grep xtrace)
|
|
set +o xtrace
|
|
|
|
function is_zookeeper_enabled {
|
|
is_service_enabled monasca-zookeeper && return 0
|
|
return 1
|
|
}
|
|
|
|
function clean_zookeeper {
|
|
|
|
if is_zookeeper_enabled; then
|
|
echo_summary "Cleaning Monasca Zookeeper"
|
|
|
|
sudo systemctl disable zookeeper
|
|
sudo systemctl stop zookeeper
|
|
sudo rm -rf /var/log/zookeeper
|
|
sudo rm -rf /var/lib/zookeeper
|
|
sudo rm -rf /opt/zookeeper-${ZOOKEEPER_VERSION}
|
|
sudo rm -rf /opt/zookeeper
|
|
sudo rm -rf /etc/systemd/system/zookeeper.service
|
|
sudo systemctl daemon-reload
|
|
fi
|
|
}
|
|
|
|
function install_zookeeper {
|
|
|
|
if is_zookeeper_enabled; then
|
|
echo_summary "Install Monasca Zookeeper"
|
|
|
|
local zookeeper_tarball=zookeeper-${ZOOKEEPER_VERSION}.tar.gz
|
|
local zookeeper_tarball_url=${APACHE_ARCHIVES}zookeeper/zookeeper-${ZOOKEEPER_VERSION}/${zookeeper_tarball}
|
|
local zookeeper_tarball_dest
|
|
zookeeper_tarball_dest=`get_extra_file ${zookeeper_tarball_url}`
|
|
|
|
sudo groupadd --system zookeeper || true
|
|
sudo useradd --system -g zookeeper zookeeper || true
|
|
sudo tar -xzf ${zookeeper_tarball_dest} -C /opt
|
|
sudo ln -sf /opt/zookeeper-${ZOOKEEPER_VERSION} /opt/zookeeper
|
|
sudo cp $PLUGIN_FILES/zookeeper/* /opt/zookeeper/conf
|
|
sudo chown -R zookeeper:zookeeper /opt/zookeeper/
|
|
|
|
sudo mkdir /var/log/zookeeper
|
|
sudo chown -R zookeeper:zookeeper /var/log/zookeeper
|
|
|
|
sudo mkdir /var/lib/zookeeper
|
|
sudo chown -R zookeeper:zookeeper /var/lib/zookeeper
|
|
|
|
sudo cp -f "${MONASCA_API_DIR}"/devstack/files/zookeeper/zookeeper.service /etc/systemd/system/zookeeper.service
|
|
sudo chown root:root /etc/systemd/system/kafka.service
|
|
sudo chmod 644 /etc/systemd/system/zookeeper.service
|
|
|
|
sudo systemctl daemon-reload
|
|
sudo systemctl enable zookeeper
|
|
sudo systemctl start zookeeper || sudo systemctl restart zookeeper
|
|
fi
|
|
}
|
|
|
|
$_XTRACE_ZOOKEEPER
|