2017-11-11 19:14:21 +08:00
|
|
|
|
- name: prepare some dirs
|
|
|
|
|
file: name={{ item }} state=directory
|
|
|
|
|
with_items:
|
2020-12-25 11:53:00 +08:00
|
|
|
|
- "{{ cluster_dir }}/ssl"
|
|
|
|
|
- "{{ cluster_dir }}/backup"
|
2021-01-11 11:12:14 +08:00
|
|
|
|
- "{{ cluster_dir }}/yml"
|
2021-01-07 09:30:50 +08:00
|
|
|
|
- "~/.kube"
|
2017-11-11 19:14:21 +08:00
|
|
|
|
|
2019-05-27 20:02:02 +08:00
|
|
|
|
- name: 本地设置 bin 目录权限
|
|
|
|
|
file: path={{ base_dir }}/bin state=directory mode=0755 recurse=yes
|
2018-03-16 18:23:34 +08:00
|
|
|
|
|
2018-03-24 09:25:20 +08:00
|
|
|
|
# 注册变量p,根据p的stat信息判断是否已经生成过ca证书,如果没有,下一步生成证书
|
|
|
|
|
# 如果已经有ca证书,为了保证整个安装的幂等性,跳过证书生成的步骤
|
|
|
|
|
- name: 读取ca证书stat信息
|
2020-12-25 11:53:00 +08:00
|
|
|
|
stat: path="{{ cluster_dir }}/ssl/ca.pem"
|
2018-03-24 09:25:20 +08:00
|
|
|
|
register: p
|
2017-11-11 19:14:21 +08:00
|
|
|
|
|
2019-05-27 20:02:02 +08:00
|
|
|
|
- name: 准备CA配置文件和签名请求
|
2020-12-25 11:53:00 +08:00
|
|
|
|
template: src={{ item }}.j2 dest={{ cluster_dir }}/ssl/{{ item }}
|
2019-05-27 20:02:02 +08:00
|
|
|
|
with_items:
|
|
|
|
|
- "ca-config.json"
|
|
|
|
|
- "ca-csr.json"
|
2018-03-24 09:25:20 +08:00
|
|
|
|
when: p.stat.isreg is not defined
|
2017-11-11 19:14:21 +08:00
|
|
|
|
|
|
|
|
|
- name: 生成 CA 证书和私钥
|
2018-03-24 09:25:20 +08:00
|
|
|
|
when: p.stat.isreg is not defined
|
2020-12-25 11:53:00 +08:00
|
|
|
|
shell: "cd {{ cluster_dir }}/ssl && \
|
2019-05-27 20:02:02 +08:00
|
|
|
|
{{ base_dir }}/bin/cfssl gencert -initca ca-csr.json | {{ base_dir }}/bin/cfssljson -bare ca"
|
2017-11-11 19:14:21 +08:00
|
|
|
|
|
2022-10-09 19:24:44 +08:00
|
|
|
|
#----------- 创建配置文件: kubectl.kubeconfig
|
2020-01-29 10:40:27 +08:00
|
|
|
|
- import_tasks: create-kubectl-kubeconfig.yml
|
2019-05-01 17:20:20 +08:00
|
|
|
|
tags: create_kctl_cfg
|
2018-03-16 18:23:34 +08:00
|
|
|
|
|
2021-01-17 23:59:40 +08:00
|
|
|
|
#----------- 创建个性化客户端配置文件
|
|
|
|
|
- import_tasks: add-custom-kubectl-kubeconfig.yml
|
|
|
|
|
tags: add-kcfg
|
|
|
|
|
when: "ADD_KCFG|bool"
|
|
|
|
|
|
2020-01-29 10:40:27 +08:00
|
|
|
|
#------------创建配置文件: kube-proxy.kubeconfig
|
|
|
|
|
- import_tasks: create-kube-proxy-kubeconfig.yml
|
2018-03-16 18:23:34 +08:00
|
|
|
|
|
2020-01-29 10:40:27 +08:00
|
|
|
|
#------------创建配置文件: kube-controller-manager.kubeconfig
|
|
|
|
|
- import_tasks: create-kube-controller-manager-kubeconfig.yml
|
2018-03-16 18:23:34 +08:00
|
|
|
|
|
2020-01-29 10:40:27 +08:00
|
|
|
|
#------------创建配置文件: kube-scheduler.kubeconfig
|
|
|
|
|
- import_tasks: create-kube-scheduler-kubeconfig.yml
|
2019-05-27 20:02:02 +08:00
|
|
|
|
|
2020-01-29 10:40:27 +08:00
|
|
|
|
# ansible 控制端一些易用性配置
|
2021-01-19 17:41:00 +08:00
|
|
|
|
- name: 本地创建 ezdown/ezctl 工具的软连接
|
|
|
|
|
file: src={{ base_dir }}/{{ item }} dest=/usr/bin/{{ item }} state=link
|
|
|
|
|
with_items:
|
|
|
|
|
- ezdown
|
|
|
|
|
- ezctl
|
2019-05-27 20:02:02 +08:00
|
|
|
|
|
2020-01-29 10:40:27 +08:00
|
|
|
|
- name: ansible 控制端创建 kubectl 软链接
|
|
|
|
|
file: src={{ base_dir }}/bin/kubectl dest=/usr/bin/kubectl state=link
|
|
|
|
|
ignore_errors: true
|