
This adds arguments to "install-ansible" to allow us to specify the package name and version. This is used to pin bridge.o.o to 2.7.0 (see I9cf4baf1b15893f0c677567f5afede0d0234f0b2). A new job is added to test against the ansible-devel branch. Added as voting for now, until it proves to be a concern. Change-Id: Ic465efb637c0a1eb475f04b0b0e356d8797ecdeb
23 lines
832 B
YAML
23 lines
832 B
YAML
- hosts: bridge.openstack.org
|
|
name: "Bridge: configure the bastion host"
|
|
become: true
|
|
roles:
|
|
- pip3
|
|
# Note for production use we expect to take the defaults; unit
|
|
# test jobs override this to test with latest upstream ansible.
|
|
- role: install-ansible
|
|
install_ansible_name: '{{ bridge_ansible_name | default("ansible") }}'
|
|
install_ansible_version: '{{ bridge_ansible_version | default("2.7.0") }}'
|
|
- root-keys
|
|
- ansible-cron
|
|
- cloud-launcher-cron
|
|
tasks:
|
|
- name: Allow Zuul to trigger Ansible
|
|
authorized_key:
|
|
state: present
|
|
user: root
|
|
key: "{{ item }}"
|
|
loop:
|
|
- "https://zuul.openstack.org/api/project-ssh-key/openstack-infra/system-config.pub"
|
|
- "https://zuul.openstack.org/api/project-ssh-key/openstack-infra/project-config.pub"
|