2db422f0b8
We ran into issues getting ansible-lint to run on Noble without updating everything to current ish versions due to Python 3.12 compatibility issues. Updating everything in this way created a bunch of new lint errors we need to fix so we worked around the problem previously by pinning back to Jammy. Now we move the job back to Noble (the default Nodeset) and update the tooling and fix the linter errors. This should allow us to move forward in a productive manner on modern platforms. The linter errors we fix include: * Naming every play * Ensuring every play name starts with a capital letter * Using fully qualified collection names for action modules (archive, git_config, and synchronize) * Quoting octal file modes Change-Id: I96560c5ce2a5af39d39b3fc339862932a856bd13
25 lines
846 B
YAML
25 lines
846 B
YAML
- name: Prepare Release Environment
|
|
hosts: all
|
|
pre_tasks:
|
|
# This is tempoarary until v2 is gone and we can rework things
|
|
- name: Update origin remote to enable notes fetching
|
|
command: "git remote set-url origin https://{{ item.canonical_name }}"
|
|
args:
|
|
chdir: "{{ ansible_user_dir }}/src/{{ item.canonical_name }}"
|
|
with_items: "{{ zuul.projects.values() | list }}"
|
|
# ANSIBLE0006: git remote is not supported by ansible module
|
|
tags:
|
|
- skip_ansible_lint
|
|
roles:
|
|
- role: configure-git
|
|
git_config:
|
|
user.name: OpenStack Release Bot
|
|
user.email: infra-root@openstack.org
|
|
user.signingkey: infra-root@openstack.org
|
|
gitreview.username: release
|
|
- bindep
|
|
- copy-release-tools-scripts
|
|
- add-sshkey
|
|
- add-launchpad-credentials
|
|
- add-gpgkey
|