Skip to content

Commit 72b540d

Browse files
authored
Merge pull request ansibleplaybookbundle#84 from gbenhaim/re_org_part_1
re-org: Move openshift deployment to playbooks dir
2 parents 881ecb7 + f36b1f8 commit 72b540d

File tree

10 files changed

+55
-49
lines changed

10 files changed

+55
-49
lines changed
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash -ex
22

3-
export OPENSHIFT_IMAGE_TAG="v3.7.0"
3+
export OPENSHIFT_VER="3.7"
44
export ANSIBLE_MODULES_VERSION="openshift-ansible-3.7.29-1"
55
export OPENSHIFT_PLAYBOOK_PATH="playbooks/byo/config.yml"
66
"${0%/*}/check-patch.sh"
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash -ex
22

3-
export OPENSHIFT_IMAGE_TAG="v3.9.0"
3+
export OPENSHIFT_VER="3.9"
44
export ANSIBLE_MODULES_VERSION="openshift-ansible-3.9.0-0.40.0"
55
export OPENSHIFT_PLAYBOOK_PATH="playbooks/deploy_cluster.yml"
66
"${0%/*}/check-patch.sh"

automation/check-patch.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ main() {
103103

104104
local cluster_type="${CLUSTER_TYPE:-openshift}"
105105
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}"
107107
local openshift_playbook_path="${OPENSHIFT_PLAYBOOK_PATH:-playbooks/byo/config.yml}"
108108
local mode="${MODE:-release}"
109109
local provider="${PROVIDER:-lago}"
@@ -141,7 +141,7 @@ main() {
141141
"inventory_file=$inventory_file"
142142
"cluster_type=$cluster_type"
143143
"ansible_modules_version=$ansible_modules_version"
144-
"openshift_image_tag=$openshift_image_tag"
144+
"openshift_ver=$openshift_ver"
145145
"openshift_playbook_path=$openshift_playbook_path"
146146
)
147147

control.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
- 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"
33
- import_playbook: "{{ playbook_dir }}/install-kubevirt-release.yml"

openshift/roles/prerequisites/tasks/main.yml

-29
This file was deleted.

openshift/roles/prerequisites/vars/main.yml

-13
This file was deleted.

deploy-openshift.yml playbooks/cluster/openshift/config.yml

+45-2
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,74 @@
22
- hosts: all
33
remote_user: root
44
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+
533
- name: Install openshift_facts requirements
634
yum:
735
name: "{{ item }}"
836
with_items:
937
- python-yaml
1038
- 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+
1151
- name: Include openshift_facts module
1252
import_role:
1353
name: "{{ openshift_ansible_dir }}/roles/openshift_facts"
54+
1455
- name: Load openshift facts
1556
openshift_facts:
1657
role: common
58+
1759
- name: Set facts for docker-storage-setup
1860
block:
19-
- name: Detecting Operating System from ostree_booted
61+
- name: Detect Operating System from ostree_booted
2062
stat:
2163
path: /run/ostree-booted
2264
register: ostree_booted
2365
- name: initialize_facts set fact openshift_is_atomic
2466
set_fact:
2567
openshift: "{{ openshift | combine({'common':{'is_atomic': ostree_booted.stat.exists}}, recursive=True) }}"
2668
when: "'is_atomic' not in openshift.common"
69+
2770
roles:
28-
- "{{ playbook_dir }}/openshift/roles/prerequisites"
2971
- "openshift-contrib/roles/docker-storage-setup"
72+
3073
post_tasks:
3174
- name: Enable and start docker service
3275
service:
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
openshift_image_tag: v3.7.0
2+
openshift_service_catalog_image_version: "{{ openshift_image_tag }}"
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
openshift_image_tag: v3.9.0-alpha.4
2+
openshift_service_catalog_image_version: "{{ openshift_image_tag }}"

vars/global_vars.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
epel_release_rpm_url: https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

0 commit comments

Comments
 (0)