File tree 9 files changed +10
-39
lines changed
9 files changed +10
-39
lines changed Original file line number Diff line number Diff line change
1
+ v 0.8.5 (10 Oct 2017)
2
+ - Remove management of the executor setting on masters (GH #182)
3
+ - Remove stale, unused repo key that began failing (GH #184)
4
+
1
5
v 0.8.4 (25 Sep 2017)
2
6
- Bump to linchpin 1.0.4 and Ansible >= 2.3.2 because of syntax errors (GH #176)
3
7
- Capture errors from jenkins-cli.jar more robustly (GH #151)
Original file line number Diff line number Diff line change @@ -9,10 +9,6 @@ _repositories:
9
9
_download_repositories:
10
10
- https://fedorapeople.org/~semyers/jenkins-rpm/jenkins1651.repo
11
11
12
- rpm_key_imports:
13
- - key: http://pkg.jenkins-ci.org/redhat-stable/jenkins.io.key
14
- validate_certs: true
15
-
16
12
jenkins_slave_repositories: "{{ _repositories }}"
17
13
jenkins_slave_download_repositories: "{{ _download_repositories }}"
18
14
Original file line number Diff line number Diff line change 1
1
gcc_compat_package: compat-gcc-44
2
2
3
- # It is important to import the RPM signing key for the Jenkins repository
4
- # if you plan to use that repository
5
- rpm_key_imports:
6
- - key: http://pkg.jenkins-ci.org/redhat-stable/jenkins.io.key
7
- validate_certs: true
8
-
9
3
all_repositories:
10
4
latest:
11
5
name: rhel7-latest
Original file line number Diff line number Diff line change @@ -245,8 +245,6 @@ firewall_tcp_ports:
245
245
- " 22/tcp"
246
246
- " 80/tcp"
247
247
- " {{ https_enabled | ternary('443/tcp', omit) }}"
248
- # The number of build executors available on the Jenkins master
249
- jenkins_executors : 10
250
248
# This setting affects how the update center downloads plugin metadata
251
249
# http://javadoc.jenkins-ci.org/jenkins/model/DownloadSettings.html
252
250
jenkins_usebrowser : false
Original file line number Diff line number Diff line change 15
15
# These scripts are run in the order listed below, so please edit this list
16
16
# using the desired execution order.
17
17
with_items :
18
- - script : " {{ lookup('template', role_path + '/templates/set_executors.groovy') }}"
19
18
- script : " {{ lookup('template', role_path + '/templates/set_usebrowser.groovy') }}"
20
19
- script : " {{ lookup('template', role_path + '/templates/set_slaveport.groovy') }}"
21
20
- script : " {{ lookup('template', role_path + '/templates/user.groovy') }}"
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 3
3
ignore_errors : true
4
4
changed_when : false
5
5
register : service_swarm_status
6
+ tags :
7
+ - skip_ansible_lint # systemctl module does not support "status"
6
8
7
9
# Some shell magic is required here to grab the log output from *only* the last
8
10
# run of the swarm service in systemd. To do this, we find the last PID that
Original file line number Diff line number Diff line change 1
- # systemd: daemon_reload=yes can be used in Ansible 2.4
1
+ # TODO: systemd: daemon_reload=yes can be used in Ansible 2.4
2
2
- name : reload systemd
3
3
command : systemctl daemon-reload
4
4
when : ansible_service_mgr == 'systemd'
5
+ tags :
6
+ - skip_ansible_lint
5
7
6
8
- name : restart nginx service
7
9
service :
Original file line number Diff line number Diff line change 9
9
10
10
setup (
11
11
name = 'cinch' ,
12
- version = '0.8.4 ' ,
12
+ version = '0.8.5 ' ,
13
13
description = 'Cinch continuous integration setup' ,
14
14
long_description = description ,
15
15
url = 'https://github.com/RedHatQE/cinch' ,
You can’t perform that action at this time.
0 commit comments