diff --git a/run_puppet_on_gerrit.yml b/run_puppet_on_gerrit.yml new file mode 100644 index 0000000..fffced1 --- /dev/null +++ b/run_puppet_on_gerrit.yml @@ -0,0 +1,11 @@ +--- +- hosts: meta-infra_type_gerrit + user: ubuntu + gather_facts: no + sudo: true + tasks: + name: Run Puppet to install Gerrit + tasks: + - puppet: + ignore_errors: yes + - service: name=apache2 state=started diff --git a/run_puppet_on_jenkins.yml b/run_puppet_on_jenkins.yml new file mode 100644 index 0000000..4c05d11 --- /dev/null +++ b/run_puppet_on_jenkins.yml @@ -0,0 +1,8 @@ +--- +- hosts: meta-infra_type_jenkins + user: ubuntu + sudo: true + tasks: + name: Run Puppet to install Jenkins + tasks: + - puppet: diff --git a/run_puppet_on_zuul.yml b/run_puppet_on_zuul.yml new file mode 100644 index 0000000..4517e7e --- /dev/null +++ b/run_puppet_on_zuul.yml @@ -0,0 +1,11 @@ +--- +- hosts: meta-infra_type_zuul + user: ubuntu + gather_facts: no + sudo: true + tasks: + name: Run Puppet to install Zuul + tasks: + - puppet: + ignore_errors: yes + - service: name=apache2 state=started