Manage apt repositores and keys using deb822_repository module

The apt-key module is deprecated so the code is refactored to allow
any of the deb822_repository features to used instead.

Change-Id: I1363c6d46e5fc6aad3887b0d6c0c439034026ee2
This commit is contained in:
Jonathan Rosser 2024-09-04 08:38:24 +01:00
parent c4137b3169
commit e01b9194b4
3 changed files with 74 additions and 51 deletions

View File

@ -0,0 +1,14 @@
---
features:
- |
The apt repository setup for the galera_server role is migrated to use
the deb822_repository ansible module rather than the legacy apt_key and
apt_repository modules. The format of the `galera_repo` role default
variable is changed to match the requirements of the new module, and
is now a list to allow multiple repositories to be configured if required.
upgrade:
- |
The configuration of apt repositories for the galera_server role through
the `galera_repo` variable is changed to match the deb822_repository
ansible module. Any deployments that customise the galera_server repository
configuration should adjust their `galera_repo` override to suit.

View File

@ -13,57 +13,68 @@
# See the License for the specific language governing permissions and
# limitations under the License.
- name: Validate repo config is deb822 format
vars:
_repo_check: "{{ galera_repo | selectattr('repo', 'defined') | map(attribute='repo') }}"
ansible.builtin.assert:
that: _repo_check | length == 0
fail_msg: "The following repository definitions must be updated to deb822 format {{ _repo_check }}"
- name: Remove conflicting distro packages
package:
name: "{{ galera_mariadb_distro_packages_remove | default([]) }}"
state: absent
when: galera_install_method == 'external_repo'
- name: Configure repositories for MariaDB installation
when:
- galera_install_method == 'external_repo'
- galera_repo
block:
- 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_gpg_keys | selectattr('file', 'defined') | list }}"
# NOTE(jrosser) remove this task for the 2025.2 release
- name: Clean up legacy repository config not in deb822 format
vars:
galera_apt_repo_cleanup:
- MariaDB.list
file:
path: "/etc/apt/sources.list.d/{{ item }}"
state: absent
with_items: "{{ galera_apt_repo_cleanup }}"
register: apt_repo_removed
- name: Install gpg keys
apt_key:
data: "{{ key['data'] | default(omit) }}"
file: "{{ key['file'] | default(omit) }}"
id: "{{ key['id'] | default(omit) }}"
state: "{{ key['state'] | default(omit) }}"
url: "{{ key['url'] | default(omit) }}"
validate_certs: "{{ key['validate_certs'] | default(omit) }}"
with_items: "{{ galera_gpg_keys }}"
loop_control:
loop_var: key
register: _add_apt_keys
until: _add_apt_keys is success
retries: 5
delay: 2
- name: Ensure python3-debian package is available
apt:
name: python3-debian
- name: Remove old repos
lineinfile:
dest: "/etc/apt/sources.list.d/{{ item.name }}.list"
regexp: "^((?!{{ item.repo }}).*)$"
state: absent
with_items:
- { name: "MariaDB", repo: "{{ galera_repo.repo }}" }
when: galera_repo.repo is defined
- name: Manage apt repositories
vars:
_a: "{{ item.architectures }}"
_architecture_fixup: "{{ ((_a | d([])) is iterable and (_a | d([])) is not string) | ternary(_a, [_a]) | map('replace', 'x86_64', 'amd64') }}"
ansible.builtin.deb822_repository:
allow_downgrade_to_insecure: "{{ item.allow_downgrade_to_insecure | default(omit) }}"
allow_insecure: "{{ item.allow_insecure | default(omit) }}"
allow_weak: "{{ item.allow_weak | default(omit) }}"
architectures: "{{ (_architecture_fixup | length > 0) | ternary(_architecture_fixup, omit) }}"
by_hash: "{{ item.by_hash | default(omit) }}"
check_date: "{{ item.check_date | default(omit) }}"
check_valid_until: "{{ item.check_valid_until | default(omit) }}"
components: "{{ item.components | default(omit) }}"
date_max_future: "{{ item.date_max_future | default(omit) }}"
enabled: "{{ item.enabled | default(omit) }}"
inrelease_path: "{{ item.inrelease_path | default(omit) }}"
languages: "{{ item.languages | default(omit) }}"
mode: "{{ item.mode | default(omit) }}"
name: "{{ item.name }}"
pdiffs: "{{ item.pdiffs | default(omit) }}"
signed_by: "{{ item.signed_by | default(omit) }}"
state: "{{ item.state | default(omit) }}"
suites: "{{ item.suites | default(omit) }}"
targets: "{{ item.targets | default(omit) }}"
trusted: "{{ item.trusted | default(omit) }}"
types: "{{ item.types | default(omit) }}"
uris: "{{ item.uris | default(omit) }}"
with_items: "{{ galera_repo }}"
register: deb822_repos
- name: Add galera repo
apt_repository:
repo: "{{ galera_repo.repo }}"
filename: "{{ galera_repo.filename | default(omit) }}"
state: "{{ galera_repo.state }}"
update_cache: yes
register: add_galera_repo
when: galera_repo.repo is defined
- name: Update apt repositories when config is changed
apt:
update_cache: yes
when: (apt_repo_removed is changed) or (deb822_repos is changed)
- name: Preseed galera password(s)
debconf:

View File

@ -19,12 +19,6 @@ cache_timeout: 600
# Default private device setting
_galera_disable_privatedevices: yes
# Galera GPG Keys
_galera_gpg_keys:
# MariaDB Signing Key <signing-key@mariadb.org>
- id: C74CD1D8
file: /etc/ssl/mariadb-key
galera_server_required_distro_packages:
- apt-transport-https
- debconf-utils
@ -78,9 +72,13 @@ _galera_repo_url: >-
http://{{ galera_repo_host }}/MariaDB/mariadb-{{ galera_major_version }}.{{ galera_minor_version }}/repo/{{ ansible_facts['distribution'] | lower }}
_galera_repo:
repo: "deb {{ galera_repo_url }} {{ ansible_facts['distribution_release'] }} main"
state: "present"
filename: "MariaDB"
- name: "MariaDB"
suites: "{{ ansible_facts['distribution_release'] | lower }}"
uris: "{{ galera_repo_url }}"
signed_by: "{{ lookup('file', 'gpg/C74CD1D8') }}"
components: main
architectures: "{{ ansible_facts['architecture'] }}"
state: "{{ (galera_install_method == 'external_repo') | ternary('present', 'absent') }}"
galera_wsrep_provider: "/usr/lib/galera/libgalera_smm.so"