-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump cryptography from 39.0.1 to 41.0.0 * Disable debian9 && centos8 superseeded by rocky8, Centos Stream 8 is another distribution * Bump pre-commit version to current * [molecule] Add debian12 scenario * Add debian-12 vars * [ansible-lint] remove outdated tag * [ansible-lint] Add .ansible-lint-ignore To be fixed at a later point * Add default mariadb version for debian-12 --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
8b7b80b
commit 610551c
Showing
11 changed files
with
112 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# This file contains ignores rule violations for ansible-lint | ||
tasks/configure_root_access.yml ignore-errors | ||
tasks/setup_cluster.yml no-changed-when |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
******* | ||
Docker driver installation guide | ||
******* | ||
|
||
Requirements | ||
============ | ||
|
||
* Docker Engine | ||
|
||
Install | ||
======= | ||
|
||
Please refer to the `Virtual environment`_ documentation for installation best | ||
practices. If not using a virtual environment, please consider passing the | ||
widely recommended `'--user' flag`_ when invoking ``pip``. | ||
|
||
.. _Virtual environment: https://virtualenv.pypa.io/en/latest/ | ||
.. _'--user' flag: https://packaging.python.org/tutorials/installing-packages/#installing-to-the-user-site | ||
|
||
.. code-block:: bash | ||
$ pip install 'molecule[docker]' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
dependency: | ||
name: galaxy | ||
enabled: false | ||
options: | ||
role-file: requirements.yml | ||
driver: | ||
name: docker | ||
lint: | | ||
yamllint . | ||
ansible-lint | ||
flake8 | ||
platforms: | ||
- name: node1 | ||
image: mrlesmithjr/debian:12 | ||
privileged: true | ||
command: /lib/systemd/systemd | ||
volumes: | ||
- /sys/fs/cgroup:/sys/fs/cgroup:rw | ||
cgroupns_mode: host | ||
groups: | ||
- galera-cluster-nodes | ||
- name: node2 | ||
image: mrlesmithjr/debian:12 | ||
privileged: true | ||
command: /lib/systemd/systemd | ||
volumes: | ||
- /sys/fs/cgroup:/sys/fs/cgroup:rw | ||
cgroupns_mode: host | ||
groups: | ||
- galera-cluster-nodes | ||
provisioner: | ||
name: ansible | ||
playbooks: | ||
converge: ../shared/converge.yml | ||
prepare: ../shared/prepare.yml | ||
side_effect: ../shared/side_effect.yml | ||
verifier: | ||
name: ansible |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
# This is an example playbook to execute Ansible tests. | ||
|
||
- name: Verify | ||
hosts: all | ||
tasks: | ||
- name: Example assertion | ||
assert: | ||
that: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
mariadb_version: "10.11" | ||
mariadb_login_unix_socket: "/var/run/mysqld/mysqld.sock" | ||
mariadb_pre_req_packages: | ||
- "apt-transport-https" | ||
- "software-properties-common" | ||
- "python3-pymysql" | ||
- "rsync" | ||
- "gnupg" | ||
mariadb_debian_repo_key: "0xF1656F24C74CD1D8" | ||
mariadb_packages: | ||
- "mariadb-server" | ||
mariabackup_packages: | ||
- "mariadb-backup" | ||
mariadb_certificates_dir: "/etc/mysql/certificates" | ||
mariadb_systemd_service_name: "mariadb" | ||
mariadb_confs: | ||
- "etc/mysql/debian.cnf" | ||
- "etc/mysql/my.cnf" | ||
- "etc/mysql/conf.d/galera.cnf" | ||
mariadb_temp_confs: | ||
- "etc/mysql/conf.d/galera.cnf" | ||
galera_wsrep_provider: "/usr/lib/galera/libgalera_smm.so" |