2018-08-23 14:17:18 +00:00
|
|
|
---
|
|
|
|
- name: Calico | Write Calico cni config
|
|
|
|
template:
|
|
|
|
src: "cni-calico.conflist.j2"
|
|
|
|
dest: "/etc/cni/net.d/10-calico.conflist"
|
|
|
|
owner: kube
|
|
|
|
|
|
|
|
- name: Calico | Create calico certs directory
|
|
|
|
file:
|
|
|
|
dest: "{{ calico_cert_dir }}"
|
|
|
|
state: directory
|
|
|
|
mode: 0750
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
|
|
|
|
- name: Calico | Link etcd certificates for calico-node
|
|
|
|
file:
|
|
|
|
src: "{{ etcd_cert_dir }}/{{ item.s }}"
|
|
|
|
dest: "{{ calico_cert_dir }}/{{ item.d }}"
|
|
|
|
state: hard
|
|
|
|
force: yes
|
|
|
|
with_items:
|
|
|
|
- {s: "ca.pem", d: "ca_cert.crt"}
|
|
|
|
- {s: "node-{{ inventory_hostname }}.pem", d: "cert.crt"}
|
|
|
|
- {s: "node-{{ inventory_hostname }}-key.pem", d: "key.pem"}
|
|
|
|
|
|
|
|
- name: Calico | Install calicoctl container script
|
|
|
|
template:
|
|
|
|
src: calicoctl-container.j2
|
|
|
|
dest: "{{ bin_dir }}/calicoctl"
|
|
|
|
mode: 0755
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
changed_when: false
|
|
|
|
|
|
|
|
- name: Calico | Copy cni plugins from hyperkube
|
|
|
|
command: "{{ docker_bin_dir }}/docker run --rm -v /opt/cni/bin:/cnibindir {{ hyperkube_image_repo }}:{{ hyperkube_image_tag }} /bin/cp -r /opt/cni/bin/. /cnibindir/"
|
|
|
|
register: cni_task_result
|
|
|
|
until: cni_task_result.rc == 0
|
|
|
|
retries: 4
|
|
|
|
delay: "{{ retry_stagger | random + 3 }}"
|
|
|
|
changed_when: false
|
|
|
|
tags:
|
|
|
|
- hyperkube
|
|
|
|
- upgrade
|
|
|
|
|
|
|
|
- name: Calico | Copy cni plugins from calico/cni container
|
|
|
|
command: "{{ docker_bin_dir }}/docker run --rm -v /opt/cni/bin:/cnibindir {{ calico_cni_image_repo }}:{{ calico_cni_image_tag }} sh -c 'cp /opt/cni/bin/* /cnibindir/'"
|
|
|
|
register: cni_task_result
|
|
|
|
until: cni_task_result.rc == 0
|
|
|
|
retries: 4
|
|
|
|
delay: "{{ retry_stagger | random + 3 }}"
|
|
|
|
changed_when: false
|
|
|
|
when:
|
|
|
|
- "overwrite_hyperkube_cni|bool"
|
|
|
|
tags:
|
|
|
|
- hyperkube
|
|
|
|
- upgrade
|
|
|
|
|
|
|
|
- name: Calico | Set cni directory permissions
|
|
|
|
file:
|
|
|
|
path: /opt/cni/bin
|
|
|
|
state: directory
|
|
|
|
owner: kube
|
|
|
|
recurse: true
|
|
|
|
mode: 0755
|
|
|
|
|
|
|
|
- name: Calico | wait for etcd
|
|
|
|
uri:
|
|
|
|
url: "{{ etcd_access_addresses.split(',') | first }}/health"
|
|
|
|
validate_certs: no
|
|
|
|
client_cert: "{{ etcd_cert_dir }}/node-{{ inventory_hostname }}.pem"
|
|
|
|
client_key: "{{ etcd_cert_dir }}/node-{{ inventory_hostname }}-key.pem"
|
|
|
|
register: result
|
|
|
|
until: result.status == 200 or result.status == 401
|
|
|
|
retries: 10
|
|
|
|
delay: 5
|
|
|
|
run_once: true
|
|
|
|
|
|
|
|
- name: Calico | Check if calico network pool has already been configured
|
|
|
|
shell: >
|
|
|
|
{{ bin_dir }}/calicoctl get ippool | grep -w "{{ kube_pods_subnet }}" | wc -l
|
|
|
|
register: calico_conf
|
|
|
|
retries: 4
|
|
|
|
delay: "{{ retry_stagger | random + 3 }}"
|
|
|
|
delegate_to: "{{ groups['kube-master'][0] }}"
|
|
|
|
run_once: true
|
|
|
|
|
|
|
|
- name: Calico | Configure calico network pool
|
|
|
|
shell: >
|
|
|
|
echo "
|
|
|
|
{ "kind": "IPPool",
|
|
|
|
"apiVersion": "projectcalico.org/v3",
|
|
|
|
"metadata": {
|
|
|
|
"name": "{{ calico_pool_name }}",
|
|
|
|
},
|
|
|
|
"spec": {
|
|
|
|
"cidr": "{{ kube_pods_subnet }}",
|
2018-09-04 12:56:53 +00:00
|
|
|
"ipipMode": "{{ ipip_mode }}",
|
2018-08-23 14:17:18 +00:00
|
|
|
"natOutgoing": {{ nat_outgoing|default(false) and not peer_with_router|default(false) }} }} " | {{ bin_dir }}/calicoctl create -f -
|
|
|
|
run_once: true
|
|
|
|
delegate_to: "{{ groups['kube-master'][0] }}"
|
|
|
|
when:
|
2018-09-11 12:14:10 +00:00
|
|
|
- 'calico_conf.stdout == "0"'
|
2018-09-13 15:05:10 +00:00
|
|
|
- calico_version | version_compare("v3.0.0", ">=")
|
2018-09-11 12:14:10 +00:00
|
|
|
|
|
|
|
- name: Calico | Configure calico network pool (legacy)
|
|
|
|
shell: >
|
|
|
|
echo '
|
|
|
|
{ "kind": "ipPool",
|
|
|
|
"spec": {"disabled": false, "ipip": {"enabled": {{ ipip }}, "mode": "{{ ipip_mode|lower }}"},
|
|
|
|
"nat-outgoing": {{ nat_outgoing|default(false) and not peer_with_router|default(false) }}},
|
|
|
|
"apiVersion": "v1",
|
|
|
|
"metadata": {"cidr": "{{ kube_pods_subnet }}"}
|
|
|
|
}' | {{ bin_dir }}/calicoctl apply -f -
|
|
|
|
environment:
|
|
|
|
NO_DEFAULT_POOLS: true
|
|
|
|
run_once: true
|
|
|
|
delegate_to: "{{ groups['kube-master'][0] }}"
|
|
|
|
when:
|
2018-08-23 14:17:18 +00:00
|
|
|
- 'calico_conf.stdout == "0"'
|
2018-09-13 15:05:10 +00:00
|
|
|
- calico_version | version_compare("v3.0.0", "<")
|
2018-08-23 14:17:18 +00:00
|
|
|
|
|
|
|
- name: "Determine nodeToNodeMesh needed state"
|
|
|
|
set_fact:
|
|
|
|
nodeToNodeMeshEnabled: "false"
|
|
|
|
when:
|
|
|
|
- peer_with_router|default(false) or peer_with_calico_rr|default(false)
|
|
|
|
- inventory_hostname in groups['k8s-cluster']
|
|
|
|
run_once: yes
|
|
|
|
|
|
|
|
- name: Calico | Set global as_num
|
|
|
|
shell: >
|
|
|
|
echo '
|
|
|
|
{ "kind": "BGPConfiguration",
|
|
|
|
"apiVersion": "projectcalico.org/v3",
|
|
|
|
"metadata": {
|
|
|
|
"name": "default",
|
|
|
|
},
|
|
|
|
"spec": {
|
|
|
|
"logSeverityScreen": "Info",
|
|
|
|
"nodeToNodeMeshEnabled": {{ nodeToNodeMeshEnabled|default('true') }} ,
|
|
|
|
"asNumber": {{ global_as_num }} }} ' | {{ bin_dir }}/calicoctl --skip-exists create -f -
|
|
|
|
run_once: true
|
|
|
|
delegate_to: "{{ groups['kube-master'][0] }}"
|
2018-09-11 12:14:10 +00:00
|
|
|
when:
|
2018-09-13 15:05:10 +00:00
|
|
|
- calico_version | version_compare('v3.0.0', '>=')
|
|
|
|
|
2018-09-11 12:14:10 +00:00
|
|
|
- name: Calico | Set global as_num (legacy)
|
|
|
|
command: "{{ bin_dir}}/calicoctl config set asNumber {{ global_as_num }}"
|
|
|
|
run_once: true
|
|
|
|
when:
|
2018-09-13 15:05:10 +00:00
|
|
|
- calico_version | version_compare('v3.0.0', '<')
|
2018-09-11 12:14:10 +00:00
|
|
|
|
|
|
|
- name: Calico | Disable node mesh (legacy)
|
|
|
|
command: "{{ bin_dir }}/calicoctl config set nodeToNodeMesh off"
|
|
|
|
run_once: yes
|
|
|
|
when:
|
2018-09-13 15:05:10 +00:00
|
|
|
- calico_version | version_compare('v3.0.0', '<')
|
2018-09-11 12:14:10 +00:00
|
|
|
- nodeToMeshEnabled|default(True)
|
2018-08-23 14:17:18 +00:00
|
|
|
|
|
|
|
- name: Calico | Configure peering with router(s)
|
|
|
|
shell: >
|
|
|
|
echo '{
|
|
|
|
"apiVersion": "projectcalico.org/v3",
|
2018-09-17 20:22:28 +00:00
|
|
|
"kind": "BGPPeer",
|
2018-08-23 14:17:18 +00:00
|
|
|
"metadata": {
|
2018-09-18 15:48:30 +00:00
|
|
|
"name": "{{ inventory_hostname }}-{{ item.router_id }}"
|
2018-08-23 14:17:18 +00:00
|
|
|
},
|
|
|
|
"spec": {
|
|
|
|
"asNumber": "{{ item.as }}",
|
|
|
|
"node": "{{ inventory_hostname }}",
|
|
|
|
"peerIP": "{{ item.router_id }}"
|
|
|
|
}}' | {{ bin_dir }}/calicoctl create --skip-exists -f -
|
|
|
|
retries: 4
|
|
|
|
delay: "{{ retry_stagger | random + 3 }}"
|
|
|
|
with_items:
|
|
|
|
- "{{ peers|default([]) }}"
|
|
|
|
when:
|
2018-09-13 15:05:10 +00:00
|
|
|
- calico_version | version_compare('v3.0.0', '>=')
|
2018-08-23 14:17:18 +00:00
|
|
|
- peer_with_router|default(false)
|
|
|
|
- inventory_hostname in groups['k8s-cluster']
|
|
|
|
|
2018-09-06 12:49:06 +00:00
|
|
|
- name: Calico | Configure peering with router(s) (legacy)
|
|
|
|
shell: >
|
|
|
|
echo '{
|
|
|
|
"kind": "bgpPeer",
|
|
|
|
"spec": {"asNumber": "{{ item.as }}"},
|
|
|
|
"apiVersion": "v1",
|
|
|
|
"metadata": {"node": "{{ inventory_hostname }}", "scope": "node", "peerIP": "{{ item.router_id }}"}
|
|
|
|
}'
|
|
|
|
| {{ bin_dir }}/calicoctl create --skip-exists -f -
|
|
|
|
retries: 4
|
|
|
|
delay: "{{ retry_stagger | random + 3 }}"
|
|
|
|
with_items: "{{ peers|default([]) }}"
|
|
|
|
when:
|
2018-09-13 15:05:10 +00:00
|
|
|
- calico_version | version_compare('v3.0.0', '<')
|
2018-09-12 14:03:55 +00:00
|
|
|
- peer_with_router|default(false)
|
|
|
|
- inventory_hostname in groups['k8s-cluster']
|
2018-09-06 12:49:06 +00:00
|
|
|
|
2018-08-23 14:17:18 +00:00
|
|
|
- name: Calico | Configure peering with route reflectors
|
|
|
|
shell: >
|
|
|
|
echo '{
|
|
|
|
"apiVersion": "projectcalico.org/v3",
|
2018-09-17 20:22:28 +00:00
|
|
|
"kind": "BGPPeer",
|
2018-08-23 14:17:18 +00:00
|
|
|
"metadata": {
|
2018-09-18 15:48:30 +00:00
|
|
|
"name": "{{ inventory_hostname }}-{{ hostvars[item]["calico_rr_ip"]|default(hostvars[item]["ip"])|default(hostvars[item]["ansible_default_ipv4"]["address"]) }}"
|
2018-08-23 14:17:18 +00:00
|
|
|
},
|
|
|
|
"spec": {
|
|
|
|
"asNumber": "{{ local_as | default(global_as_num)}}",
|
|
|
|
"node": "{{ inventory_hostname }}",
|
|
|
|
"peerIP": "{{ hostvars[item]["calico_rr_ip"]|default(hostvars[item]["ip"])|default(hostvars[item]["ansible_default_ipv4"]["address"]) }}"
|
|
|
|
}}' | {{ bin_dir }}/calicoctl create --skip-exists -f -
|
|
|
|
retries: 4
|
|
|
|
delay: "{{ retry_stagger | random + 3 }}"
|
|
|
|
with_items:
|
|
|
|
- "{{ groups['calico-rr'] | default([]) }}"
|
|
|
|
when:
|
2018-09-13 15:05:10 +00:00
|
|
|
- calico_version | version_compare('v3.0.0', '>=')
|
2018-09-06 12:49:06 +00:00
|
|
|
- peer_with_calico_rr|default(false)
|
2018-08-23 14:17:18 +00:00
|
|
|
- inventory_hostname in groups['k8s-cluster']
|
2018-09-06 12:49:06 +00:00
|
|
|
- hostvars[item]['cluster_id'] == cluster_id
|
|
|
|
|
|
|
|
- name: Calico | Configure peering with route reflectors (legacy)
|
|
|
|
shell: >
|
|
|
|
echo '{
|
|
|
|
"kind": "bgpPeer",
|
|
|
|
"spec": {"asNumber": "{{ local_as | default(global_as_num)}}"},
|
|
|
|
"apiVersion": "v1",
|
|
|
|
"metadata": {"node": "{{ inventory_hostname }}",
|
|
|
|
"scope": "node",
|
|
|
|
"peerIP": "{{ hostvars[item]["calico_rr_ip"]|default(hostvars[item]["ip"])|default(hostvars[item]["ansible_default_ipv4"]["address"]) }}"}
|
|
|
|
}'
|
|
|
|
| {{ bin_dir }}/calicoctl create --skip-exists -f -
|
|
|
|
retries: 4
|
|
|
|
delay: "{{ retry_stagger | random + 3 }}"
|
|
|
|
with_items: "{{ groups['calico-rr'] | default([]) }}"
|
|
|
|
when:
|
2018-09-13 15:05:10 +00:00
|
|
|
- calico_version | version_compare('v3.0.0', '<')
|
2018-09-12 14:03:55 +00:00
|
|
|
- not calico_upgrade_enabled
|
|
|
|
- peer_with_calico_rr|default(false)
|
|
|
|
- hostvars[item]['cluster_id'] == cluster_id
|
2018-09-06 12:49:06 +00:00
|
|
|
|
2018-08-23 14:17:18 +00:00
|
|
|
|
|
|
|
- name: Calico | Create calico manifests
|
|
|
|
template:
|
|
|
|
src: "{{item.file}}.j2"
|
|
|
|
dest: "{{kube_config_dir}}/{{item.file}}"
|
|
|
|
with_items:
|
|
|
|
- {name: calico-config, file: calico-config.yml, type: cm}
|
|
|
|
- {name: calico-node, file: calico-node.yml, type: ds}
|
|
|
|
- {name: calico, file: calico-node-sa.yml, type: sa}
|
|
|
|
- {name: calico, file: calico-cr.yml, type: clusterrole}
|
|
|
|
- {name: calico, file: calico-crb.yml, type: clusterrolebinding}
|
|
|
|
register: calico_node_manifests
|
|
|
|
when:
|
|
|
|
- inventory_hostname in groups['kube-master']
|
2018-09-04 12:56:53 +00:00
|
|
|
- rbac_enabled or item.type not in rbac_resources
|