67607c679e
Added c9s jobs are non voting, as agreed on PTG to focus on Rocky Linux 9.
Since both CS9 and RL9 have higher default fd limit (1073741816 vs
1048576 in CS8) - lowering that for:
* RMQ - because Erlang allocates memory based on this (see [1], [2], [3]).
* MariaDB - because Galera cluster bootstrap failed
Changed openvswitch_db healthcheck, because for unknown reason
the usual check (using lsof on /run/openvswitch/db.sock) is hanging
on "Bad file descriptor" (even with privileged: true).
[1]: https://github.com/docker-library/rabbitmq/issues/545
[2]: https://github.com/rabbitmq/cluster-operator/issues/959#issuecomment-1043280324
[3]: a8b627aaed
Depends-On: https://review.opendev.org/c/openstack/tenks/+/856296
Depends-On: https://review.opendev.org/c/openstack/kolla-ansible/+/856328
Depends-On: https://review.opendev.org/c/openstack/kolla-ansible/+/856443
Needed-By: https://review.opendev.org/c/openstack/kolla/+/836664
Co-Authored-By: Michał Nasiadka <mnasiadka@gmail.com>
Change-Id: I3f7b480519aea38c3927bee7fb2c23eea178554d
24 lines
605 B
YAML
24 lines
605 B
YAML
---
|
|
- name: Ensure yum repos directory exists
|
|
file:
|
|
path: /etc/yum.repos.d/
|
|
state: directory
|
|
recurse: yes
|
|
become: True
|
|
|
|
- name: Install centos-release-ceph
|
|
dnf:
|
|
name: "centos-release-ceph-{{ cephadm_ceph_release }}"
|
|
become: True
|
|
when: cephadm_use_package_from_distribution
|
|
|
|
- name: Enable Ceph base yum repository
|
|
yum_repository:
|
|
name: "{{ item.shortname }}"
|
|
description: "{{ item.name }}"
|
|
baseurl: "{{ item.url }}"
|
|
gpgkey: "{{ cephadm_ceph_rpm_gpg_key }}"
|
|
loop: "{{ cephadm_ceph_rpm_repos }}"
|
|
become: True
|
|
when: not cephadm_use_package_from_distribution
|