ee7faefe08
Currently our puppet-requiring hosts (all !bridge) do not manage their puppet installs. This is OK for existing servers, but new servers come up without puppet installed. This is playbooks to manage puppet installs on hosts. It is mostly a port of the relevant parts of ./install_puppet.sh for our various control-plane platforms. Basic testing with zuul-integration jobs is added. Using this in the control-plane base.yaml playbooks will be a follow-on. Change-Id: Id5b2f5eb0f1ade198acf53a7c886dd5b3ab79816
17 lines
328 B
YAML
17 lines
328 B
YAML
- name: Install puppet3
|
|
hosts: puppet3
|
|
roles:
|
|
- role: puppet-install
|
|
puppet_install_version: 3
|
|
|
|
- name: Install puppet4
|
|
hosts: puppet4
|
|
roles:
|
|
- role: puppet-install
|
|
puppet_install_version: 4
|
|
|
|
- name: Install puppet5
|
|
hosts: puppet5
|
|
roles:
|
|
- role: puppet-install
|
|
puppet_install_version: 5 |