kubeasz/roles/calico/tasks/main.yml

56 lines
1.9 KiB
YAML
Raw Normal View History

- name: 创建calico 相关目录
file: name={{ item }} state=directory
with_items:
- /etc/calico/ssl
2018-05-06 23:10:14 +08:00
- /opt/kube/kube-system/calico
2017-11-11 19:14:21 +08:00
2017-12-04 20:20:17 +08:00
- name: 复制CA 证书到calico 证书目录
2017-12-05 09:59:56 +08:00
copy: src={{ ca_dir }}/ca.pem dest=/etc/calico/ssl/ca.pem
2017-12-04 20:20:17 +08:00
- name: 创建calico 证书请求
template: src=calico-csr.json.j2 dest=/etc/calico/ssl/calico-csr.json
- name: 创建 calico证书和私钥
shell: "cd /etc/calico/ssl && {{ bin_dir }}/cfssl gencert \
-ca={{ ca_dir }}/ca.pem \
-ca-key={{ ca_dir }}/ca-key.pem \
-config={{ ca_dir }}/ca-config.json \
-profile=kubernetes calico-csr.json | {{ bin_dir }}/cfssljson -bare calico"
2017-11-11 19:14:21 +08:00
2018-02-28 17:53:26 +08:00
# 因官方calico.yaml文件中使用特定的证书名所以要重命名
- name: 重命名相关证书
shell: "cd /etc/calico/ssl && cp ca.pem etcd-ca && cp calico.pem etcd-cert && cp calico-key.pem etcd-key"
2018-01-02 22:12:51 +08:00
- name: 准备 calico DaemonSet yaml文件
2018-05-06 23:10:14 +08:00
template: src=calico.yaml.j2 dest=/opt/kube/kube-system/calico/calico.yaml
2017-11-11 19:14:21 +08:00
2018-01-02 22:12:51 +08:00
- name: 准备 calico rbac文件
2018-05-06 23:10:14 +08:00
template: src=calico-rbac.yaml.j2 dest=/opt/kube/kube-system/calico/calico-rbac.yaml
2017-11-11 19:14:21 +08:00
- name: 获取所有已经创建的POD信息
command: "{{ bin_dir }}/kubectl get daemonset -n kube-system"
register: pod_info
run_once: true
# 只需单节点执行一次
2018-01-02 22:12:51 +08:00
- name: 运行 calico网络
2018-05-06 23:10:14 +08:00
shell: "{{ bin_dir }}/kubectl create -f /opt/kube/kube-system/calico/ && sleep 5"
run_once: true
when: '"calico-node" not in pod_info.stdout'
2018-01-02 22:12:51 +08:00
# 删除原有cni配置
- name: 删除默认cni配置
file: path=/etc/cni/net.d/10-default.conf state=absent
2018-01-04 22:00:34 +08:00
# [可选]cni calico plugins 已经在calico.yaml完成自动安装
2018-01-02 22:12:51 +08:00
- 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
#- calico-ipam
#- loopback
- calicoctl
2017-11-11 19:14:21 +08:00
- name: 准备 calicoctl配置文件
template: src=calicoctl.cfg.j2 dest=/etc/calico/calicoctl.cfg