Merge branch 'master' of github.com:kubernetes-sigs/kubespray into image_builder_1
This commit is contained in:
commit
352fbd71e7
4 changed files with 9 additions and 31 deletions
|
@ -50,7 +50,7 @@ cephfs_provisioner_enabled: false
|
||||||
ingress_nginx_enabled: false
|
ingress_nginx_enabled: false
|
||||||
# ingress_nginx_host_network: false
|
# ingress_nginx_host_network: false
|
||||||
# ingress_nginx_nodeselector:
|
# ingress_nginx_nodeselector:
|
||||||
# node-role.kubernetes.io/master: ""
|
# node-role.kubernetes.io/node: ""
|
||||||
# ingress_nginx_tolerations:
|
# ingress_nginx_tolerations:
|
||||||
# - key: "node-role.kubernetes.io/master"
|
# - key: "node-role.kubernetes.io/master"
|
||||||
# operator: "Equal"
|
# operator: "Equal"
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
---
|
---
|
||||||
bootstrap_os:
|
|
||||||
os_family: "{{bootstrap_os}}"
|
|
||||||
|
|
||||||
pip_python_coreos_modules:
|
pip_python_coreos_modules:
|
||||||
- httplib2
|
- httplib2
|
||||||
- six
|
- six
|
||||||
|
|
|
@ -5,45 +5,26 @@
|
||||||
changed_when: false
|
changed_when: false
|
||||||
environment: {}
|
environment: {}
|
||||||
|
|
||||||
- name: Set bootstrap_os
|
|
||||||
set_fact:
|
|
||||||
os_family: >-
|
|
||||||
{%- if 'Ubuntu' in os_release.stdout -%}
|
|
||||||
ubuntu
|
|
||||||
{%- elif 'Debian' in os_release.stdout -%}
|
|
||||||
debian
|
|
||||||
{%- elif 'CoreOS' in os_release.stdout -%}
|
|
||||||
coreos
|
|
||||||
{%- elif 'Fedora' in os_release.stdout -%}
|
|
||||||
fedora
|
|
||||||
{%- elif 'CentOS' in os_release.stdout -%}
|
|
||||||
centos
|
|
||||||
{%- elif 'OpenSUSE' in os_release.stdout -%}
|
|
||||||
opensuse
|
|
||||||
{%- elif 'Clear Linux OS' in os_release.stdout -%}
|
|
||||||
clearlinux
|
|
||||||
{%- endif -%}
|
|
||||||
|
|
||||||
- include_tasks: bootstrap-ubuntu.yml
|
- include_tasks: bootstrap-ubuntu.yml
|
||||||
when: os_family == "ubuntu"
|
when: '"Ubuntu" in os_release.stdout'
|
||||||
|
|
||||||
- include_tasks: bootstrap-debian.yml
|
- include_tasks: bootstrap-debian.yml
|
||||||
when: os_family == "debian"
|
when: '"Debian" in os_release.stdout'
|
||||||
|
|
||||||
- include_tasks: bootstrap-coreos.yml
|
- include_tasks: bootstrap-coreos.yml
|
||||||
when: os_family == "coreos"
|
when: '"CoreOS" in os_release.stdout'
|
||||||
|
|
||||||
- include_tasks: bootstrap-fedora.yml
|
- include_tasks: bootstrap-fedora.yml
|
||||||
when: os_family == "fedora"
|
when: '"Fedora" in os_release.stdout'
|
||||||
|
|
||||||
- include_tasks: bootstrap-centos.yml
|
- include_tasks: bootstrap-centos.yml
|
||||||
when: os_family == "centos"
|
when: '"CentOS" in os_release.stdout'
|
||||||
|
|
||||||
- include_tasks: bootstrap-opensuse.yml
|
- include_tasks: bootstrap-opensuse.yml
|
||||||
when: os_family == "opensuse"
|
when: '"OpenSUSE" in os_release.stdout'
|
||||||
|
|
||||||
- include_tasks: bootstrap-clearlinux.yml
|
- include_tasks: bootstrap-clearlinux.yml
|
||||||
when: os_family == "clearlinux"
|
when: '"Clear Linux OS" in os_release.stdout'
|
||||||
|
|
||||||
- import_tasks: setup-pipelining.yml
|
- import_tasks: setup-pipelining.yml
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
ingress_nginx_namespace: "ingress-nginx"
|
ingress_nginx_namespace: "ingress-nginx"
|
||||||
ingress_nginx_host_network: false
|
ingress_nginx_host_network: false
|
||||||
ingress_nginx_nodeselector:
|
ingress_nginx_nodeselector:
|
||||||
node-role.kubernetes.io/master: ""
|
node-role.kubernetes.io/node: ""
|
||||||
ingress_nginx_tolerations: []
|
ingress_nginx_tolerations: []
|
||||||
ingress_nginx_insecure_port: 80
|
ingress_nginx_insecure_port: 80
|
||||||
ingress_nginx_secure_port: 443
|
ingress_nginx_secure_port: 443
|
||||||
|
|
Loading…
Reference in a new issue