File tree 3 files changed +9
-3
lines changed
3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1
1
repositories: "{{ jenkins_slave_repositories }}"
2
2
3
3
download_repositories: "{{ jenkins_slave_download_repositories }}"
4
+
5
+ # For certain OpenShift instances a value of '1000090000' is recommended.
6
+ jenkins_user_uid: 1000090000
Original file line number Diff line number Diff line change 2
2
# supported beyond the EOL support for their packages in the distribution of
3
3
# choice
4
4
java_version : 8
5
- # Needed for certain OpenShift instances
6
- jenkins_user_uid : 1000090000
5
+ # Optionally set the 'jenkins' Unix account UID here. This should not normally
6
+ # need to be changed, but for certain OpenShift instances a value of
7
+ # '1000090000' is recommended.
8
+ # jenkins_user_uid: 1000090000
9
+
7
10
# Set the default (empty) set of authorized SSH public keys for jenkins user.
8
11
# To add authorized keys, override this value by adding a list of paths
9
12
# (relative or full) to files containing separate public keys.
Original file line number Diff line number Diff line change 31
31
password : " {{ jenkins_user_password }}"
32
32
home : " {{ jenkins_user_home }}"
33
33
shell : /bin/bash
34
- uid : " {{ jenkins_user_uid }}"
34
+ uid : " {{ jenkins_user_uid | default(omit) }}"
35
35
36
36
- name : ensure SSH directory exists
37
37
file :
You can’t perform that action at this time.
0 commit comments