New calico's configuration
This commit is contained in:
parent
29bf90a858
commit
6103d673b7
4 changed files with 3 additions and 24 deletions
|
@ -42,9 +42,6 @@
|
||||||
src: manifests/kube-proxy.manifest.j2
|
src: manifests/kube-proxy.manifest.j2
|
||||||
dest: "{{ kube_manifest_dir }}/kube-proxy.manifest"
|
dest: "{{ kube_manifest_dir }}/kube-proxy.manifest"
|
||||||
|
|
||||||
- name: Write network-environment
|
|
||||||
template: src=network-environment.j2 dest=/etc/network-environment mode=640
|
|
||||||
|
|
||||||
- name: Enable kubelet
|
- name: Enable kubelet
|
||||||
service:
|
service:
|
||||||
name: kubelet
|
name: kubelet
|
||||||
|
|
|
@ -9,7 +9,6 @@ After=docker.service
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
EnvironmentFile=/etc/kubernetes/kubelet
|
EnvironmentFile=/etc/kubernetes/kubelet
|
||||||
EnvironmentFile=/etc/network-environment
|
|
||||||
ExecStart={{ bin_dir }}/kubelet \
|
ExecStart={{ bin_dir }}/kubelet \
|
||||||
$KUBE_LOGTOSTDERR \
|
$KUBE_LOGTOSTDERR \
|
||||||
$KUBE_LOG_LEVEL \
|
$KUBE_LOG_LEVEL \
|
||||||
|
|
|
@ -5,7 +5,6 @@ Requires=docker.service
|
||||||
After=docker.service etcd2.service
|
After=docker.service etcd2.service
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
EnvironmentFile=/etc/network-environment
|
|
||||||
User=root
|
User=root
|
||||||
PermissionsStartOnly=true
|
PermissionsStartOnly=true
|
||||||
{% if inventory_hostname in groups['kube-node'] and peer_with_router|default(false)%}
|
{% if inventory_hostname in groups['kube-node'] and peer_with_router|default(false)%}
|
||||||
|
|
22
roles/kubernetes/node/templates/network-environment.j2 → roles/network_plugin/templates/calico/calico.conf.j2
Executable file → Normal file
22
roles/kubernetes/node/templates/network-environment.j2 → roles/network_plugin/templates/calico/calico.conf.j2
Executable file → Normal file
|
@ -1,24 +1,10 @@
|
||||||
#! /usr/bin/bash
|
[config]
|
||||||
{% if kube_network_plugin == "calico" %}
|
|
||||||
# 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) }}
|
||||||
|
|
||||||
# The kubernetes master IP
|
|
||||||
{% if loadbalancer_apiserver is defined and apiserver_loadbalancer_domain_name is defined %}
|
|
||||||
KUBERNETES_MASTER=https://{{ apiserver_loadbalancer_domain_name }}:{{ loadbalancer_apiserver.port }}
|
|
||||||
{% else %}
|
|
||||||
KUBERNETES_MASTER={{ hostvars[groups['kube-master'][0]]['ip'] | default(hostvars[groups['kube-master'][0]]['ansible_default_ipv4']['address']) }}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
# 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="127.0.0.1:2379"
|
ETCD_AUTHORITY=127.0.0.1:2379
|
||||||
#{% if inventory_hostname in groups['etcd'] %}
|
|
||||||
#ETCD_AUTHORITY="127.0.0.1:2379"
|
|
||||||
#{% else %}
|
|
||||||
#ETCD_AUTHORITY="127.0.0.1:23799"
|
|
||||||
#{% endif %}
|
|
||||||
|
|
||||||
# The kubernetes-apiserver location - used by the calico plugin
|
# The kubernetes-apiserver location - used by the calico plugin
|
||||||
{% if loadbalancer_apiserver is defined and apiserver_loadbalancer_domain_name is defined %}
|
{% if loadbalancer_apiserver is defined and apiserver_loadbalancer_domain_name is defined %}
|
||||||
|
@ -26,9 +12,7 @@ KUBE_API_ROOT=https://{{ apiserver_loadbalancer_domain_name }}:{{ loadbalancer_a
|
||||||
{% else %}
|
{% else %}
|
||||||
KUBE_API_ROOT=https://{{ hostvars[groups['kube-master'][0]]['ip'] | default(hostvars[groups['kube-master'][0]]['ansible_default_ipv4']['address']) }}:{{kube_apiserver_port}}/api/v1/
|
KUBE_API_ROOT=https://{{ hostvars[groups['kube-master'][0]]['ip'] | default(hostvars[groups['kube-master'][0]]['ansible_default_ipv4']['address']) }}:{{kube_apiserver_port}}/api/v1/
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% else %}
|
# Kubernetes authentication token
|
||||||
FLANNEL_ETCD_PREFIX="--etcd-prefix=/{{ cluster_name }}/network"
|
|
||||||
{% endif %}
|
|
||||||
{% if calico_token is defined | default('') %}
|
{% if calico_token is defined | default('') %}
|
||||||
KUBE_AUTH_TOKEN={{ calico_token.content|b64decode }}
|
KUBE_AUTH_TOKEN={{ calico_token.content|b64decode }}
|
||||||
{% endif %}
|
{% endif %}
|
Loading…
Reference in a new issue