2018-09-21 15:57:20 +08:00
|
|
|
|
- block:
|
|
|
|
|
- name: 在deploy 节点创建相关目录
|
|
|
|
|
file: name={{ item }} state=directory
|
|
|
|
|
with_items:
|
|
|
|
|
- /etc/calico/ssl
|
|
|
|
|
- /opt/kube/kube-system/calico
|
|
|
|
|
|
|
|
|
|
- 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"
|
|
|
|
|
|
|
|
|
|
- name: get calico-etcd-secrets info
|
|
|
|
|
shell: "{{ bin_dir }}/kubectl get secrets -n kube-system"
|
|
|
|
|
register: secrets_info
|
|
|
|
|
|
|
|
|
|
- name: 创建 calico-etcd-secrets
|
|
|
|
|
shell: "cd /etc/calico/ssl && \
|
|
|
|
|
{{ bin_dir }}/kubectl create secret generic -n kube-system calico-etcd-secrets \
|
|
|
|
|
--from-file=etcd-ca={{ ca_dir }}/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.yaml.j2 dest=/opt/kube/kube-system/calico/calico.yaml
|
|
|
|
|
|
|
|
|
|
- name: 配置 calico rbac
|
|
|
|
|
template: src=calico-rbac.yaml.j2 dest=/opt/kube/kube-system/calico/calico-rbac.yaml
|
|
|
|
|
delegate_to: "{{ groups.deploy[0] }}"
|
|
|
|
|
run_once: true
|
2018-10-14 10:17:20 +08:00
|
|
|
|
|
|
|
|
|
- name: 检查是否已下载离线calico镜像
|
|
|
|
|
command: "ls {{ base_dir }}/down"
|
|
|
|
|
register: download_info
|
|
|
|
|
connection: local
|
|
|
|
|
run_once: true
|
2018-09-21 15:57:20 +08:00
|
|
|
|
|
|
|
|
|
- name: node 节点创建calico 相关目录
|
2017-11-22 12:34:51 +08:00
|
|
|
|
file: name={{ item }} state=directory
|
|
|
|
|
with_items:
|
|
|
|
|
- /etc/calico/ssl
|
2018-06-26 21:06:52 +08:00
|
|
|
|
- /etc/cni/net.d
|
|
|
|
|
- /opt/kube/images
|
2017-11-11 19:14:21 +08:00
|
|
|
|
|
2018-06-26 21:06:52 +08:00
|
|
|
|
# 【可选】推送离线docker 镜像,可以忽略执行错误
|
|
|
|
|
- name: 尝试推送离线docker 镜像(若执行失败,可忽略)
|
|
|
|
|
copy: src={{ base_dir }}/down/{{ item }} dest=/opt/kube/images/{{ item }}
|
2018-08-30 20:17:05 +08:00
|
|
|
|
when: 'item in download_info.stdout'
|
2018-06-26 21:06:52 +08:00
|
|
|
|
with_items:
|
|
|
|
|
- "pause_3.1.tar"
|
|
|
|
|
- "{{ calico_offline }}"
|
|
|
|
|
ignore_errors: true
|
|
|
|
|
|
2018-08-30 20:17:05 +08:00
|
|
|
|
- name: 获取calico离线镜像推送情况
|
2018-06-26 21:06:52 +08:00
|
|
|
|
command: "ls /opt/kube/images"
|
|
|
|
|
register: image_info
|
|
|
|
|
|
|
|
|
|
# 如果目录下有离线镜像,就把它导入到node节点上
|
|
|
|
|
- name: 导入 calico的离线镜像(若执行失败,可忽略)
|
2018-08-12 12:20:02 +08:00
|
|
|
|
shell: "{{ bin_dir }}/docker load -i /opt/kube/images/{{ item }}"
|
|
|
|
|
when: 'item in image_info.stdout'
|
|
|
|
|
with_items:
|
|
|
|
|
- "pause_3.1.tar"
|
|
|
|
|
- "{{ calico_offline }}"
|
2018-06-26 21:06:52 +08:00
|
|
|
|
ignore_errors: true
|
2018-03-14 16:53:21 +08:00
|
|
|
|
|
|
|
|
|
# 只需单节点执行一次
|
2018-01-02 22:12:51 +08:00
|
|
|
|
- name: 运行 calico网络
|
2018-06-26 21:06:52 +08:00
|
|
|
|
shell: "{{ bin_dir }}/kubectl apply -f /opt/kube/kube-system/calico/ && sleep 5"
|
2018-09-21 15:57:20 +08:00
|
|
|
|
delegate_to: "{{ groups.deploy[0] }}"
|
2018-03-14 16:53:21 +08:00
|
|
|
|
run_once: true
|
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
|
2017-11-22 12:34:51 +08:00
|
|
|
|
- calicoctl
|
2017-11-11 19:14:21 +08:00
|
|
|
|
|
2018-09-21 15:57:20 +08:00
|
|
|
|
- name: 分发 calico 证书
|
|
|
|
|
synchronize: src=/etc/calico/ssl/{{ item }} dest=/etc/calico/ssl/{{ item }}
|
|
|
|
|
with_items:
|
|
|
|
|
- calico.pem
|
|
|
|
|
- calico-key.pem
|
|
|
|
|
delegate_to: "{{ groups.deploy[0] }}"
|
|
|
|
|
|
2017-11-22 12:34:51 +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: "{{ bin_dir }}/kubectl get pod -n kube-system -o wide|grep 'calico-node'|grep ' {{ inventory_hostname }} '|awk '{print $3}'"
|
|
|
|
|
register: pod_status
|
|
|
|
|
until: pod_status.stdout == "Running"
|
2018-09-21 15:57:20 +08:00
|
|
|
|
delegate_to: "{{ groups.deploy[0] }}"
|
2018-08-30 20:17:05 +08:00
|
|
|
|
retries: 15
|
2018-06-18 00:04:00 +08:00
|
|
|
|
delay: 8
|