mg
181da3c38a
keepass vars playbook jenkins java jenkins in inventory Co-authored-by: Michael Grote <michael.grote@posteo.de> Reviewed-on: mg/ansible#80 Co-Authored-By: mg <mg@noreply.git.mgrote.net> Co-Committed-By: mg <mg@noreply.git.mgrote.net>
63 lines
2 KiB
YAML
63 lines
2 KiB
YAML
---
|
|
# jenkins_plugin module doesn't support password files.
|
|
- name: Get Jenkins admin password from file.
|
|
slurp:
|
|
src: "{{ jenkins_admin_password_file }}"
|
|
register: adminpasswordfile
|
|
no_log: true
|
|
when: jenkins_admin_password_file | default(false)
|
|
tags: ['skip_ansible_lint']
|
|
|
|
- name: Set Jenkins admin password fact.
|
|
set_fact:
|
|
jenkins_admin_password: "{{ adminpasswordfile['stdout'] | default(jenkins_admin_password) }}"
|
|
no_log: true
|
|
|
|
# Update Jenkins so that plugin updates don't fail.
|
|
- name: Create Jenkins updates directory.
|
|
file:
|
|
path: "{{ jenkins_home }}/updates"
|
|
state: directory
|
|
owner: jenkins
|
|
group: jenkins
|
|
mode: 0755
|
|
|
|
- name: Download current plugin updates from Jenkins update site.
|
|
get_url:
|
|
url: "{{ jenkins_updates_url }}/update-center.json"
|
|
dest: "{{ jenkins_home }}/updates/default.json"
|
|
owner: jenkins
|
|
group: jenkins
|
|
mode: 0440
|
|
changed_when: false
|
|
register: get_result
|
|
until: get_result is success
|
|
retries: 3
|
|
delay: 2
|
|
|
|
- name: Remove first and last line from json file.
|
|
replace: # noqa 208
|
|
path: "{{ jenkins_home }}/updates/default.json"
|
|
regexp: "1d;$d"
|
|
|
|
- name: Install Jenkins plugins using password.
|
|
jenkins_plugin:
|
|
name: "{{ item.name | default(item) }}"
|
|
version: "{{ item.version | default(omit) }}"
|
|
jenkins_home: "{{ jenkins_home }}"
|
|
url_username: "{{ jenkins_admin_username }}"
|
|
url_password: "{{ jenkins_admin_password }}"
|
|
state: "{{ 'present' if item.version is defined else jenkins_plugins_state }}"
|
|
timeout: "{{ jenkins_plugin_timeout }}"
|
|
updates_expiration: "{{ jenkins_plugin_updates_expiration }}"
|
|
updates_url: "{{ jenkins_updates_url }}"
|
|
url: "http://{{ jenkins_hostname }}:{{ jenkins_http_port }}{{ jenkins_url_prefix }}"
|
|
with_dependencies: "{{ jenkins_plugins_install_dependencies }}"
|
|
with_items: "{{ jenkins_plugins }}"
|
|
when: jenkins_admin_password | default(false)
|
|
notify: restart jenkins
|
|
tags: ['skip_ansible_lint']
|
|
register: plugin_result
|
|
until: plugin_result is success
|
|
retries: 3
|
|
delay: 2
|