diff --git a/container-images/kolla/base/uid_gid_manage.sh b/container-images/kolla/base/uid_gid_manage.sh index 86d215feb..4b26d2fce 100755 --- a/container-images/kolla/base/uid_gid_manage.sh +++ b/container-images/kolla/base/uid_gid_manage.sh @@ -71,7 +71,6 @@ _SUPPORTED_USERS['redis']='redis 42460 42460 /run/redis kolla' _SUPPORTED_USERS['swift']='swift 42445 42445 /var/lib/swift kolla' _SUPPORTED_USERS['tempest']='tempest 42480 42480 /var/lib/tempest kolla' _SUPPORTED_USERS['tss']='tss 42485 42485 /var/lib/tpm kolla' -_SUPPORTED_USERS['zaqar']='zaqar 42452 42452 /var/lib/zaqar kolla' for _USER_TO_CREATE in $_USERS_TO_CREATE; do # Initialize computed args diff --git a/container-images/tcib/base/os/os.yaml b/container-images/tcib/base/os/os.yaml index 63ab727ce..cba4cf547 100644 --- a/container-images/tcib/base/os/os.yaml +++ b/container-images/tcib/base/os/os.yaml @@ -17,5 +17,4 @@ tcib_packages: - python3-octaviaclient - python3-openstackclient - python3-swiftclient - - python3-zaqarclient - python3-pymemcache diff --git a/container-images/tcib/base/os/zaqar-wsgi/zaqar-wsgi.yaml b/container-images/tcib/base/os/zaqar-wsgi/zaqar-wsgi.yaml deleted file mode 100644 index 12ce5ac33..000000000 --- a/container-images/tcib/base/os/zaqar-wsgi/zaqar-wsgi.yaml +++ /dev/null @@ -1,10 +0,0 @@ -tcib_actions: -- run: dnf -y install {{ tcib_packages['common'] | join(' ') }} && dnf clean all && rm -rf /var/cache/dnf -- run: mkdir -p /var/www/cgi-bin/zaqar && chown -R zaqar /var/www/cgi-bin/zaqar && cp -a /usr/lib/python3.6/site-packages/zaqar/transport/wsgi/app.py /var/www/cgi-bin/zaqar/ && chmod 755 /var/www/cgi-bin/zaqar && sed -i -r 's,^(Listen 80),#\1,' /etc/httpd/conf/httpd.conf && sed -i -r 's,^(Listen 443),#\1,' /etc/httpd/conf.d/ssl.conf -tcib_packages: - common: - - httpd - - mod_ssl - - openstack-zaqar - - python3-ldappool - - python3-mod_wsgi diff --git a/container-images/tripleo_containers.yaml b/container-images/tripleo_containers.yaml index 70208b8c5..bc43928bc 100644 --- a/container-images/tripleo_containers.yaml +++ b/container-images/tripleo_containers.yaml @@ -163,8 +163,6 @@ container_images: image_source: tripleo - imagename: quay.io/tripleowallaby/openstack-swift-proxy-server:current-tripleo image_source: tripleo -- imagename: quay.io/tripleowallaby/openstack-zaqar-wsgi:current-tripleo - image_source: tripleo - imagename: quay.io/ceph/daemon:v6.0.4-stable-6.0-pacific-centos-8-x86_64 image_source: ceph - imagename: quay.ceph.io/prometheus/prometheus:v2.7.2 diff --git a/container-images/tripleo_containers.yaml.j2 b/container-images/tripleo_containers.yaml.j2 index a0b96918b..f559d2347 100644 --- a/container-images/tripleo_containers.yaml.j2 +++ b/container-images/tripleo_containers.yaml.j2 @@ -709,14 +709,6 @@ container_images_template: - OS::TripleO::Services::SwiftRingBuilder - OS::TripleO::Services::SwiftStorage -- imagename: "{{namespace}}/{{name_prefix}}zaqar-wsgi{{name_suffix}}:{{tag}}" - image_source: tripleo - params: - - ContainerZaqarConfigImage - - ContainerZaqarImage - services: - - OS::TripleO::Services::Zaqar - - imagename: "{{ceph_namespace}}/{{ceph_image}}:{{ceph_tag}}" image_source: ceph params: diff --git a/healthcheck/zaqar-api b/healthcheck/zaqar-api deleted file mode 100755 index 4b7d8aa89..000000000 --- a/healthcheck/zaqar-api +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash - -. ${HEALTHCHECK_SCRIPTS:-/usr/share/openstack-tripleo-common/healthcheck}/common.sh - -check_url=$(get_url_from_vhost /etc/httpd/conf.d/10-zaqar_wsgi.conf) -healthcheck_curl ${check_url} diff --git a/healthcheck/zaqar-socket b/healthcheck/zaqar-socket deleted file mode 100755 index 50f22a1f1..000000000 --- a/healthcheck/zaqar-socket +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -. ${HEALTHCHECK_SCRIPTS:-/usr/share/openstack-tripleo-common/healthcheck}/common.sh - -process=zaqar-server -args="${@:-9000}" - -if healthcheck_listen $process $args; then - exit 0 -else - ports=${args// /,} - echo "There is no $process process, listening on port(s) $ports, running in the container." - exit 1 -fi - diff --git a/requirements.txt b/requirements.txt index 09a5b48c4..90d8fd06f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -21,7 +21,6 @@ passlib>=1.7.0 # BSD netifaces>=0.10.4 # MIT paramiko>=2.7.1 # LGPLv2.1+ netaddr>=0.7.18 # BSD -python-zaqarclient>=1.0.0 # Apache-2.0 python-keystoneclient>=3.8.0 # Apache-2.0 keystoneauth1>=3.4.0 # Apache-2.0 tenacity>=6.1.0 # Apache-2.0 diff --git a/tripleo_common/constants.py b/tripleo_common/constants.py index c490152a8..b85a612b3 100644 --- a/tripleo_common/constants.py +++ b/tripleo_common/constants.py @@ -133,7 +133,6 @@ PASSWORD_PARAMETER_NAMES = ( 'SnmpdReadonlyUserPassword', 'SwiftHashSuffix', 'SwiftPassword', - 'ZaqarPassword', ) # List of passwords that should not be rotated by default using the diff --git a/tripleo_common/tests/utils/test_plan.py b/tripleo_common/tests/utils/test_plan.py index 9dc5826d3..61bdef9e5 100644 --- a/tripleo_common/tests/utils/test_plan.py +++ b/tripleo_common/tests/utils/test_plan.py @@ -34,7 +34,6 @@ parameter_defaults: OvercloudControlFlavor: yummy passwords: AdminPassword: aaaa - ZaqarPassword: zzzz """ USER_ENV_CONTENTS = """ @@ -79,7 +78,6 @@ _EXISTING_PASSWORDS = { 'BarbicanSimpleCryptoKek': 'dGhpcnR5X3R3b19ieXRlX2tleWJsYWhibGFoYmxhaGg=', 'AdminPassword': 'jFmY8FTpvtF2e4d4ReXvmUP8k', 'CeilometerMeteringSecret': 'CbHTGK4md4Cc8P8ZyzTns6wry', - 'ZaqarPassword': 'bbFgCTFbAH8vf9n3xvZCP8aMR', 'NovaPassword': '7dZATgVPwD7Ergs9kTTDMCr7F', 'MysqlRootPassword': 'VqJYpEdKks', 'RabbitCookie': 'BqJYpEdKksAqJYpEdKks', @@ -452,7 +450,6 @@ class PlanTest(base.TestCase): 'BarbicanPassword', 'AdminPassword', 'CeilometerMeteringSecret', - 'ZaqarPassword', 'NovaPassword', 'MysqlRootPassword' ]