kubeasz/roles/calico/tasks/main.yml

68 lines
2.2 KiB
YAML
Raw Normal View History

- block:
- name: 创建calico 证书请求
template: src=calico-csr.json.j2 dest={{ cluster_dir }}/ssl/calico-csr.json
- name: 创建 calico证书和私钥
shell: "cd {{ cluster_dir }}/ssl && {{ base_dir }}/bin/cfssl gencert \
-ca=ca.pem \
-ca-key=ca-key.pem \
-config=ca-config.json \
-profile=kubernetes calico-csr.json|{{ base_dir }}/bin/cfssljson -bare calico"
- name: get calico-etcd-secrets info
shell: "{{ base_dir }}/bin/kubectl get secrets -n kube-system"
register: secrets_info
- name: 创建 calico-etcd-secrets
shell: "cd {{ cluster_dir }}/ssl && \
{{ base_dir }}/bin/kubectl create secret generic -n kube-system calico-etcd-secrets \
--from-file=etcd-ca=ca.pem \
--from-file=etcd-key=calico-key.pem \
--from-file=etcd-cert=calico.pem"
when: '"calico-etcd-secrets" not in secrets_info.stdout'
- name: 配置 calico DaemonSet yaml文件
template: src=calico-{{ calico_ver_main }}.yaml.j2 dest={{ cluster_dir }}/yml/calico.yaml
- name: 运行 calico网络
shell: "{{ base_dir }}/bin/kubectl apply -f {{ cluster_dir }}/yml/calico.yaml"
run_once: true
connection: local
- name: 在节点创建相关目录
file: name={{ item }} state=directory
with_items:
2021-01-10 21:25:05 +08:00
- /etc/calico/ssl
2017-11-11 19:14:21 +08:00
2020-12-30 11:25:54 +08:00
- name: 分发calico证书相关
2021-01-10 21:25:05 +08:00
copy: src={{ cluster_dir }}/ssl/{{ item }} dest=/etc/calico/ssl/{{ item }}
2020-12-30 11:25:54 +08:00
with_items:
- ca.pem
- calico.pem
- calico-key.pem
2018-01-02 22:12:51 +08:00
- name: 删除默认cni配置
file: path=/etc/cni/net.d/10-default.conf state=absent
- name: 下载calicoctl 客户端
2017-11-11 19:14:21 +08:00
copy: src={{ base_dir }}/bin/{{ item }} dest={{ bin_dir }}/{{ item }} mode=0755
with_items:
2018-01-02 22:12:51 +08:00
#- calico
- calicoctl
2019-06-08 16:07:46 +08:00
ignore_errors: true
2017-11-11 19:14:21 +08:00
- name: 准备 calicoctl配置文件
template: src=calicoctl.cfg.j2 dest=/etc/calico/calicoctl.cfg
2018-06-18 00:04:00 +08:00
- name: 轮询等待calico-node 运行
shell: "{{ base_dir }}/bin/kubectl get pod -n kube-system -o wide|grep 'calico-node'|grep ' {{ inventory_hostname }} '|awk '{print $3}'"
2018-06-18 00:04:00 +08:00
register: pod_status
until: pod_status.stdout == "Running"
retries: 15
2018-11-21 23:04:59 +08:00
delay: 15
ignore_errors: true
connection: local
- import_tasks: calico-rr.yml
when: 'CALICO_RR_ENABLED|bool'