WIP: install-openshift: bump version to 3.11.0

This change install the latest 3.x version of openshift.

WIP as the firewall rules need to be more restricted.

Change-Id: I941f8831a9ecdb930b7a0edd85f7f15a3b8d57e6
This commit is contained in:
Tristan Cacqueray 2019-07-25 16:36:09 +00:00
parent 6e865fa04a
commit 619ab8987b
3 changed files with 19 additions and 3 deletions

View File

@ -1,4 +1,21 @@
---
- name: Relax the firewall
shell: |
echo "Current rules"
iptables -L
iptables -t nat -L
echo "Disable rules"
iptables -P INPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
iptables -t nat -F
iptables -t mangle -F
iptables -F
iptables -X
iptables -L
echo "Done"
become: yes
- name: Deploy local openshift cluster
command: "oc cluster up --insecure-skip-tls-verify=true --public-hostname={{ ansible_hostname }}"
become: yes

View File

@ -1,2 +1,2 @@
origin_repo: centos-release-openshift-origin39
origin_version: v3.9.0
origin_repo: centos-release-openshift-origin311
origin_version: v3.11.0

View File

@ -38,7 +38,6 @@
- origin-docker-registry
- origin-haproxy-router
- origin-deployer
- origin-sti-builder
- origin-pod
- origin
become: yes