File tree 10 files changed +55
-49
lines changed
openshift/roles/prerequisites
playbooks/cluster/openshift
10 files changed +55
-49
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash -ex
2
2
3
- export OPENSHIFT_IMAGE_TAG= " v3.7.0 "
3
+ export OPENSHIFT_VER= " 3.7 "
4
4
export ANSIBLE_MODULES_VERSION=" openshift-ansible-3.7.29-1"
5
5
export OPENSHIFT_PLAYBOOK_PATH=" playbooks/byo/config.yml"
6
6
" ${0%/* } /check-patch.sh"
Original file line number Diff line number Diff line change 1
1
#! /bin/bash -ex
2
2
3
- export OPENSHIFT_IMAGE_TAG= " v3.9.0 "
3
+ export OPENSHIFT_VER= " 3.9 "
4
4
export ANSIBLE_MODULES_VERSION=" openshift-ansible-3.9.0-0.40.0"
5
5
export OPENSHIFT_PLAYBOOK_PATH=" playbooks/deploy_cluster.yml"
6
6
" ${0%/* } /check-patch.sh"
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ main() {
103
103
104
104
local cluster_type=" ${CLUSTER_TYPE:- openshift} "
105
105
local ansible_modules_version=" ${ANSIBLE_MODULES_VERSION:- openshift-ansible-3.7.29-1} "
106
- local openshift_image_tag =" ${OPENSHIFT_IMAGE_TAG :- v3.7.0 } "
106
+ local openshift_ver =" ${OPENSHIFT_VER :- 3.7 } "
107
107
local openshift_playbook_path=" ${OPENSHIFT_PLAYBOOK_PATH:- playbooks/ byo/ config.yml} "
108
108
local mode=" ${MODE:- release} "
109
109
local provider=" ${PROVIDER:- lago} "
@@ -141,7 +141,7 @@ main() {
141
141
" inventory_file=$inventory_file "
142
142
" cluster_type=$cluster_type "
143
143
" ansible_modules_version=$ansible_modules_version "
144
- " openshift_image_tag= $openshift_image_tag "
144
+ " openshift_ver= $openshift_ver "
145
145
" openshift_playbook_path=$openshift_playbook_path "
146
146
)
147
147
Original file line number Diff line number Diff line change 1
1
- import_playbook : " {{ playbook_dir }}/deploy-with-{{ provider | default('lago') }}.yml"
2
- - import_playbook : " {{ playbook_dir }}/deploy- {{ cluster_type | default('openshift') }}.yml"
2
+ - import_playbook : " {{ playbook_dir }}/playbooks/cluster/ {{ cluster_type | default('openshift') }}/config .yml"
3
3
- import_playbook : " {{ playbook_dir }}/install-kubevirt-release.yml"
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
- hosts : all
3
3
remote_user : root
4
4
pre_tasks :
5
+ - name : include_vars
6
+ include_vars :
7
+ file : " {{ item }}"
8
+ with_items :
9
+ - " {{ playbook_dir }}/../../../vars/global_vars.yml"
10
+ - " {{ playbook_dir }}/vars/{{ openshift_ver }}.yml"
11
+
12
+ - name : set SELinux to permissive mode
13
+ command : setenforce 0
14
+
15
+ - name : set SELinux to permissive mode under configuration file
16
+ selinux :
17
+ policy : targeted
18
+ state : permissive
19
+
20
+ - name : stop and disable firewalld
21
+ register : result
22
+ service :
23
+ state : stopped
24
+ enabled : no
25
+ name : firewalld
26
+ failed_when : " result|failed and not 'Could not find the requested service' in result.msg"
27
+
28
+ - name : install epel repository
29
+ yum :
30
+ name : " {{ epel_release_rpm_url }}"
31
+ state : present
32
+
5
33
- name : Install openshift_facts requirements
6
34
yum :
7
35
name : " {{ item }}"
8
36
with_items :
9
37
- python-yaml
10
38
- python-ipaddress
39
+ - wget
40
+ - git
41
+ - net-tools
42
+ - bind-utils
43
+ - iptables-services
44
+ - bridge-utils
45
+ - bash-completion
46
+ - kexec-tools
47
+ - sos
48
+ - psacct
49
+ - docker
50
+
11
51
- name : Include openshift_facts module
12
52
import_role :
13
53
name : " {{ openshift_ansible_dir }}/roles/openshift_facts"
54
+
14
55
- name : Load openshift facts
15
56
openshift_facts :
16
57
role : common
58
+
17
59
- name : Set facts for docker-storage-setup
18
60
block :
19
- - name : Detecting Operating System from ostree_booted
61
+ - name : Detect Operating System from ostree_booted
20
62
stat :
21
63
path : /run/ostree-booted
22
64
register : ostree_booted
23
65
- name : initialize_facts set fact openshift_is_atomic
24
66
set_fact :
25
67
openshift : " {{ openshift | combine({'common':{'is_atomic': ostree_booted.stat.exists}}, recursive=True) }}"
26
68
when : " 'is_atomic' not in openshift.common"
69
+
27
70
roles :
28
- - " {{ playbook_dir }}/openshift/roles/prerequisites"
29
71
- " openshift-contrib/roles/docker-storage-setup"
72
+
30
73
post_tasks :
31
74
- name : Enable and start docker service
32
75
service :
Original file line number Diff line number Diff line change
1
+ openshift_image_tag : v3.7.0
2
+ openshift_service_catalog_image_version : " {{ openshift_image_tag }}"
Original file line number Diff line number Diff line change
1
+ openshift_image_tag : v3.9.0-alpha.4
2
+ openshift_service_catalog_image_version : " {{ openshift_image_tag }}"
Original file line number Diff line number Diff line change
1
+ epel_release_rpm_url : https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
You can’t perform that action at this time.
0 commit comments