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
|
|
|
|
|
2020-03-29 10:52:46 +08:00
|
|
|
|
#----------- 创建配置文件: /root/.kube/config
|
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
|
|
|
|
|
|
2019-06-24 00:05:25 +08:00
|
|
|
|
- name: ansible 控制端写入环境变量$PATH
|
2019-05-27 20:02:02 +08:00
|
|
|
|
lineinfile:
|
|
|
|
|
dest: ~/.bashrc
|
|
|
|
|
state: present
|
2022-06-11 10:48:55 +08:00
|
|
|
|
regexp: 'custom PATH'
|
|
|
|
|
line: 'export PATH={{ base_dir }}/bin/:$PATH # custom PATH generated by kubeasz'
|
|
|
|
|
ignore_errors: true
|
|
|
|
|
|
|
|
|
|
- name: ansible 控制端写入命令别名
|
|
|
|
|
lineinfile:
|
|
|
|
|
dest: ~/.bashrc
|
|
|
|
|
state: present
|
|
|
|
|
regexp: 'docker exec'
|
|
|
|
|
line: "alias dek='docker exec -it kubeasz' # custom PATH generated by kubeasz"
|
2019-05-27 20:02:02 +08:00
|
|
|
|
ignore_errors: true
|
2019-05-28 23:46:22 +08:00
|
|
|
|
|
|
|
|
|
- name: ansible 控制端添加 kubectl 自动补全
|
|
|
|
|
lineinfile:
|
|
|
|
|
dest: ~/.bashrc
|
|
|
|
|
state: present
|
|
|
|
|
regexp: 'kubectl completion'
|
2022-06-11 10:48:55 +08:00
|
|
|
|
line: 'source <(kubectl completion bash) # generated by kubeasz'
|
2019-05-28 23:46:22 +08:00
|
|
|
|
ignore_errors: true
|