Add support for ansible 2.0
Change-Id: I62259d7459f0d36937983edee09ffab3d835f317 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
parent
113877e4ce
commit
a3cf56aab9
@ -27,9 +27,9 @@ jenkins_job_builder_config_jenkins_url: http://localhost:8008
|
||||
jenkins_job_builder_config_jenkins_query_plugins_info: False
|
||||
|
||||
jenkins_job_builder_file_jobs_dest: /etc/jenkins_jobs/config
|
||||
jenkins_job_builder_file_jobs_group: "{{ ansible_ssh_user }}"
|
||||
jenkins_job_builder_file_jobs_group: "{{ ansible_user }}"
|
||||
jenkins_job_builder_file_jobs_mode: "0755"
|
||||
jenkins_job_builder_file_jobs_owner: "{{ ansible_ssh_user }}"
|
||||
jenkins_job_builder_file_jobs_owner: "{{ ansible_user }}"
|
||||
jenkins_job_builder_file_jobs_src: ""
|
||||
|
||||
jenkins_job_builder_template_jenkins_jobs_ini_dest: /etc/jenkins_jobs/jenkins_jobs.ini
|
||||
|
@ -21,5 +21,5 @@
|
||||
|
||||
- name: Reload jenkins-jobs
|
||||
shell: "jenkins-jobs --conf {{ jenkins_job_builder_template_jenkins_jobs_ini_dest }} update {{ jenkins_job_builder_file_jobs_dest }} --delete-old"
|
||||
sudo: yes
|
||||
sudo_user: "{{ jenkins_job_builder_user_name }}"
|
||||
become: yes
|
||||
become_user: "{{ jenkins_job_builder_user_name }}"
|
||||
|
@ -21,7 +21,7 @@ galaxy_info:
|
||||
make changes and auditing easier.
|
||||
company: Red Hat, Inc.
|
||||
license: Apache
|
||||
min_ansible_version: 1.9
|
||||
min_ansible_version: 2.0
|
||||
platforms:
|
||||
- name: EL
|
||||
versions:
|
||||
|
@ -1 +1 @@
|
||||
ansible<2.0
|
||||
ansible>=2.0.0
|
||||
|
@ -13,6 +13,7 @@
|
||||
# under the License.
|
||||
---
|
||||
- name: Create required directories.
|
||||
become: yes
|
||||
file:
|
||||
group: "{{ jenkins_job_builder_user_group }}"
|
||||
owner: "{{ jenkins_job_builder_user_name }}"
|
||||
@ -22,6 +23,7 @@
|
||||
- /etc/jenkins_jobs
|
||||
|
||||
- name: Template jenkins_jobs.ini file.
|
||||
become: yes
|
||||
template:
|
||||
dest: "{{ jenkins_job_builder_template_jenkins_jobs_ini_dest }}"
|
||||
group: "{{ jenkins_job_builder_template_jenkins_jobs_ini_group }}"
|
||||
@ -30,6 +32,7 @@
|
||||
src: "{{ jenkins_job_builder_template_jenkins_jobs_ini_src }}"
|
||||
|
||||
- name: Create jobs directory.
|
||||
become: yes
|
||||
file:
|
||||
dest: "{{ jenkins_job_builder_file_jobs_dest }}"
|
||||
group: "{{ jenkins_job_builder_file_jobs_group }}"
|
||||
@ -38,7 +41,7 @@
|
||||
state: directory
|
||||
|
||||
- name: Rsync jenkins jobs configuration.
|
||||
sudo: no
|
||||
become: no
|
||||
synchronize:
|
||||
delete: yes
|
||||
dest: "{{ jenkins_job_builder_file_jobs_dest }}"
|
||||
|
@ -16,7 +16,6 @@
|
||||
include_vars: "{{ ansible_os_family }}.yaml"
|
||||
|
||||
- include: install.yaml
|
||||
sudo: yes
|
||||
become: yes
|
||||
|
||||
- include: config.yaml
|
||||
sudo: yes
|
||||
|
@ -1,2 +1,5 @@
|
||||
[all]
|
||||
localhost
|
||||
# NOTE(pabelanger): We should not be hard-coding jenkins here, since it limits
|
||||
# who can run this test. However, ansible 2.0 has broken ansible_user and it
|
||||
# now requires to be setup, otherwise it will return nil.
|
||||
localhost ansible_user=jenkins
|
||||
|
@ -13,7 +13,7 @@
|
||||
# under the License.
|
||||
---
|
||||
- hosts: localhost
|
||||
sudo: yes
|
||||
become: yes
|
||||
vars:
|
||||
rolename: "{{ lookup('pipe', 'pwd') | dirname | basename }}"
|
||||
pre_tasks:
|
||||
|
Loading…
Reference in New Issue
Block a user