From d3ef8b125693d69a4311b2eafda1babb662e6dc5 Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Mon, 7 Dec 2020 12:41:44 +0200 Subject: [PATCH] Deprecate openstack-ansible-galera_client role Since we moved all functionality of galera-client part to galera-server role there's no sense in futher keeping and branching of client part. Depends-On: https://review.opendev.org/c/openstack/project-config/+/765777 Change-Id: I1623dbc80bee4eb7d889ee570d0ce27697b58cea --- .gitignore | 69 ---- CONTRIBUTING.rst | 19 -- LICENSE | 202 ------------ README.rst | 36 +-- Vagrantfile | 62 ---- bindep.txt | 50 --- defaults/main.yml | 73 ----- doc/Makefile | 195 ------------ doc/requirements.txt | 16 - doc/source/_static/ .gitkeep | 0 doc/source/conf.py | 297 ------------------ doc/source/index.rst | 42 --- examples/playbook.yml | 9 - files/gpg/C74CD1D8 | 99 ------ files/gpg/RPM-GPG-KEY-MariaDB | 132 -------- manual-test.rc | 33 -- meta/main.yml | 46 --- meta/openstack-ansible.yml | 20 -- releasenotes/notes/.placeholder | 0 ...e-pinning-dependency-6e2e94d829508859.yaml | 4 - ...apt-source-filenamed-9718897bcfa7b36b.yaml | 4 - ...-mirror-url-variable-fa2df9eee6399938.yaml | 5 - ...lera-client-gpg-keys-8b674cee476885d0.yaml | 12 - ...-client-mariadb-10-1-a90e0d2a89d6e76b.yaml | 5 - ...ient-package-install-fd34423e293f5d8b.yaml | 9 - ...nt-url-var-deprecate-9ced45ea374c3c7d.yaml | 9 - .../notes/implement-ssl-48a82cf611db0eb6.yaml | 5 - .../multi-distro-add-0e53560f66394691.yaml | 6 - ...-mirror-url-variable-865a97abb4c61430.yaml | 6 - .../notes/package-state-003ff33c557af3b5.yaml | 13 - .../remove-xtrabackup-0513a40593f2d0e3.yaml | 7 - .../notes/suse-support-f50df7e6b27e3e15.yaml | 4 - ...date-mariadb-to-10.2-b99a87ed0bb60b37.yaml | 4 - releasenotes/source/_static/.placeholder | 0 releasenotes/source/_templates/.placeholder | 0 releasenotes/source/conf.py | 276 ---------------- releasenotes/source/index.rst | 17 - releasenotes/source/mitaka.rst | 6 - releasenotes/source/newton.rst | 6 - releasenotes/source/ocata.rst | 6 - releasenotes/source/pike.rst | 6 - releasenotes/source/queens.rst | 6 - releasenotes/source/rocky.rst | 6 - releasenotes/source/stein.rst | 6 - releasenotes/source/train.rst | 6 - releasenotes/source/unreleased.rst | 5 - releasenotes/source/ussuri.rst | 6 - run_tests.sh | 94 ------ setup.cfg | 13 - setup.py | 20 -- tasks/galera_client_install.yml | 44 --- tasks/galera_client_install_apt.yml | 76 ----- tasks/galera_client_install_dnf.yml | 1 - tasks/galera_client_install_portage.yml | 1 - tasks/galera_client_install_yum.yml | 76 ----- tasks/galera_client_install_zypper.yml | 52 --- tasks/galera_client_post_install.yml | 27 -- tasks/galera_client_ssl.yml | 53 ---- tasks/main.yml | 35 --- templates/client.my.cnf.j2 | 10 - .../use-unix-socket-578a4a32490c5e22.yaml | 4 - tests/ansible-role-requirements.yml | 9 - tests/inventory | 4 - tests/test.yml | 70 ----- tox.ini | 96 ------ vars/debian.yml | 27 -- vars/gentoo.yml | 17 - vars/redhat.yml | 36 --- vars/suse.yml | 28 -- zuul.d/jobs.yaml | 30 -- zuul.d/project.yaml | 26 -- 71 files changed, 10 insertions(+), 2684 deletions(-) delete mode 100644 .gitignore delete mode 100644 CONTRIBUTING.rst delete mode 100644 LICENSE delete mode 100644 Vagrantfile delete mode 100644 bindep.txt delete mode 100644 defaults/main.yml delete mode 100644 doc/Makefile delete mode 100644 doc/requirements.txt delete mode 100644 doc/source/_static/ .gitkeep delete mode 100644 doc/source/conf.py delete mode 100644 doc/source/index.rst delete mode 100644 examples/playbook.yml delete mode 100644 files/gpg/C74CD1D8 delete mode 100644 files/gpg/RPM-GPG-KEY-MariaDB delete mode 100644 manual-test.rc delete mode 100644 meta/main.yml delete mode 100644 meta/openstack-ansible.yml delete mode 100644 releasenotes/notes/.placeholder delete mode 100644 releasenotes/notes/apt-package-pinning-dependency-6e2e94d829508859.yaml delete mode 100644 releasenotes/notes/apt-source-filenamed-9718897bcfa7b36b.yaml delete mode 100644 releasenotes/notes/drop-opensuse-mirror-url-variable-fa2df9eee6399938.yaml delete mode 100644 releasenotes/notes/galera-client-gpg-keys-8b674cee476885d0.yaml delete mode 100644 releasenotes/notes/galera-client-mariadb-10-1-a90e0d2a89d6e76b.yaml delete mode 100644 releasenotes/notes/galera-client-package-install-fd34423e293f5d8b.yaml delete mode 100644 releasenotes/notes/galera-client-url-var-deprecate-9ced45ea374c3c7d.yaml delete mode 100644 releasenotes/notes/implement-ssl-48a82cf611db0eb6.yaml delete mode 100644 releasenotes/notes/multi-distro-add-0e53560f66394691.yaml delete mode 100644 releasenotes/notes/opensuse-mirror-url-variable-865a97abb4c61430.yaml delete mode 100644 releasenotes/notes/package-state-003ff33c557af3b5.yaml delete mode 100644 releasenotes/notes/remove-xtrabackup-0513a40593f2d0e3.yaml delete mode 100644 releasenotes/notes/suse-support-f50df7e6b27e3e15.yaml delete mode 100644 releasenotes/notes/update-mariadb-to-10.2-b99a87ed0bb60b37.yaml delete mode 100644 releasenotes/source/_static/.placeholder delete mode 100644 releasenotes/source/_templates/.placeholder delete mode 100644 releasenotes/source/conf.py delete mode 100644 releasenotes/source/index.rst delete mode 100644 releasenotes/source/mitaka.rst delete mode 100644 releasenotes/source/newton.rst delete mode 100644 releasenotes/source/ocata.rst delete mode 100644 releasenotes/source/pike.rst delete mode 100644 releasenotes/source/queens.rst delete mode 100644 releasenotes/source/rocky.rst delete mode 100644 releasenotes/source/stein.rst delete mode 100644 releasenotes/source/train.rst delete mode 100644 releasenotes/source/unreleased.rst delete mode 100644 releasenotes/source/ussuri.rst delete mode 100755 run_tests.sh delete mode 100644 setup.cfg delete mode 100644 setup.py delete mode 100644 tasks/galera_client_install.yml delete mode 100644 tasks/galera_client_install_apt.yml delete mode 120000 tasks/galera_client_install_dnf.yml delete mode 100644 tasks/galera_client_install_portage.yml delete mode 100644 tasks/galera_client_install_yum.yml delete mode 100644 tasks/galera_client_install_zypper.yml delete mode 100644 tasks/galera_client_post_install.yml delete mode 100644 tasks/galera_client_ssl.yml delete mode 100644 tasks/main.yml delete mode 100644 templates/client.my.cnf.j2 delete mode 100644 templates/releasenotes/notes/use-unix-socket-578a4a32490c5e22.yaml delete mode 100644 tests/ansible-role-requirements.yml delete mode 100644 tests/inventory delete mode 100644 tests/test.yml delete mode 100644 tox.ini delete mode 100644 vars/debian.yml delete mode 100644 vars/gentoo.yml delete mode 100644 vars/redhat.yml delete mode 100644 vars/suse.yml delete mode 100644 zuul.d/jobs.yaml delete mode 100644 zuul.d/project.yaml diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 3a77206..0000000 --- a/.gitignore +++ /dev/null @@ -1,69 +0,0 @@ -# Add patterns in here to exclude files created by tools integrated with this -# repository, such as test frameworks from the project's recommended workflow, -# rendered documentation and package builds. -# -# Don't add patterns to exclude files created by preferred personal tools -# (editors, IDEs, your operating system itself even). These should instead be -# maintained outside the repository, for example in a ~/.gitignore file added -# with: -# -# git config --global core.excludesfile '~/.gitignore' - -# Compiled source # -################### -*.com -*.class -*.dll -*.exe -*.o -*.so -*.pyc -build/ -dist/ -doc/build/ - -# Packages # -############ -# it's better to unpack these files and commit the raw source -# git has its own built in compression methods -*.7z -*.dmg -*.gz -*.iso -*.jar -*.rar -*.tar -*.zip - -# Logs and databases # -###################### -*.log -*.sql -*.sqlite -logs/* - -# OS generated files # -###################### -._* -.tox -*.egg-info -.eggs - -# Generated by pbr while building docs -###################################### -AUTHORS -ChangeLog - -# Files created by releasenotes build -releasenotes/build - -# Test temp files -tests/common -tests/*.retry - -# Vagrant artifacts -.vagrant - -# Git clones -openstack-ansible-ops -previous diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst deleted file mode 100644 index 3705472..0000000 --- a/CONTRIBUTING.rst +++ /dev/null @@ -1,19 +0,0 @@ -The source repository for this project can be found at: - - https://opendev.org/openstack/openstack-ansible-galera_client - -Pull requests submitted through GitHub are not monitored. - -To start contributing to OpenStack, follow the steps in the contribution guide -to set up and use Gerrit: - - https://docs.openstack.org/contributors/code-and-documentation/quick-start.html - -Bugs should be filed on Launchpad: - - https://bugs.launchpad.net/openstack-ansible - -For more specific information about contributing to this repository, see the -openstack-ansible contributor guide: - - https://docs.openstack.org/openstack-ansible/latest/contributor/contributing.html diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 8f71f43..0000000 --- a/LICENSE +++ /dev/null @@ -1,202 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - 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. - diff --git a/README.rst b/README.rst index f971e10..5b7b300 100644 --- a/README.rst +++ b/README.rst @@ -1,29 +1,13 @@ -======================== -Team and repository tags -======================== +This project is no longer maintained. -.. image:: https://governance.openstack.org/tc/badges/openstack-ansible-galera_client.svg - :target: https://governance.openstack.org/tc/reference/tags/index.html +The contents of this repository are still available in the Git +source code management system. To see the contents of this +repository before it reached its end of life, please check out the +previous commit with "git checkout HEAD^1". -.. Change things from this point on +For an alternative project, please see openstack-ansible-galera_server at +https://opendev.org/openstack/openstack-ansible-galera_server. -=============================== -OpenStack-Ansible Galera client -=============================== - -Documentation for the project can be found at: - https://docs.openstack.org/openstack-ansible-galera_client/latest - -Role dependencies and requirements are on this documentation page. - -Release notes for the project can be found at: - https://docs.openstack.org/releasenotes/openstack-ansible-galera_client/ - -The project source code repository is located at: - https://opendev.org/openstack/openstack-ansible-galera_client/ - -The project home is at: - https://launchpad.net/openstack-ansible - -The project bug tracker is located at: - https://bugs.launchpad.net/openstack-ansible +For any further questions, please email +openstack-discuss@lists.openstack.org or join #openstack-ansible on +Freenode. diff --git a/Vagrantfile b/Vagrantfile deleted file mode 100644 index 7691c3c..0000000 --- a/Vagrantfile +++ /dev/null @@ -1,62 +0,0 @@ -# Note: -# This file is maintained in the openstack-ansible-tests repository. -# https://opendev.org/openstack/openstack-ansible-tests/src/Vagrantfile -# -# If you need to perform any change on it, you should modify the central file, -# then, an OpenStack CI job will propagate your changes to every OSA repository -# since every repo uses the same Vagrantfile - -# Verify whether required plugins are installed. -required_plugins = [ "vagrant-disksize" ] -required_plugins.each do |plugin| - if not Vagrant.has_plugin?(plugin) - raise "The vagrant plugin #{plugin} is required. Please run `vagrant plugin install #{plugin}`" - end -end - -Vagrant.configure(2) do |config| - config.vm.provider "virtualbox" do |v| - v.memory = 6144 - v.cpus = 2 - # https://github.com/hashicorp/vagrant/issues/9524 - v.customize ["modifyvm", :id, "--audio", "none"] - end - - config.vm.synced_folder ".", "/vagrant", type: "rsync" - - config.vm.provision "shell", - privileged: false, - inline: <<-SHELL - cd /vagrant - ./run_tests.sh - SHELL - - config.vm.define "centos8" do |centos8| - centos8.vm.box = "centos/8" - end - - config.vm.define "debian8" do |debian8| - debian8.vm.box = "debian/jessie64" - end - - config.vm.define "debian9" do |debian9| - debian9.vm.box = "debian/stretch64" - end - - config.vm.define "gentoo" do |gentoo| - gentoo.vm.box = "generic/gentoo" - end - - config.vm.define "opensuse150" do |leap150| - leap150.vm.box = "opensuse/openSUSE-15.0-x86_64" - end - - config.vm.define "opensuse151" do |leap151| - leap151.vm.box = "opensuse/openSUSE-15.1-x86_64" - end - - config.vm.define "ubuntu1804" do |bionic| - bionic.disksize.size = "40GB" - bionic.vm.box = "ubuntu/bionic64" - end -end diff --git a/bindep.txt b/bindep.txt deleted file mode 100644 index bb77692..0000000 --- a/bindep.txt +++ /dev/null @@ -1,50 +0,0 @@ -# This file facilitates OpenStack-CI package installation -# before the execution of any tests. -# -# See the following for details: -# - https://docs.openstack.org/infra/bindep/ -# - https://opendev.org/openstack-infra/bindep -# -# Even if the role does not make use of this facility, it -# is better to have this file empty, otherwise OpenStack-CI -# will fall back to installing its default packages which -# will potentially be detrimental to the tests executed. -# -# Note: -# This file is maintained in the openstack-ansible-tests repository. -# https://opendev.org/openstack/openstack-ansible-tests/src/bindep.txt -# If you need to remove or add extra dependencies, you should modify -# the central file instead and once your change is accepted then update -# this file as well. The purpose of this file is to ensure that Python and -# Ansible have all their necessary binary requirements on the test host before -# tox executes. Any binary requirements needed by services/roles should be -# installed by those roles in their applicable package install tasks, not through -# using this file. -# - -# The gcc compiler -gcc - -# Base requirements for Ubuntu -git-core [platform:dpkg platform:suse] -libssl-dev [platform:dpkg] -libffi-dev [platform:dpkg] -python3 [platform:dpkg] -python3-apt [platform:dpkg] -python3-dev [platform:dpkg] - -# Base requirements for RPM distros -gcc-c++ [platform:rpm] -git [platform:rpm !platform:suse] -libffi-devel [platform:rpm] -openssl-devel [platform:rpm] -python3-dnf [platform:fedora] -python3-devel [platform:rpm] - -# Base requirements for Gentoo -git [platform:gentoo] - -# For SELinux -libselinux-python3 [platform:redhat] -libsemanage-python3 [platform:redhat] -iptables [platform:redhat] diff --git a/defaults/main.yml b/defaults/main.yml deleted file mode 100644 index 7b997de..0000000 --- a/defaults/main.yml +++ /dev/null @@ -1,73 +0,0 @@ ---- -# Copyright 2014, Rackspace US, Inc. -# -# 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. - -galera_cluster_members: "{{ groups['galera_all'] }}" - -# Default galera connection address -galera_address: 127.0.0.1 -galera_root_user: root - -# Set the URL for the MariaDB repository -galera_repo_host: downloads.mariadb.com -galera_client_repo_url: "{{ galera_repo_url | default(_galera_client_repo_url) }}" - -# Set the major version to use for the galera repo -galera_client_major_version: 10.3 -galera_client_minor_version: 18 - -# Set the repo information for the MariaDB repository -galera_client_repo: "{{ _galera_client_repo }}" - -# Set the gpg keys needed to be imported -# This should be a list of dicts, with each dict -# giving a set of arguments to the applicable -# package module. The following is an example for -# systems using the apt package manager. -# galera_client_gpg_keys: -# - id: '0xF1656F24C74CD1D8' -# keyserver: 'hkp://keyserver.ubuntu.com:80' -# validate_certs: no -galera_client_gpg_keys: "{{ _galera_client_gpg_keys | default([]) }}" - -# This is only applied if the ansible_pkg_mgr is 'apt' -galera_client_distro_package_pins: [{ package: "*", release: MariaDB, priority: "1001" }] - -## APT Cache Options -cache_timeout: 600 - -# Set the package install state for distribution packages -# Options are 'present' and 'latest' -galera_client_package_state: "latest" - -galera_client_drop_config_file: false -galera_client_package_install: true - -galera_client_fatal_deprecations: false - -## Tunable overrides -galera_client_my_cnf_overrides: {} - -mariadb_repo_filename: "MariaDB" - -# SSL support -galera_use_ssl: false -# This server is used when pulling an ssl cert onto a given host when a user -# defined key is not present. By default this will try and pull from the -# "galera_server" group and fall back to localhost. -galera_ssl_server: "{{ (galera_cluster_members | default(['localhost']))[0] }}" -# The path where to store the database server CA certificate -galera_ssl_ca_cert: /etc/ssl/certs/galera-ca.pem -# The path to Galera CA certificate file on the deployment host -# galera_user_ssl_ca_cert: /etc/openstack_deploy/self_signed_certs/galera-ca.pem diff --git a/doc/Makefile b/doc/Makefile deleted file mode 100644 index 117587b..0000000 --- a/doc/Makefile +++ /dev/null @@ -1,195 +0,0 @@ -# Makefile for Sphinx documentation -# - -# You can set these variables from the command line. -SPHINXOPTS = -SPHINXBUILD = sphinx-build -PAPER = -BUILDDIR = build - -# User-friendly check for sphinx-build -ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1) -$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/) -endif - -# Internal variables. -PAPEROPT_a4 = -D latex_paper_size=a4 -PAPEROPT_letter = -D latex_paper_size=letter -ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source -# the i18n builder cannot share the environment and doctrees with the others -I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source - -.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest coverage gettext - -help: - @echo "Please use \`make ' where is one of" - @echo " html to make standalone HTML files" - @echo " dirhtml to make HTML files named index.html in directories" - @echo " singlehtml to make a single large HTML file" - @echo " pickle to make pickle files" - @echo " json to make JSON files" - @echo " htmlhelp to make HTML files and a HTML help project" - @echo " qthelp to make HTML files and a qthelp project" - @echo " applehelp to make an Apple Help Book" - @echo " devhelp to make HTML files and a Devhelp project" - @echo " epub to make an epub" - @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" - @echo " latexpdf to make LaTeX files and run them through pdflatex" - @echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx" - @echo " text to make text files" - @echo " man to make manual pages" - @echo " texinfo to make Texinfo files" - @echo " info to make Texinfo files and run them through makeinfo" - @echo " gettext to make PO message catalogs" - @echo " changes to make an overview of all changed/added/deprecated items" - @echo " xml to make Docutils-native XML files" - @echo " pseudoxml to make pseudoxml-XML files for display purposes" - @echo " linkcheck to check all external links for integrity" - @echo " doctest to run all doctests embedded in the documentation (if enabled)" - @echo " coverage to run coverage check of the documentation (if enabled)" - -clean: - rm -rf $(BUILDDIR)/* - -html: - $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html - @echo - @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." - -dirhtml: - $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml - @echo - @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml." - -singlehtml: - $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml - @echo - @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml." - -pickle: - $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle - @echo - @echo "Build finished; now you can process the pickle files." - -json: - $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json - @echo - @echo "Build finished; now you can process the JSON files." - -htmlhelp: - $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp - @echo - @echo "Build finished; now you can run HTML Help Workshop with the" \ - ".hhp project file in $(BUILDDIR)/htmlhelp." - -qthelp: - $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp - @echo - @echo "Build finished; now you can run "qcollectiongenerator" with the" \ - ".qhcp project file in $(BUILDDIR)/qthelp, like this:" - @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/openstack-ansible-galera_client.qhcp" - @echo "To view the help file:" - @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/openstack-ansible-galera_client.qhc" - -applehelp: - $(SPHINXBUILD) -b applehelp $(ALLSPHINXOPTS) $(BUILDDIR)/applehelp - @echo - @echo "Build finished. The help book is in $(BUILDDIR)/applehelp." - @echo "N.B. You won't be able to view it unless you put it in" \ - "~/Library/Documentation/Help or install it in your application" \ - "bundle." - -devhelp: - $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp - @echo - @echo "Build finished." - @echo "To view the help file:" - @echo "# mkdir -p $$HOME/.local/share/devhelp/openstack-ansible-galera_client" - @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/openstack-ansible-galera_client" - @echo "# devhelp" - -epub: - $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub - @echo - @echo "Build finished. The epub file is in $(BUILDDIR)/epub." - -latex: - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex - @echo - @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex." - @echo "Run \`make' in that directory to run these through (pdf)latex" \ - "(use \`make latexpdf' here to do that automatically)." - -latexpdf: - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex - @echo "Running LaTeX files through pdflatex..." - $(MAKE) -C $(BUILDDIR)/latex all-pdf - @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." - -latexpdfja: - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex - @echo "Running LaTeX files through platex and dvipdfmx..." - $(MAKE) -C $(BUILDDIR)/latex all-pdf-ja - @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." - -text: - $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text - @echo - @echo "Build finished. The text files are in $(BUILDDIR)/text." - -man: - $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man - @echo - @echo "Build finished. The manual pages are in $(BUILDDIR)/man." - -texinfo: - $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo - @echo - @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo." - @echo "Run \`make' in that directory to run these through makeinfo" \ - "(use \`make info' here to do that automatically)." - -info: - $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo - @echo "Running Texinfo files through makeinfo..." - make -C $(BUILDDIR)/texinfo info - @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo." - -gettext: - $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale - @echo - @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale." - -changes: - $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes - @echo - @echo "The overview file is in $(BUILDDIR)/changes." - -linkcheck: - $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck - @echo - @echo "Link check complete; look for any errors in the above output " \ - "or in $(BUILDDIR)/linkcheck/output.txt." - -doctest: - $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest - @echo "Testing of doctests in the sources finished, look at the " \ - "results in $(BUILDDIR)/doctest/output.txt." - -coverage: - $(SPHINXBUILD) -b coverage $(ALLSPHINXOPTS) $(BUILDDIR)/coverage - @echo "Testing of coverage in the sources finished, look at the " \ - "results in $(BUILDDIR)/coverage/python.txt." - -xml: - $(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml - @echo - @echo "Build finished. The XML files are in $(BUILDDIR)/xml." - -pseudoxml: - $(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml - @echo - @echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml." - -livehtml: html - sphinx-autobuild -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html diff --git a/doc/requirements.txt b/doc/requirements.txt deleted file mode 100644 index 07801f8..0000000 --- a/doc/requirements.txt +++ /dev/null @@ -1,16 +0,0 @@ -# The order of packages is significant, because pip processes them in the order -# of appearance. Changing the order has an impact on the overall integration -# process, which may cause wedges in the gate later. - -# WARNING: -# This file is maintained in the openstack-ansible-tests repository. -# https://opendev.org/openstack/openstack-ansible-tests/src/branch/master/sync/doc/requirements.txt -# If you need to modify this file, update the one in the -# openstack-ansible-tests repository. Once it merges there, the changes will -# automatically be proposed to all the repositories which use it. - -sphinx>=2.0.0,!=2.1.0 # BSD -sphinxcontrib-svg2pdfconverter>=0.1.0 # BSD -openstackdocstheme>=2.2.1 # Apache-2.0 -reno>=3.1.0 # Apache-2.0 -doc8>=0.6.0 # Apache-2.0 diff --git a/doc/source/_static/ .gitkeep b/doc/source/_static/ .gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/doc/source/conf.py b/doc/source/conf.py deleted file mode 100644 index 7bf6fae..0000000 --- a/doc/source/conf.py +++ /dev/null @@ -1,297 +0,0 @@ -#!/usr/bin/env python3 - -# 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. - -# This file is execfile()d with the current directory set to its -# containing dir. -# -# Note that not all possible configuration values are present in this -# autogenerated file. -# -# All configuration values have a default; values that are commented out -# serve to show the default. - -# If extensions (or modules to document with autodoc) are in another directory, -# add these directories to sys.path here. If the directory is relative to the -# documentation root, use os.path.abspath to make it absolute, like shown here. -# sys.path.insert(0, os.path.abspath('.')) - -# -- General configuration ------------------------------------------------ - -# If your documentation needs a minimal Sphinx version, state it here. -# needs_sphinx = '1.0' - -# Add any Sphinx extension module names here, as strings. They can be -# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom -# ones. -extensions = [ - 'openstackdocstheme', - 'sphinx.ext.autodoc', - 'sphinxcontrib.rsvgconverter', -] - -# Add any paths that contain templates here, relative to this directory. -templates_path = ['_templates'] - -# The suffix(es) of source filenames. -# You can specify multiple suffix as a list of string: -# source_suffix = ['.rst', '.md'] -source_suffix = '.rst' - -# The encoding of source files. -# source_encoding = 'utf-8-sig' - -# The master toctree document. -master_doc = 'index' - -# General information about the project. -author = 'OpenStack-Ansible Contributors' -category = 'Miscellaneous' -copyright = '2014-2016, OpenStack-Ansible Contributors' -description = 'OpenStack-Ansible deploys OpenStack environments using Ansible.' -project = 'OpenStack-Ansible' -role_name = 'galera_client' -target_name = 'openstack-ansible-' + role_name -title = 'OpenStack-Ansible Documentation: ' + role_name + ' role' - -# openstackdocstheme options -openstackdocs_repo_name = 'openstack/' + target_name -openstackdocs_pdf_link = True -openstackdocs_bug_project = project.lower() -openstackdocs_bug_tag = '' - -# The language for content autogenerated by Sphinx. Refer to documentation -# for a list of supported languages. -# -# This is also used if you do content translation via gettext catalogs. -# Usually you set "language" from the command line for these cases. -language = None - -# There are two options for replacing |today|: either, you set today to some -# non-false value, then it is used: -# today = '' -# Else, today_fmt is used as the format for a strftime call. -# today_fmt = '%B %d, %Y' - -# List of patterns, relative to source directory, that match files and -# directories to ignore when looking for source files. -exclude_patterns = [] - -# The reST default role (used for this markup: `text`) to use for all -# documents. -# default_role = None - -# If true, '()' will be appended to :func: etc. cross-reference text. -# add_function_parentheses = True - -# If true, the current module name will be prepended to all description -# unit titles (such as .. function::). -# add_module_names = True - -# If true, sectionauthor and moduleauthor directives will be shown in the -# output. They are ignored by default. -# show_authors = False - -# The name of the Pygments (syntax highlighting) style to use. -pygments_style = 'native' - -# A list of ignored prefixes for module index sorting. -# modindex_common_prefix = [] - -# If true, keep warnings as "system message" paragraphs in the built documents. -# keep_warnings = False - -# If true, `todo` and `todoList` produce output, else they produce nothing. -todo_include_todos = False - - -# -- Options for HTML output ---------------------------------------------- - -# The theme to use for HTML and HTML Help pages. See the documentation for -# a list of builtin themes. -html_theme = 'openstackdocs' - -# Theme options are theme-specific and customize the look and feel of a theme -# further. For a list of options available for each theme, see the -# documentation. -# html_theme_options = {} - -# Add any paths that contain custom themes here, relative to this directory. -# html_theme_path = [] - -# The name for this set of Sphinx documents. If None, it defaults to -# " v documentation". -# html_title = None - -# A shorter title for the navigation bar. Default is the same as html_title. -# html_short_title = None - -# The name of an image file (relative to this directory) to place at the top -# of the sidebar. -# html_logo = None - -# The name of an image file (within the static path) to use as favicon of the -# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 -# pixels large. -# html_favicon = None - -# Add any extra paths that contain custom files (such as robots.txt or -# .htaccess) here, relative to this directory. These files are copied -# directly to the root of the documentation. -# html_extra_path = [] - -# If true, SmartyPants will be used to convert quotes and dashes to -# typographically correct entities. -# html_use_smartypants = True - -# Custom sidebar templates, maps document names to template names. -# html_sidebars = {} - -# Additional templates that should be rendered to pages, maps page names to -# template names. -# html_additional_pages = {} - -# If false, no module index is generated. -# html_domain_indices = True - -# If false, no index is generated. -# html_use_index = True - -# If true, the index is split into individual pages for each letter. -# html_split_index = False - -# If true, links to the reST sources are added to the pages. -# html_show_sourcelink = True - -# If true, "Created using Sphinx" is shown in the HTML footer. Default is True. -# html_show_sphinx = True - -# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. -# html_show_copyright = True - -# If true, an OpenSearch description file will be output, and all pages will -# contain a tag referring to it. The value of this option must be the -# base URL from which the finished HTML is served. -# html_use_opensearch = '' - -# This is the file name suffix for HTML files (e.g. ".xhtml"). -# html_file_suffix = None - -# Language to be used for generating the HTML full-text search index. -# Sphinx supports the following languages: -# 'da', 'de', 'en', 'es', 'fi', 'fr', 'h', 'it', 'ja' -# 'nl', 'no', 'pt', 'ro', 'r', 'sv', 'tr' -# html_search_language = 'en' - -# A dictionary with options for the search language support, empty by default. -# Now only 'ja' uses this config value -# html_search_options = {'type': 'default'} - -# The name of a javascript file (relative to the configuration directory) that -# implements a search results scorer. If empty, the default will be used. -# html_search_scorer = 'scorer.js' - -# Output file base name for HTML help builder. -htmlhelp_basename = target_name + '-docs' - -# -- Options for LaTeX output --------------------------------------------- - -latex_elements = { - # The paper size ('letterpaper' or 'a4paper'). - # 'papersize': 'letterpaper', - - # The font size ('10pt', '11pt' or '12pt'). - # 'pointsize': '10pt', - - # Additional stuff for the LaTeX preamble. - # 'preamble': '', - - # Latex figure (float) alignment - # 'figure_align': 'htbp', -} - -# Grouping the document tree into LaTeX files. List of tuples -# (source start file, target name, title, -# author, documentclass [howto, manual, or own class]). -latex_documents = [ - (master_doc, 'doc-' + target_name + '.tex', - title.replace("_", "\_"), author, 'manual'), -] - -latex_use_xindy = False - -# The name of an image file (relative to this directory) to place at the top of -# the title page. -# latex_logo = None - -# For "manual" documents, if this is true, then toplevel headings are parts, -# not chapters. -# latex_use_parts = False - -# If true, show page references after internal links. -# latex_show_pagerefs = False - -# If true, show URL addresses after external links. -# latex_show_urls = False - -# Documents to append as an appendix to all manuals. -# latex_appendices = [] - -# If false, no module index is generated. -# latex_domain_indices = True - - -# -- Options for manual page output --------------------------------------- - -# One entry per manual page. List of tuples -# (source start file, name, description, authors, manual section). -man_pages = [ - (master_doc, target_name, - title, [author], 1) -] - -# If true, show URL addresses after external links. -# man_show_urls = False - - -# -- Options for Texinfo output ------------------------------------------- - -# Grouping the document tree into Texinfo files. List of tuples -# (source start file, target name, title, author, -# dir menu entry, description, category) -texinfo_documents = [ - (master_doc, target_name, - title, author, project, - description, category), -] - -# Documents to append as an appendix to all manuals. -# texinfo_appendices = [] - -# If false, no module index is generated. -# texinfo_domain_indices = True - -# How to display URL addresses: 'footnote', 'no', or 'inline'. -# texinfo_show_urls = 'footnote' - -# If true, do not generate a @detailmenu in the "Top" node's menu. -# texinfo_no_detailmenu = False -# -- Options for PDF output -------------------------------------------------- - -pdf_documents = [ - (master_doc, target_name, - title, author) -] - -locale_dirs = ['locale/'] diff --git a/doc/source/index.rst b/doc/source/index.rst deleted file mode 100644 index 13dbcba..0000000 --- a/doc/source/index.rst +++ /dev/null @@ -1,42 +0,0 @@ -=============================== -OpenStack-Ansible Galera client -=============================== - -This Ansible role installs packages used to interact with and manage a Galera -cluster. - -To clone or view the source code for this repository, visit the role repository -for `galera_client `_. - -Default variables -~~~~~~~~~~~~~~~~~ - -.. literalinclude:: ../../defaults/main.yml - :language: yaml - :start-after: under the License. - -Required variables -~~~~~~~~~~~~~~~~~~ - -To use this role, define the following variables: - -.. code-block:: yaml - - galera_root_password: secrete - -Dependencies -~~~~~~~~~~~~ - -This role needs pip >= 7.1 installed on the target host. - -This role depends on the ``config_template`` Ansible module provided -by `OpenStack-Ansible Plugins`_. - -.. _OpenStack-Ansible Plugins: - https://opendev.org/openstack/openstack-ansible-plugins - -Example playbook -~~~~~~~~~~~~~~~~ - -.. literalinclude:: ../../examples/playbook.yml - :language: yaml diff --git a/examples/playbook.yml b/examples/playbook.yml deleted file mode 100644 index 95a709e..0000000 --- a/examples/playbook.yml +++ /dev/null @@ -1,9 +0,0 @@ -- name: Install Galera client - hosts: all - user: root - roles: - - role: "openstack-ansible-galera_client" - galera_address: "10.0.0.1" - galera_root_password: secrete - galera_root_user: root - galera_client_drop_config_file: true diff --git a/files/gpg/C74CD1D8 b/files/gpg/C74CD1D8 deleted file mode 100644 index f8c4182..0000000 --- a/files/gpg/C74CD1D8 +++ /dev/null @@ -1,99 +0,0 @@ ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1 - -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 -Enavx1X4t12JH6K6SFdHAlcfxFVURRI= -=gukQ ------END PGP PUBLIC KEY BLOCK----- diff --git a/files/gpg/RPM-GPG-KEY-MariaDB b/files/gpg/RPM-GPG-KEY-MariaDB deleted file mode 100644 index b0d722a..0000000 --- a/files/gpg/RPM-GPG-KEY-MariaDB +++ /dev/null @@ -1,132 +0,0 @@ ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.14 (GNU/Linux) - -mQGiBEtohJARBACxvZpWSIMTp/e7BUzSW+WDL7Pl0JDg6v7ZJFGJk9qo+5JXIiis -497Ul0FmVJ6EoyVzfpqe5FyUvqtLCkM6UP5adyvXTHi1KMiYacu2q5yRhDpMKbpM -LkAg23Yyz1yK/d0TsAkerLJ6K1Bh8NIm44Op+qFrDxeYZDIR5Q8WaCdK8wCg/jc8 -p/4XaKq74ghUHEX+35qk63UD/0YEsgHrsRQZ42wKNeO8ZUJKqCVHXYJrCq7DhRhn -U5aYnuK3op0JusPN5fdIGkKwJy24dWRoRfNIIg0WvM8qUNrC2NvhomnZNudsI0Jb -XapRemrIwbvrZToD6ei1awdVqa5fT6XIxV4MSQEwn47qmUNSz/0TkUmB3VZ2EL/j -zfHUA/91ZfAdWCmRemTLWRrzIYYJKyEInZ0qwZVrkyMY8+T7b2/6RGR0f2oV1dOx -cjbd0+N3vKrUkjuzkcVu/oB8wq9UBfuSHwsxYqub4gvIh0/LW+CsWa955sQ/Hj9H -48j3nUHaXqM9uJyMMgMlCdo3rLpnYCJH8w2kFfLHIDksMs1YtLQ9TWFyaWFEQiBQ -YWNrYWdlIFNpZ25pbmcgS2V5IDxwYWNrYWdlLXNpZ25pbmcta2V5QG1hcmlhZGIu -b3JnPohiBBMRAgAiBQJREUepAhsDBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAK -CRDLywgqG7lD28y4AJ0aByfYvJWqBm5PZjusZiG0vo9SRwCeM0izj/oryMu0fJi3 -kRbTlojzCd2JAhwEEAECAAYFAlERSAgACgkQQd3AtA2lbyLlsQ/+KbSkMhjnZ73I -9XhndOX7USxIIumuVI2nU829+EiLhxYYcVJHUO5tO9rvRGgmSg0IhPSwEMK3GLC3 -P5v6gipyCKOAnx2T0qF2k8gq9YRVFd7LZqJsM06HuGsFG5SWieVjjjE0s7A/urLb -Uxa067pleZeKFCTTxTnar2eBKQAhwZkRSEBvvcAHkqQQAMwiAHvq2A0IjC3txqUF -iQbMouPCOJYA3Wn3NXKZwCxcyl2WwGSt7EwAs6C6d266QyWVQT+kZ6JFgRibcnfl -sNdniknGue5EKAj0nlhHGf6cyqJZ3AN4h+W40kKfIqnaeWkT0K+MnKp3Tah9y+h0 -u5buKfR5D/tK5ZYLUS0ujQJ0tlO1KpZuvTn13n7OMn7fOb3yqUcthnSTcuB/wpH2 -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 -=bSQ3 ------END PGP PUBLIC KEY BLOCK----- diff --git a/manual-test.rc b/manual-test.rc deleted file mode 100644 index 7016c45..0000000 --- a/manual-test.rc +++ /dev/null @@ -1,33 +0,0 @@ -export VIRTUAL_ENV=$(pwd) -export ANSIBLE_HOST_KEY_CHECKING=False -export ANSIBLE_SSH_CONTROL_PATH=/tmp/%%h-%%r - -# TODO (odyssey4me) These are only here as they are non-standard folder -# names for Ansible 1.9.x. We are using the standard folder names for -# Ansible v2.x. We can remove this when we move to Ansible 2.x. -export ANSIBLE_ACTION_PLUGINS=${HOME}/.ansible/plugins/action -export ANSIBLE_CALLBACK_PLUGINS=${HOME}/.ansible/plugins/callback -export ANSIBLE_FILTER_PLUGINS=${HOME}/.ansible/plugins/filter -export ANSIBLE_LOOKUP_PLUGINS=${HOME}/.ansible/plugins/lookup - -# This is required as the default is the current path or a path specified -# in ansible.cfg -export ANSIBLE_LIBRARY=${HOME}/.ansible/plugins/library - -# This is required as the default is '/etc/ansible/roles' or a path -# specified in ansible.cfg -export ANSIBLE_ROLES_PATH=${HOME}/.ansible/roles:$(pwd)/.. - -export ANSIBLE_SSH_ARGS="-o ControlMaster=no \ - -o UserKnownHostsFile=/dev/null \ - -o StrictHostKeyChecking=no \ - -o ServerAliveInterval=64 \ - -o ServerAliveCountMax=1024 \ - -o Compression=no \ - -o TCPKeepAlive=yes \ - -o VerifyHostKeyDNS=no \ - -o ForwardX11=no \ - -o ForwardAgent=yes" - -echo "Run manual functional tests by executing the following:" -echo "# ./.tox/functional/bin/ansible-playbook -i tests/inventory tests/test.yml" diff --git a/meta/main.yml b/meta/main.yml deleted file mode 100644 index 4357a71..0000000 --- a/meta/main.yml +++ /dev/null @@ -1,46 +0,0 @@ ---- -# Copyright 2014, Rackspace US, Inc. -# -# 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. - -galaxy_info: - author: rcbops - description: Installation galera client - company: Rackspace - license: Apache2 - min_ansible_version: 2.4 - platforms: - - name: Debian - versions: - - stretch - - name: Ubuntu - versions: - - bionic - - name: EL - versions: - - 7 - - name: opensuse - versions: - - 15 - categories: - - cloud - - galera - - mariadb - - development - - openstack -dependencies: - - role: apt_package_pinning - apt_pinned_packages: "{{ galera_client_distro_package_pins }}" - apt_package_pinning_file_name: "galera_client_pin.pref" - when: - - ansible_pkg_mgr == 'apt' diff --git a/meta/openstack-ansible.yml b/meta/openstack-ansible.yml deleted file mode 100644 index be178e4..0000000 --- a/meta/openstack-ansible.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -# Copyright 2017, Rackspace US, Inc. -# -# 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. -# -# (c) 2017, Jean-Philippe Evrard - -maturity_info: - status: complete - created_during: mitaka diff --git a/releasenotes/notes/.placeholder b/releasenotes/notes/.placeholder deleted file mode 100644 index e69de29..0000000 diff --git a/releasenotes/notes/apt-package-pinning-dependency-6e2e94d829508859.yaml b/releasenotes/notes/apt-package-pinning-dependency-6e2e94d829508859.yaml deleted file mode 100644 index e24eac1..0000000 --- a/releasenotes/notes/apt-package-pinning-dependency-6e2e94d829508859.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -upgrade: - - The Galera client role now has a dependency on the - apt package pinning role. diff --git a/releasenotes/notes/apt-source-filenamed-9718897bcfa7b36b.yaml b/releasenotes/notes/apt-source-filenamed-9718897bcfa7b36b.yaml deleted file mode 100644 index 641ed44..0000000 --- a/releasenotes/notes/apt-source-filenamed-9718897bcfa7b36b.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -features: - - The filename of the apt/yum source can now be - defined with the variable ``mariadb_repo_filename``. diff --git a/releasenotes/notes/drop-opensuse-mirror-url-variable-fa2df9eee6399938.yaml b/releasenotes/notes/drop-opensuse-mirror-url-variable-fa2df9eee6399938.yaml deleted file mode 100644 index d78eae8..0000000 --- a/releasenotes/notes/drop-opensuse-mirror-url-variable-fa2df9eee6399938.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -deprecations: - - | - The ``galera_client_opensuse_mirror_obs_url`` variable has been removed - since the OBS repository is no longer used to install the MariaDB packages. diff --git a/releasenotes/notes/galera-client-gpg-keys-8b674cee476885d0.yaml b/releasenotes/notes/galera-client-gpg-keys-8b674cee476885d0.yaml deleted file mode 100644 index 96b5a9a..0000000 --- a/releasenotes/notes/galera-client-gpg-keys-8b674cee476885d0.yaml +++ /dev/null @@ -1,12 +0,0 @@ ---- -upgrade: - - | - The data structure for ``galera_client_gpg_keys`` has been changed to be - a dict passed directly to the applicable apt_key/rpm_key module. As such - any overrides would need to be reviewed to ensure that they do not pass - any key/value pairs which would cause the module to fail. - - | - The default values for ``galera_client_gpg_keys`` have been changed for - all supported platforms will use vendored keys. This means that the task - execution will no longer reach out to the internet to add the keys, - making offline or proxy-based installations easier and more reliable. diff --git a/releasenotes/notes/galera-client-mariadb-10-1-a90e0d2a89d6e76b.yaml b/releasenotes/notes/galera-client-mariadb-10-1-a90e0d2a89d6e76b.yaml deleted file mode 100644 index 3e76752..0000000 --- a/releasenotes/notes/galera-client-mariadb-10-1-a90e0d2a89d6e76b.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -upgrade: - - The galera_client role now installs MariaDB client version 10.1. - - For systems using the APT package manager, the sources file for - the MariaDB repo now has a consistent name, 'MariaDB.list'. diff --git a/releasenotes/notes/galera-client-package-install-fd34423e293f5d8b.yaml b/releasenotes/notes/galera-client-package-install-fd34423e293f5d8b.yaml deleted file mode 100644 index 4b6088a..0000000 --- a/releasenotes/notes/galera-client-package-install-fd34423e293f5d8b.yaml +++ /dev/null @@ -1,9 +0,0 @@ ---- -features: - - The ``galera_client_package_install`` option can now - be specified to handle whether packages are installed - as a result of the ``openstack-ansible-galera_client`` - role running. This will default to ``true``, but can be - set to ``false`` to prevent package installs. This is - useful when deploying the ``my.cnf`` client configuration - file on hosts that already have Galera installed. diff --git a/releasenotes/notes/galera-client-url-var-deprecate-9ced45ea374c3c7d.yaml b/releasenotes/notes/galera-client-url-var-deprecate-9ced45ea374c3c7d.yaml deleted file mode 100644 index d12b8e2..0000000 --- a/releasenotes/notes/galera-client-url-var-deprecate-9ced45ea374c3c7d.yaml +++ /dev/null @@ -1,9 +0,0 @@ ---- -features: - - The ``galera_client`` role will default to using the ``galera_repo_url`` - URL if the value for it is set. This simplifies using an alternative - mirror for the MariaDB server and client as only one variable needs to - be set to cover them both. -deprecations: - - The variables ``galera_client_apt_repo_url`` and ``galera_client_yum_repo_url`` - are deprecated in favour of the common variable ``galera_client_repo_url``. diff --git a/releasenotes/notes/implement-ssl-48a82cf611db0eb6.yaml b/releasenotes/notes/implement-ssl-48a82cf611db0eb6.yaml deleted file mode 100644 index 3dd18c4..0000000 --- a/releasenotes/notes/implement-ssl-48a82cf611db0eb6.yaml +++ /dev/null @@ -1,5 +0,0 @@ ---- -features: - - Allows SSL connection to Galera with SSL support. ``galera_use_ssl`` option has to - be set to ``true``, in this case self-signed CA cert or user-provided CA cert will - be delivered to the container/host. diff --git a/releasenotes/notes/multi-distro-add-0e53560f66394691.yaml b/releasenotes/notes/multi-distro-add-0e53560f66394691.yaml deleted file mode 100644 index 9ad81e0..0000000 --- a/releasenotes/notes/multi-distro-add-0e53560f66394691.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -features: - - CentOS 7 support has been added to the ``galera_client`` role. -upgrade: - - The variable ``galera_client_apt_packages`` has been replaced - by ``galera_client_distro_packages``. diff --git a/releasenotes/notes/opensuse-mirror-url-variable-865a97abb4c61430.yaml b/releasenotes/notes/opensuse-mirror-url-variable-865a97abb4c61430.yaml deleted file mode 100644 index 0fa3d21..0000000 --- a/releasenotes/notes/opensuse-mirror-url-variable-865a97abb4c61430.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -features: - - | - Deployers can set ``galera_client_opensuse_mirror_obs_url`` to use their - preferred mirror for the galera server OBS packages. The full list of - mirrors and their capabilities can be obtained at http://mirrors.opensuse.org/ diff --git a/releasenotes/notes/package-state-003ff33c557af3b5.yaml b/releasenotes/notes/package-state-003ff33c557af3b5.yaml deleted file mode 100644 index 0012286..0000000 --- a/releasenotes/notes/package-state-003ff33c557af3b5.yaml +++ /dev/null @@ -1,13 +0,0 @@ ---- -features: - - The galera_client role now supports the ability to configure whether - apt/yum tasks install the latest available package, or just ensure - that the package is present. The default action is to ensure that - the latest package is present. The action taken may be changed to - only ensure that the package is present by setting - ``galera_client_package_state`` to ``present``. -upgrade: - - The galera_client role always checks whether the latest package is - installed when executed. If a deployer wishes to change the check to - only validate the presence of the package, the option - ``galera_client_package_state`` should be set to ``present``. diff --git a/releasenotes/notes/remove-xtrabackup-0513a40593f2d0e3.yaml b/releasenotes/notes/remove-xtrabackup-0513a40593f2d0e3.yaml deleted file mode 100644 index 6a1930c..0000000 --- a/releasenotes/notes/remove-xtrabackup-0513a40593f2d0e3.yaml +++ /dev/null @@ -1,7 +0,0 @@ ---- -upgrade: - - Percona Xtrabackup has been removed from the Galera client - role. -deprecations: - - The variables ```galera_client_package_*``` and ```galera_client_apt_percona_xtrabackup_*``` - have been removed from the role as Xtrabackup is no longer deployed. diff --git a/releasenotes/notes/suse-support-f50df7e6b27e3e15.yaml b/releasenotes/notes/suse-support-f50df7e6b27e3e15.yaml deleted file mode 100644 index 4940f6d..0000000 --- a/releasenotes/notes/suse-support-f50df7e6b27e3e15.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -features: - - The role now supports SUSE based distributions. Required packages - can now be installed using the `zypper` package manager. diff --git a/releasenotes/notes/update-mariadb-to-10.2-b99a87ed0bb60b37.yaml b/releasenotes/notes/update-mariadb-to-10.2-b99a87ed0bb60b37.yaml deleted file mode 100644 index 7991c44..0000000 --- a/releasenotes/notes/update-mariadb-to-10.2-b99a87ed0bb60b37.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -features: - - | - The MariaDB version has been bumped to 10.2 diff --git a/releasenotes/source/_static/.placeholder b/releasenotes/source/_static/.placeholder deleted file mode 100644 index e69de29..0000000 diff --git a/releasenotes/source/_templates/.placeholder b/releasenotes/source/_templates/.placeholder deleted file mode 100644 index e69de29..0000000 diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py deleted file mode 100644 index d16ec1e..0000000 --- a/releasenotes/source/conf.py +++ /dev/null @@ -1,276 +0,0 @@ -#!/usr/bin/env python3 - -# 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. - -# This file is execfile()d with the current directory set to its -# containing dir. -# -# Note that not all possible configuration values are present in this -# autogenerated file. -# -# All configuration values have a default; values that are commented out -# serve to show the default. - -# If extensions (or modules to document with autodoc) are in another directory, -# add these directories to sys.path here. If the directory is relative to the -# documentation root, use os.path.abspath to make it absolute, like shown here. -# sys.path.insert(0, os.path.abspath('.')) - -# -- General configuration ------------------------------------------------ - -# If your documentation needs a minimal Sphinx version, state it here. -# needs_sphinx = '1.0' - -# Add any Sphinx extension module names here, as strings. They can be -# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom -# ones. -extensions = [ - 'openstackdocstheme', - 'reno.sphinxext', -] - -# Add any paths that contain templates here, relative to this directory. -templates_path = ['_templates'] - -# The suffix of source filenames. -source_suffix = '.rst' - -# The encoding of source files. -# source_encoding = 'utf-8-sig' - -# The master toctree document. -master_doc = 'index' - -# General information about the project. -author = 'OpenStack-Ansible Contributors' -category = 'Miscellaneous' -copyright = '2014-2016, OpenStack-Ansible Contributors' -description = 'OpenStack-Ansible deploys OpenStack environments using Ansible.' -project = 'OpenStack-Ansible' -role_name = 'galera_client' -target_name = 'openstack-ansible-' + role_name -title = 'OpenStack-Ansible Release Notes: ' + role_name + 'role' - -# Release notes do not need a version number in the title, -# they cover multiple versions. -# The full version, including alpha/beta/rc tags. -release = '' -# The short X.Y version. -version = '' - -# openstackdocstheme options -openstackdocs_repo_name = 'openstack/' + target_name -openstackdocs_bug_project = project.lower() -openstackdocs_bug_tag = '' - -# The language for content autogenerated by Sphinx. Refer to documentation -# for a list of supported languages. -# language = None - -# There are two options for replacing |today|: either, you set today to some -# non-false value, then it is used: -# today = '' -# Else, today_fmt is used as the format for a strftime call. -# today_fmt = '%B %d, %Y' - -# List of patterns, relative to source directory, that match files and -# directories to ignore when looking for source files. -exclude_patterns = [] - -# The reST default role (used for this markup: `text`) to use for all -# documents. -# default_role = None - -# If true, '()' will be appended to :func: etc. cross-reference text. -# add_function_parentheses = True - -# If true, the current module name will be prepended to all description -# unit titles (such as .. function::). -# add_module_names = True - -# If true, sectionauthor and moduleauthor directives will be shown in the -# output. They are ignored by default. -# show_authors = False - -# The name of the Pygments (syntax highlighting) style to use. -pygments_style = 'native' - -# A list of ignored prefixes for module index sorting. -# modindex_common_prefix = [] - -# If true, keep warnings as "system message" paragraphs in the built documents. -# keep_warnings = False - - -# -- Options for HTML output ---------------------------------------------- - -# The theme to use for HTML and HTML Help pages. See the documentation for -# a list of builtin themes. -html_theme = 'openstackdocs' - -# Theme options are theme-specific and customize the look and feel of a theme -# further. For a list of options available for each theme, see the -# documentation. -# html_theme_options = {} - -# Add any paths that contain custom themes here, relative to this directory. -# html_theme_path = [] - -# The name for this set of Sphinx documents. If None, it defaults to -# " v documentation". -# html_title = None - -# A shorter title for the navigation bar. Default is the same as html_title. -# html_short_title = None - -# The name of an image file (relative to this directory) to place at the top -# of the sidebar. -# html_logo = None - -# The name of an image file (within the static path) to use as favicon of the -# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 -# pixels large. -# html_favicon = None - -# Add any paths that contain custom static files (such as style sheets) here, -# relative to this directory. They are copied after the builtin static files, -# so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] - -# Add any extra paths that contain custom files (such as robots.txt or -# .htaccess) here, relative to this directory. These files are copied -# directly to the root of the documentation. -# html_extra_path = [] - -# If true, SmartyPants will be used to convert quotes and dashes to -# typographically correct entities. -# html_use_smartypants = True - -# Custom sidebar templates, maps document names to template names. -# html_sidebars = {} - -# Additional templates that should be rendered to pages, maps page names to -# template names. -# html_additional_pages = {} - -# If false, no module index is generated. -# html_domain_indices = True - -# If false, no index is generated. -# html_use_index = True - -# If true, the index is split into individual pages for each letter. -# html_split_index = False - -# If true, links to the reST sources are added to the pages. -# html_show_sourcelink = True - -# If true, "Created using Sphinx" is shown in the HTML footer. Default is True. -# html_show_sphinx = True - -# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. -# html_show_copyright = True - -# If true, an OpenSearch description file will be output, and all pages will -# contain a tag referring to it. The value of this option must be the -# base URL from which the finished HTML is served. -# html_use_opensearch = '' - -# This is the file name suffix for HTML files (e.g. ".xhtml"). -# html_file_suffix = None - -# Output file base name for HTML help builder. -htmlhelp_basename = target_name + '-docs' - - -# -- Options for LaTeX output --------------------------------------------- - -latex_elements = { - # The paper size ('letterpaper' or 'a4paper'). - # 'papersize': 'letterpaper', - - # The font size ('10pt', '11pt' or '12pt'). - # 'pointsize': '10pt', - - # Additional stuff for the LaTeX preamble. - # 'preamble': '', -} - -# Grouping the document tree into LaTeX files. List of tuples -# (source start file, target name, title, -# author, documentclass [howto, manual, or own class]). -latex_documents = [ - (master_doc, target_name + '.tex', - title, author, 'manual'), -] - -# The name of an image file (relative to this directory) to place at the top of -# the title page. -# latex_logo = None - -# For "manual" documents, if this is true, then toplevel headings are parts, -# not chapters. -# latex_use_parts = False - -# If true, show page references after internal links. -# latex_show_pagerefs = False - -# If true, show URL addresses after external links. -# latex_show_urls = False - -# Documents to append as an appendix to all manuals. -# latex_appendices = [] - -# If false, no module index is generated. -# latex_domain_indices = True - - -# -- Options for manual page output --------------------------------------- - -# One entry per manual page. List of tuples -# (source start file, name, description, authors, manual section). -man_pages = [ - (master_doc, target_name, - title, [author], 1) -] - -# If true, show URL addresses after external links. -# man_show_urls = False - - -# -- Options for Texinfo output ------------------------------------------- - -# Grouping the document tree into Texinfo files. List of tuples -# (source start file, target name, title, author, -# dir menu entry, description, category) -texinfo_documents = [ - (master_doc, target_name, - title, author, project, - description, category), -] - -# Documents to append as an appendix to all manuals. -# texinfo_appendices = [] - -# If false, no module index is generated. -# texinfo_domain_indices = True - -# How to display URL addresses: 'footnote', 'no', or 'inline'. -# texinfo_show_urls = 'footnote' - -# If true, do not generate a @detailmenu in the "Top" node's menu. -# texinfo_no_detailmenu = False - -# -- Options for Internationalization output ------------------------------ -locale_dirs = ['locale/'] diff --git a/releasenotes/source/index.rst b/releasenotes/source/index.rst deleted file mode 100644 index d3ee67c..0000000 --- a/releasenotes/source/index.rst +++ /dev/null @@ -1,17 +0,0 @@ -================================ - OpenStack-Ansible Release Notes -================================ - -.. toctree:: - :maxdepth: 1 - - unreleased - ussuri - train - stein - rocky - queens - pike - ocata - newton - mitaka diff --git a/releasenotes/source/mitaka.rst b/releasenotes/source/mitaka.rst deleted file mode 100644 index 0dc585c..0000000 --- a/releasenotes/source/mitaka.rst +++ /dev/null @@ -1,6 +0,0 @@ -============================= - Mitaka Series Release Notes -============================= - -.. release-notes:: - :branch: origin/stable/mitaka diff --git a/releasenotes/source/newton.rst b/releasenotes/source/newton.rst deleted file mode 100644 index 97036ed..0000000 --- a/releasenotes/source/newton.rst +++ /dev/null @@ -1,6 +0,0 @@ -=================================== - Newton Series Release Notes -=================================== - -.. release-notes:: - :branch: origin/stable/newton diff --git a/releasenotes/source/ocata.rst b/releasenotes/source/ocata.rst deleted file mode 100644 index ebe62f4..0000000 --- a/releasenotes/source/ocata.rst +++ /dev/null @@ -1,6 +0,0 @@ -=================================== - Ocata Series Release Notes -=================================== - -.. release-notes:: - :branch: origin/stable/ocata diff --git a/releasenotes/source/pike.rst b/releasenotes/source/pike.rst deleted file mode 100644 index e43bfc0..0000000 --- a/releasenotes/source/pike.rst +++ /dev/null @@ -1,6 +0,0 @@ -=================================== - Pike Series Release Notes -=================================== - -.. release-notes:: - :branch: stable/pike diff --git a/releasenotes/source/queens.rst b/releasenotes/source/queens.rst deleted file mode 100644 index 36ac616..0000000 --- a/releasenotes/source/queens.rst +++ /dev/null @@ -1,6 +0,0 @@ -=================================== - Queens Series Release Notes -=================================== - -.. release-notes:: - :branch: stable/queens diff --git a/releasenotes/source/rocky.rst b/releasenotes/source/rocky.rst deleted file mode 100644 index 40dd517..0000000 --- a/releasenotes/source/rocky.rst +++ /dev/null @@ -1,6 +0,0 @@ -=================================== - Rocky Series Release Notes -=================================== - -.. release-notes:: - :branch: stable/rocky diff --git a/releasenotes/source/stein.rst b/releasenotes/source/stein.rst deleted file mode 100644 index efaceb6..0000000 --- a/releasenotes/source/stein.rst +++ /dev/null @@ -1,6 +0,0 @@ -=================================== - Stein Series Release Notes -=================================== - -.. release-notes:: - :branch: stable/stein diff --git a/releasenotes/source/train.rst b/releasenotes/source/train.rst deleted file mode 100644 index 5839003..0000000 --- a/releasenotes/source/train.rst +++ /dev/null @@ -1,6 +0,0 @@ -========================== -Train Series Release Notes -========================== - -.. release-notes:: - :branch: stable/train diff --git a/releasenotes/source/unreleased.rst b/releasenotes/source/unreleased.rst deleted file mode 100644 index cd22aab..0000000 --- a/releasenotes/source/unreleased.rst +++ /dev/null @@ -1,5 +0,0 @@ -============================== - Current Series Release Notes -============================== - -.. release-notes:: diff --git a/releasenotes/source/ussuri.rst b/releasenotes/source/ussuri.rst deleted file mode 100644 index e21e50e..0000000 --- a/releasenotes/source/ussuri.rst +++ /dev/null @@ -1,6 +0,0 @@ -=========================== -Ussuri Series Release Notes -=========================== - -.. release-notes:: - :branch: stable/ussuri diff --git a/run_tests.sh b/run_tests.sh deleted file mode 100755 index 93e91dd..0000000 --- a/run_tests.sh +++ /dev/null @@ -1,94 +0,0 @@ -#!/usr/bin/env bash -# Copyright 2015, Rackspace US, Inc. -# -# 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. - -# PURPOSE: -# This script clones the openstack-ansible-tests repository to the -# tests/common folder in order to be able to re-use test components -# for role testing. This is intended to be the thinnest possible -# shim for test execution outside of OpenStack CI. - -# WARNING: -# This file is maintained in the openstack-ansible-tests repository. -# https://opendev.org/openstack/openstack-ansible-tests/src/run_tests.sh -# If you need to modify this file, update the one in the openstack-ansible-tests -# repository and then update this file as well. The purpose of this file is to -# prepare the host and then execute all the tox tests. -# - -## Shell Opts ---------------------------------------------------------------- -set -xeu - -## Vars ---------------------------------------------------------------------- - -WORKING_DIR="$(readlink -f $(dirname $0))" -OSA_PROJECT_NAME="$(sed -n 's|^project=openstack/\(.*\).git$|\1|p' $(pwd)/.gitreview)" - -COMMON_TESTS_PATH="${WORKING_DIR}/tests/common" -TESTING_HOME=${TESTING_HOME:-$HOME} -ZUUL_TESTS_CLONE_LOCATION="/home/zuul/src/opendev.org/openstack/openstack-ansible-tests" - -# Use .gitreview as the key to determine the appropriate -# branch to clone for tests. -TESTING_BRANCH=$(awk -F'=' '/defaultbranch/ {print $2}' "${WORKING_DIR}/.gitreview") -if [[ "${TESTING_BRANCH}" == "" ]]; then - TESTING_BRANCH="master" -fi - -## Main ---------------------------------------------------------------------- - -# Source distribution information -source /etc/os-release || source /usr/lib/os-release - -# Figure out the appropriate package install command -case ${ID,,} in - *suse*) pkg_mgr_cmd="zypper -n in" ;; - centos|rhel|fedora) pkg_mgr_cmd="dnf install -y" ;; - ubuntu|debian) pkg_mgr_cmd="apt-get install -y" ;; - # Gentoo needs to have version set since it's rolling - gentoo) pkg_mgr_cmd="emerge --jobs=4"; VERSION="rolling" ;; - *) echo "unsupported distribution: ${ID,,}"; exit 1 ;; -esac - -# Install git so that we can clone the tests repo if git is not available -case ${ID,,} in - gentoo) which git &>/dev/null || eval sudo "${pkg_mgr_cmd}" dev-vcs/git ;; - *) which git &>/dev/null || eval sudo "${pkg_mgr_cmd}" git ;; -esac - -# Clone the tests repo for access to the common test script -if [[ ! -d "${COMMON_TESTS_PATH}" ]]; then - # The tests repo doesn't need a clone, we can just - # symlink it. - if [[ "${OSA_PROJECT_NAME}" == "openstack-ansible-tests" ]]; then - ln -s "${WORKING_DIR}" "${COMMON_TESTS_PATH}" - - # In zuul v3 any dependent repository is placed into - # /home/zuul/src/opendev.org, so we check to see - # if there is a tests checkout there already. If so, we - # symlink that and use it. - elif [[ -d "${ZUUL_TESTS_CLONE_LOCATION}" ]]; then - ln -s "${ZUUL_TESTS_CLONE_LOCATION}" "${COMMON_TESTS_PATH}" - - # Otherwise we're clearly not in zuul or using a previously setup - # repo in some way, so just clone it from upstream. - else - git clone -b "${TESTING_BRANCH}" \ - https://opendev.org/openstack/openstack-ansible-tests \ - "${COMMON_TESTS_PATH}" - fi -fi - -# Execute the common test script -source tests/common/run_tests_common.sh diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index d1157a7..0000000 --- a/setup.cfg +++ /dev/null @@ -1,13 +0,0 @@ -[metadata] -name = openstack-ansible-galera_client -summary = galera_client for OpenStack Ansible -description-file = - README.rst -author = OpenStack -author-email = openstack-discuss@lists.openstack.org -home-page = https://docs.openstack.org/openstack-ansible-galera_client/latest/ -classifier = - Intended Audience :: Developers - Intended Audience :: System Administrators - License :: OSI Approved :: Apache Software License - Operating System :: POSIX :: Linux diff --git a/setup.py b/setup.py deleted file mode 100644 index cd35c3c..0000000 --- a/setup.py +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright (c) 2013 Hewlett-Packard Development Company, L.P. -# -# 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. - -import setuptools - -setuptools.setup( - setup_requires=['pbr>=2.0.0'], - pbr=True) diff --git a/tasks/galera_client_install.yml b/tasks/galera_client_install.yml deleted file mode 100644 index a91738c..0000000 --- a/tasks/galera_client_install.yml +++ /dev/null @@ -1,44 +0,0 @@ ---- -# Copyright 2014, Rackspace US, Inc. -# -# 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. - -- include_tasks: "galera_client_install_{{ ansible_pkg_mgr }}.yml" - when: - - galera_client_package_install | bool - tags: - - install-apt - - install-yum - - install-zypper - -- name: Install galera distro packages - package: - name: "{{ galera_client_distro_packages }}" - state: "{{ galera_client_package_state }}" - update_cache: "{{ (ansible_pkg_mgr in ['apt', 'zypper']) | ternary('yes', omit) }}" - cache_valid_time: "{{ (ansible_pkg_mgr == 'apt') | ternary(cache_timeout, omit) }}" - newuse: "{{ (ansible_pkg_mgr == 'portage') | ternary('yes', omit) }}" - changed_use: "{{ (ansible_pkg_mgr == 'portage') | ternary('yes', omit) }}" - noreplace: "{{ (ansible_pkg_mgr == 'portage') | ternary('yes', omit) }}" - jobs: "{{ (ansible_pkg_mgr == 'portage') | ternary('4', omit) }}" - register: install_packages - until: install_packages is success - retries: 5 - delay: 2 - when: - - galera_client_package_install | bool - tags: - - galera-client-apt-packages - - galera-client-portage-packages - - galera-client-yum-packages - - galera-client-zypper-packages diff --git a/tasks/galera_client_install_apt.yml b/tasks/galera_client_install_apt.yml deleted file mode 100644 index 6c01ec6..0000000 --- a/tasks/galera_client_install_apt.yml +++ /dev/null @@ -1,76 +0,0 @@ ---- -# Copyright 2016, Rackspace US, Inc. -# -# 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. - -- name: Ensure host can talk to HTTPS apt repos - apt: - pkg: "apt-transport-https" - state: "{{ galera_client_package_state }}" - update_cache: yes - cache_valid_time: "{{ cache_timeout }}" - register: apt_transport_https_check - until: apt_transport_https_check is success - retries: 5 - delay: 2 - tags: - - galera-client-apt-packages - -- name: If a keyfile is provided, copy the gpg keyfile to the key location - copy: - src: "gpg/{{ item.id }}" - dest: "{{ item.file }}" - mode: '0644' - with_items: "{{ galera_client_gpg_keys | selectattr('file','defined') | list }}" - tags: - - galera-client-apt-keys - -- name: Install gpg keys - apt_key: "{{ key }}" - with_items: "{{ galera_client_gpg_keys }}" - loop_control: - loop_var: key - register: _add_apt_keys - until: _add_apt_keys is success - retries: 5 - delay: 2 - tags: - - galera-client-apt-keys - -# When updating the cache in the apt_repository -# task, and the update fails, a retry does not -# detect a change the second attempt and therefore -# does not update the cache, resulting in a changed -# repo config, but no updated cache. To work around -# this bug we implement the change of repo config -# and the cache update as two separate tasks. -- name: Add galera repo - apt_repository: - repo: "{{ galera_client_repo }}" - filename: "{{ mariadb_repo_filename }}" - state: present - update_cache: no - register: add_repo - tags: - - galera-client-repos - -- name: Update Apt cache - apt: - update_cache: yes - when: add_repo is changed - register: update_apt_cache - until: update_apt_cache is success - retries: 5 - delay: 2 - tags: - - galera-client-repos diff --git a/tasks/galera_client_install_dnf.yml b/tasks/galera_client_install_dnf.yml deleted file mode 120000 index 0956501..0000000 --- a/tasks/galera_client_install_dnf.yml +++ /dev/null @@ -1 +0,0 @@ -galera_client_install_yum.yml \ No newline at end of file diff --git a/tasks/galera_client_install_portage.yml b/tasks/galera_client_install_portage.yml deleted file mode 100644 index ed97d53..0000000 --- a/tasks/galera_client_install_portage.yml +++ /dev/null @@ -1 +0,0 @@ ---- diff --git a/tasks/galera_client_install_yum.yml b/tasks/galera_client_install_yum.yml deleted file mode 100644 index fe62919..0000000 --- a/tasks/galera_client_install_yum.yml +++ /dev/null @@ -1,76 +0,0 @@ ---- -# Copyright 2016, Rackspace US, Inc. -# -# 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. - -# Unfortunately yum is case-insensitive, and RDO has mariadb-* packages, -# while the MariaDB repo has MariaDB-* packages and they conflict. -# To work around this we have to query for any installed RDO/CentOS -# packages using rpm, then remove them. We have to remove them without -# dependencies, otherwise for distro package installation types on shared -# hosts it removes far too many packages. -- name: Remove conflicting packages - shell: | - exit_code=0 - for pkg in {{ galera_client_distro_remove_packages | join(' ') }}; do - if rpm --query --quiet ${pkg}; then - rpm -ev --nodeps ${pkg} - exit_code=2 - fi - done - exit ${exit_code} - register: _remove_existing_mariadb_packages - changed_when: _remove_existing_mariadb_packages.rc == 2 - failed_when: _remove_existing_mariadb_packages.rc not in [0, 2] - args: - warn: no - executable: /bin/bash - -- name: If a keyfile is provided, copy the gpg keyfile to the key location - copy: - src: "gpg/{{ item.key | basename }}" - dest: "{{ item.key }}" - mode: '0644' - with_items: "{{ galera_client_gpg_keys }}" - tags: - - galera-gpg-keys - -- name: Install gpg keys - rpm_key: "{{ key }}" - with_items: "{{ galera_client_gpg_keys }}" - loop_control: - loop_var: key - register: _add_yum_keys - until: _add_yum_keys is success - retries: 5 - delay: 2 - tags: - - galera-gpg-keys - -- name: Add galera repo - yum_repository: - name: "{{ item.name }}" - description: "{{ item.description }}" - baseurl: "{{ item.baseurl }}" - priority: 25 - gpgkey: "{{ item.gpgkey | default(omit) }}" - gpgcheck: yes - enabled: yes - register: add_repos - until: add_repos is success - retries: 5 - delay: 2 - with_items: - - "{{ galera_client_repo }}" - tags: - - galera-repos diff --git a/tasks/galera_client_install_zypper.yml b/tasks/galera_client_install_zypper.yml deleted file mode 100644 index a636e12..0000000 --- a/tasks/galera_client_install_zypper.yml +++ /dev/null @@ -1,52 +0,0 @@ ---- -# Copyright 2017, SUSE LINUX GmbH. -# -# 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. - -- name: If a keyfile is provided, copy the gpg keyfile to the key location - copy: - src: "gpg/{{ item.key | basename }}" - dest: "{{ item.key }}" - mode: '0644' - with_items: "{{ galera_client_gpg_keys }}" - tags: - - galera-gpg-keys - -- name: Install gpg keys - rpm_key: "{{ key }}" - with_items: "{{ galera_client_gpg_keys }}" - loop_control: - loop_var: key - register: _add_zypper_keys - until: _add_zypper_keys is success - retries: 5 - delay: 2 - tags: - - galera-gpg-keys - -- name: Add galera repo - zypper_repository: - name: "{{ item.name }}" - description: "{{ item.description }}" - repo: "{{ item.baseurl }}" - autorefresh: yes - auto_import_keys: no - enabled: yes - register: add_repos - until: add_repos is success - retries: 5 - delay: 2 - with_items: - - "{{ galera_client_repo }}" - tags: - - galera-repos diff --git a/tasks/galera_client_post_install.yml b/tasks/galera_client_post_install.yml deleted file mode 100644 index 639f72c..0000000 --- a/tasks/galera_client_post_install.yml +++ /dev/null @@ -1,27 +0,0 @@ ---- -# Copyright 2014, Rackspace US, Inc. -# -# 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. - -- name: Drop local .my.cnf file - config_template: - src: "client.my.cnf.j2" - dest: "/root/.my.cnf" - owner: "root" - group: "root" - mode: "0600" - config_overrides: "{{ galera_client_my_cnf_overrides }}" - config_type: "ini" - when: galera_client_drop_config_file - tags: - - galera-client-user-config diff --git a/tasks/galera_client_ssl.yml b/tasks/galera_client_ssl.yml deleted file mode 100644 index 8232569..0000000 --- a/tasks/galera_client_ssl.yml +++ /dev/null @@ -1,53 +0,0 @@ ---- -# Copyright 2017, Rackspace US, Inc. -# -# 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. - -- name: Get Galera ssl CA cert contents - slurp: - src: "{{ galera_ssl_ca_cert }}" - register: galera_ca - failed_when: false - delegate_to: "{{ galera_ssl_server }}" - when: - - galera_user_ssl_ca_cert is not defined - -- name: Check for Galera ssl CA cert get failure - debug: - msg: > - The cert retrieval task failed or no CA cert was found. Check the file - "{{ galera_ssl_ca_cert }}" on server "{{ galera_ssl_server }}" before - trying again. - when: - - galera_ca.content is not defined - -- name: Distribute Galera ssl CA cert (SERVER) - copy: - content: "{{ galera_ca.content | b64decode }}" - dest: "{{ galera_ssl_ca_cert }}" - owner: "root" - group: "root" - mode: "0644" - when: - - galera_user_ssl_ca_cert is not defined - - galera_ca.content is defined - -- name: Distribute Galera ssl CA cert (USER) - copy: - src: "{{ galera_user_ssl_ca_cert }}" - dest: "{{ galera_ssl_ca_cert }}" - owner: "root" - group: "root" - mode: "0644" - when: - - galera_user_ssl_ca_cert is defined diff --git a/tasks/main.yml b/tasks/main.yml deleted file mode 100644 index 276aa54..0000000 --- a/tasks/main.yml +++ /dev/null @@ -1,35 +0,0 @@ ---- -# Copyright 2014, Rackspace US, Inc. -# -# 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. - -- name: Gather variables for each operating system - include_vars: "{{ item }}" - with_first_found: - - "{{ ansible_distribution | lower }}-{{ ansible_distribution_version | lower }}.yml" - - "{{ ansible_distribution | lower }}-{{ ansible_distribution_major_version | lower }}.yml" - - "{{ ansible_os_family | lower }}-{{ ansible_distribution_major_version | lower }}.yml" - - "{{ ansible_distribution | lower }}.yml" - - "{{ ansible_os_family | lower }}.yml" - tags: - - always - -- include_tasks: galera_client_install.yml - tags: - - galera-client-install - -- include_tasks: galera_client_post_install.yml - -- include_tasks: galera_client_ssl.yml - when: - - galera_use_ssl | bool diff --git a/templates/client.my.cnf.j2 b/templates/client.my.cnf.j2 deleted file mode 100644 index ccd7b3b..0000000 --- a/templates/client.my.cnf.j2 +++ /dev/null @@ -1,10 +0,0 @@ -# {{ ansible_managed }} - -[client] -host={% if inventory_hostname in galera_cluster_members %} -localhost -{% else %} -{{ galera_address }} -{% endif %} -user={{ galera_root_user }} -password={{ galera_root_password }} diff --git a/templates/releasenotes/notes/use-unix-socket-578a4a32490c5e22.yaml b/templates/releasenotes/notes/use-unix-socket-578a4a32490c5e22.yaml deleted file mode 100644 index 4346ea8..0000000 --- a/templates/releasenotes/notes/use-unix-socket-578a4a32490c5e22.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- -upgrade: - - The role now uses the UNIX sockets to communicate to the server instead - of TCP. diff --git a/tests/ansible-role-requirements.yml b/tests/ansible-role-requirements.yml deleted file mode 100644 index 3c6dd35..0000000 --- a/tests/ansible-role-requirements.yml +++ /dev/null @@ -1,9 +0,0 @@ ---- -- name: apt_package_pinning - src: https://opendev.org/openstack/openstack-ansible-apt_package_pinning - scm: git - version: master -- name: pip_install - src: https://opendev.org/openstack/openstack-ansible-pip_install - scm: git - version: master diff --git a/tests/inventory b/tests/inventory deleted file mode 100644 index 2947119..0000000 --- a/tests/inventory +++ /dev/null @@ -1,4 +0,0 @@ -[all] -localhost - -[galera_all] diff --git a/tests/test.yml b/tests/test.yml deleted file mode 100644 index 1878aea..0000000 --- a/tests/test.yml +++ /dev/null @@ -1,70 +0,0 @@ ---- -# Copyright 2015, Rackspace US, Inc. -# -# 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. - -- name: Playbook for role testing - hosts: localhost - connection: local - user: root - become: true - pre_tasks: - - include_tasks: "common/common-tasks/test-set-nodepool-vars.yml" - roles: - - role: "galera_client" - galera_address: "10.0.0.1" - galera_root_password: secrete - galera_root_user: root - galera_client_drop_config_file: false - post_tasks: - - name: Check that the mysql command is present - find: - paths: "{{ ansible_env.PATH | regex_replace(':',',') }}" - patterns: "mysql" - register: mysql - - name: Check .my.cnf existence - stat: - path: /root/.my.cnf - register: mycnf - - name: mysql command should exist and client config file .my.cnf should not - assert: - that: - - "mysql.matched > 0" - - "not mycnf.stat.exists" - -- name: Playbook for role testing - hosts: localhost - connection: local - user: root - become: true - roles: - - role: "galera_client" - galera_address: "10.0.0.1" - galera_root_password: secrete - galera_root_user: root - galera_client_drop_config_file: true - post_tasks: - - name: Check that the mysql command is present - find: - paths: "{{ ansible_env.PATH | regex_replace(':',',') }}" - patterns: "mysql" - register: mysql - - name: Check .my.cnf existence - stat: - path: /root/.my.cnf - register: mycnf - - name: mysql command and client config file .my.cnf should exist - assert: - that: - - "mysql.matched > 0" - - "mycnf.stat.exists" diff --git a/tox.ini b/tox.ini deleted file mode 100644 index 291deea..0000000 --- a/tox.ini +++ /dev/null @@ -1,96 +0,0 @@ -[tox] -minversion = 3.1 -skipsdist = True -envlist = docs,linters,functional -ignore_basepython_conflict = True - -[testenv] -basepython = python3 -usedevelop = True -install_command = - pip install -c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} {opts} {packages} -commands = - /usr/bin/find . -type f -name "*.pyc" -delete -passenv = - COMMON_TESTS_PATH - HOME - http_proxy - HTTP_PROXY - https_proxy - HTTPS_PROXY - no_proxy - NO_PROXY - TESTING_BRANCH - TESTING_HOME - USER -whitelist_externals = - bash -setenv = - PYTHONUNBUFFERED=1 - ROLE_NAME=galera_client - TEST_IDEMPOTENCE=false - VIRTUAL_ENV={envdir} - WORKING_DIR={toxinidir} - -[testenv:docs] -deps = -r{toxinidir}/doc/requirements.txt -commands = - bash -c "rm -rf doc/build" - doc8 doc - sphinx-build -W --keep-going -b html doc/source doc/build/html - -[testenv:pdf-docs] -deps = {[testenv:docs]deps} -whitelist_externals = - make -commands = - sphinx-build -W --keep-going -b latex doc/source doc/build/pdf - make -C doc/build/pdf - -[doc8] -# Settings for doc8: -extensions = .rst - -[testenv:releasenotes] -deps = -r{toxinidir}/doc/requirements.txt -commands = - sphinx-build -a -E -W -d releasenotes/build/doctrees --keep-going -b html releasenotes/source releasenotes/build/html - -# environment used by the -infra templated docs job -[testenv:venv] -commands = - {posargs} - -[testenv:pep8] -commands = - bash -c "{toxinidir}/tests/common/test-pep8.sh" - -[flake8] -# Ignores the following rules due to how ansible modules work in general -# F403 'from ansible.module_utils.basic import *' used; -# unable to detect undefined names -ignore=F403 - -[testenv:bashate] -commands = - bash -c "{toxinidir}/tests/common/test-bashate.sh" - -[testenv:ansible-syntax] -commands = - bash -c "{toxinidir}/tests/common/test-ansible-syntax.sh" - -[testenv:ansible-lint] -commands = - bash -c "{toxinidir}/tests/common/test-ansible-lint.sh" - -[testenv:functional] -commands = - bash -c "{toxinidir}/tests/common/test-ansible-functional.sh" - -[testenv:linters] -commands = - bash -c "{toxinidir}/tests/common/test-ansible-env-prep.sh" - {[testenv:pep8]commands} - {[testenv:bashate]commands} - {[testenv:ansible-lint]commands} - {[testenv:ansible-syntax]commands} diff --git a/vars/debian.yml b/vars/debian.yml deleted file mode 100644 index c3d66ae..0000000 --- a/vars/debian.yml +++ /dev/null @@ -1,27 +0,0 @@ ---- -# Copyright 2016, Rackspace US, Inc. -# -# 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. - -# Repositories -_galera_client_repo_url: "http://{{ galera_repo_host }}/MariaDB/mariadb-{{ galera_client_major_version }}.{{ galera_client_minor_version }}/repo/{{ ansible_distribution | lower }}" -_galera_client_repo: "deb {{ galera_client_repo_url }} {{ ansible_distribution_release }} main" - -galera_client_distro_packages: - - "mariadb-client-{{ galera_client_major_version }}" - -# Galera GPG Keys -_galera_client_gpg_keys: - # MariaDB Signing Key - - id: C74CD1D8 - file: /etc/ssl/mariadb-key diff --git a/vars/gentoo.yml b/vars/gentoo.yml deleted file mode 100644 index c4e77c9..0000000 --- a/vars/gentoo.yml +++ /dev/null @@ -1,17 +0,0 @@ ---- -# Copyright 2019, Matthew Thode -# -# 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. - -galera_client_distro_packages: - - dev-db/mariadb diff --git a/vars/redhat.yml b/vars/redhat.yml deleted file mode 100644 index df94881..0000000 --- a/vars/redhat.yml +++ /dev/null @@ -1,36 +0,0 @@ ---- -# Copyright 2016, Rackspace US, Inc. -# -# 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. - -_galera_client_repo_url: "http://{{ galera_repo_host }}/MariaDB/mariadb-{{ galera_client_major_version }}.{{ galera_client_minor_version }}/yum/{{ ansible_distribution | lower }}{{ ansible_distribution_major_version }}-amd64/" -_galera_client_repo: - state: "present" - name: MariaDB - description: "MariaDB Repo" - file: "{{ mariadb_repo_filename }}" - baseurl: "{{ galera_client_repo_url }}" - -# Packages conflicting with MariaDB -# These are evaluated using case-sensitivity! -galera_client_distro_remove_packages: - - mariadb-common - - mariadb-config - -galera_client_distro_packages: - - MariaDB-client - -# Galera GPG Keys -_galera_client_gpg_keys: - # MariaDB Package Signing Key - - key: /etc/pki/rpm-gpg/RPM-GPG-KEY-MariaDB diff --git a/vars/suse.yml b/vars/suse.yml deleted file mode 100644 index a9f3c57..0000000 --- a/vars/suse.yml +++ /dev/null @@ -1,28 +0,0 @@ ---- -# Copyright 2017, SUSE LINUX GmbH. -# -# 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. - -_galera_opensuse_dir: "{{ ansible_distribution_major_version }}" -_galera_client_repo_url: "http://{{ galera_repo_host }}/MariaDB/mariadb-{{ galera_client_major_version }}.{{ galera_client_minor_version }}/yum/opensuse{{ _galera_opensuse_dir }}-amd64" -_galera_client_repo: - name: MariaDB - description: "MariaDB Repo" - baseurl: "{{ galera_client_repo_url }}" - -galera_client_distro_packages: - - MariaDB-client - -# Galera GPG Keys -_galera_client_gpg_keys: - - key: /etc/pki/RPM-GPG-KEY-MariaDB diff --git a/zuul.d/jobs.yaml b/zuul.d/jobs.yaml deleted file mode 100644 index 3974405..0000000 --- a/zuul.d/jobs.yaml +++ /dev/null @@ -1,30 +0,0 @@ ---- -# Copyright 2017, Rackspace US, Inc. -# -# 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. - -- job: - name: openstack-ansible-galera_server - parent: openstack-ansible-cross-repo-functional - required-projects: - - name: openstack/openstack-ansible-galera_server - vars: - osa_test_repo: "openstack/openstack-ansible-galera_server" - -- job: - name: openstack-ansible-ssl-galera_server-opensuse-15 - parent: openstack-ansible-galera_server - nodeset: opensuse-15 - voting: false - vars: - tox_env: ssl diff --git a/zuul.d/project.yaml b/zuul.d/project.yaml deleted file mode 100644 index c1d12bf..0000000 --- a/zuul.d/project.yaml +++ /dev/null @@ -1,26 +0,0 @@ ---- -# Copyright 2017, Rackspace US, Inc. -# -# 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. - -- project: - templates: - - check-requirements - - openstack-ansible-deploy-aio_metal-jobs - - openstack-ansible-deploy-aio_distro_metal-jobs - - openstack-ansible-linters - - publish-openstack-docs-pti - - release-notes-jobs-python3 - check: - jobs: - - openstack-ansible-ssl-galera_server-opensuse-15