Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump ansible-core from 2.16.6 to 2.17.0 in /.github/workflows/requirements #103

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/requirements/requirements_ansible.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
---
roles:
- name: nginxinc.nginx
version: 0.24.1
src: https://github.com/nginxinc/ansible-role-nginx.git
type: git
version: main
collections:
- name: ansible.posix
version: 1.5.4
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ansible-core==2.16.6
ansible-core==2.17.0
jinja2==3.1.4
ansible-compat==24.5.1
yamllint==1.35.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/requirements/requirements_galaxy.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ansible-core==2.16.6
ansible-core==2.17.0
1 change: 1 addition & 0 deletions .github/workflows/requirements/requirements_molecule.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ molecule==24.2.1
molecule-plugins[docker]==23.5.3
docker==7.1.0
pip>=23.1.2
requests==2.32.3
2 changes: 1 addition & 1 deletion molecule/plus-count-upgrade/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
state: stopped

- name: (RedHat) Upgrading nginx-agent
ansible.builtin.yum:
ansible.legacy.dnf:
name: nginx-agent
state: latest
update_only: true
Expand Down
4 changes: 2 additions & 2 deletions tasks/clickhouse/install-redhat.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
- name: (Amazon Linux/CentOS/Oracle Linux/RHEL) Install required packages for ClickHouse
ansible.builtin.yum:
ansible.legacy.dnf:
name: "{{ nms_clickhouse_redhat_dependencies }}"

- name: (Amazon Linux/CentOS/Oracle Linux/RHEL) Add ClickHouse Repository
Expand All @@ -13,7 +13,7 @@
tags: [install]

- name: (Amazon Linux/CentOS/Oracle Linux/RHEL) Install ClickHouse
ansible.builtin.yum:
ansible.legacy.dnf:
name:
- "clickhouse-server{{ (nms_clickhouse_version is not defined or nms_clickhouse_version == '') | ternary('', '-' + nms_clickhouse_version) }}"
- "clickhouse-client{{ (nms_clickhouse_version is not defined or nms_clickhouse_version == '') | ternary('', '-' + nms_clickhouse_version) }}"
Expand Down
6 changes: 3 additions & 3 deletions tasks/nms/install-redhat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
- item.yum_repo is defined or (nms_module_vals[item.name]['default_centos_yum_repo'] != "") or (nms_module_vals[item.name]['default_amazon_yum_repo'] != "")

- name: (Amazon Linux/CentOS/Oracle Linux/RHEL) {{ nms_setup | capitalize }} NGINX Instance Manager
ansible.builtin.yum:
ansible.legacy.dnf:
name: "nms-instance-manager{{ (nms_version is not defined or nms_version == '') | ternary('', '-' + nms_version) }}"
update_cache: true
allow_downgrade: "{{ omit if ansible_version.full is version('2.12', '<') else true }}"
Expand All @@ -41,7 +41,7 @@
- Restart NGINX

- name: (Amazon Linux/CentOS/Oracle Linux/RHEL) {{ nms_setup if item.setup is not defined else item.setup | capitalize }} NMS Modules
ansible.builtin.yum:
ansible.legacy.dnf:
name: "{{ nms_module_vals[item.name]['package_name'] }}{{ '' if (item.version is not defined or item.version == '') else '-' + item.version }}"
update_cache: true
allow_downgrade: "{{ omit if ansible_version.full is version('2.12', '<') else true }}"
Expand Down Expand Up @@ -69,7 +69,7 @@
- nms_setup | lower != 'uninstall'

- name: (Amazon Linux/CentOS/Oracle Linux/RHEL) Get list of installed packages
ansible.builtin.yum:
ansible.legacy.dnf:
list: installed
register: firewalld_status

Expand Down
Loading