Configure network-environment with a single template
This commit is contained in:
parent
83c1105192
commit
b66cc67b6f
4 changed files with 26 additions and 28 deletions
|
@ -44,10 +44,6 @@
|
||||||
run_once: true
|
run_once: true
|
||||||
delegate_to: "{{ groups['kube-master'][0] }}"
|
delegate_to: "{{ groups['kube-master'][0] }}"
|
||||||
|
|
||||||
- name: Write network-environment
|
|
||||||
template: src=flannel/network-environment.j2 dest=/etc/network-environment mode=u+x
|
|
||||||
notify: restart flannel
|
|
||||||
|
|
||||||
- name: Launch Flannel
|
- name: Launch Flannel
|
||||||
service: name=flannel state=started enabled=yes
|
service: name=flannel state=started enabled=yes
|
||||||
notify:
|
notify:
|
||||||
|
|
|
@ -4,13 +4,12 @@
|
||||||
when: ( kube_network_plugin is defined and kube_network_plugin == "calico" and kube_network_plugin == "flannel" ) or
|
when: ( kube_network_plugin is defined and kube_network_plugin == "calico" and kube_network_plugin == "flannel" ) or
|
||||||
kube_network_plugin is not defined
|
kube_network_plugin is not defined
|
||||||
|
|
||||||
|
- name: Write network-environment
|
||||||
|
template: src=network-environment.j2 dest=/etc/network-environment mode=u+x
|
||||||
|
|
||||||
- include: flannel.yml
|
- include: flannel.yml
|
||||||
when: kube_network_plugin == "flannel"
|
when: kube_network_plugin == "flannel"
|
||||||
|
|
||||||
- name: Calico | Write network-environment
|
|
||||||
template: src=calico/network-environment.j2 dest=/etc/network-environment mode=u+x
|
|
||||||
when: kube_network_plugin == "calico"
|
|
||||||
|
|
||||||
- include: calico.yml
|
- include: calico.yml
|
||||||
when: kube_network_plugin == "calico"
|
when: kube_network_plugin == "calico"
|
||||||
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
FLANNEL_ETCD_PREFIX="--etcd-prefix=/{{ cluster_name }}/network"
|
|
|
@ -1,4 +1,5 @@
|
||||||
#! /usr/bin/bash
|
#! /usr/bin/bash
|
||||||
|
{% if kube_network_plugin == "calico" %}
|
||||||
# This node's IPv4 address
|
# This node's IPv4 address
|
||||||
CALICO_IPAM=true
|
CALICO_IPAM=true
|
||||||
DEFAULT_IPV4={{ip | default(ansible_default_ipv4.address) }}
|
DEFAULT_IPV4={{ip | default(ansible_default_ipv4.address) }}
|
||||||
|
@ -9,11 +10,14 @@ KUBERNETES_MASTER={{ groups['kube-master'][0] }}
|
||||||
|
|
||||||
# Location of etcd cluster used by Calico. By default, this uses the etcd
|
# Location of etcd cluster used by Calico. By default, this uses the etcd
|
||||||
# instance running on the Kubernetes Master
|
# instance running on the Kubernetes Master
|
||||||
ETCD_AUTHORITY={{ groups['kube-master'][0] }}:4001
|
ETCD_AUTHORITY={{ groups['kube-master'][0] }}:2379
|
||||||
|
|
||||||
# The kubernetes-apiserver location - used by the calico plugin
|
# The kubernetes-apiserver location - used by the calico plugin
|
||||||
KUBE_API_ROOT=http://{{ groups['kube-master'][0] }}:{{kube_master_insecure_port}}/api/v1/
|
KUBE_API_ROOT=http://{{ groups['kube-master'][0] }}:{{kube_apiserver_insecure_port}}/api/v1/
|
||||||
|
|
||||||
# Location of the calicoctl binary - used by the calico plugin
|
# Location of the calicoctl binary - used by the calico plugin
|
||||||
CALICOCTL_PATH="{{ bin_dir }}/calicoctl"
|
CALICOCTL_PATH="{{ bin_dir }}/calicoctl"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% else %}
|
||||||
|
FLANNEL_ETCD_PREFIX="--etcd-prefix=/{{ cluster_name }}/network"
|
||||||
|
{% endif %}
|
Loading…
Reference in a new issue