1 Star 0 Fork 3

AllenLiuOSC / kubeadm-ha

forked from 平安 / kubeadm-ha 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
81-add-worker.yml 1.16 KB
一键复制 编辑 原始数据 按行查看 历史
setzero 提交于 2021-05-12 09:54 . [IMP]优化脚本默认值获取
# 校验节点软件系统及硬件系统、安装必要基础组件、docker、kubeadm、kubelet、kubectl
- hosts: all
gather_facts: false
tasks:
- name: "设置代理服务器环境变量"
set_fact:
proxy_env:
http_proxy: "{{ http_proxy | default ('') }}"
HTTP_PROXY: "{{ http_proxy | default ('') }}"
https_proxy: "{{ https_proxy | default ('') }}"
HTTPS_PROXY: "{{ https_proxy | default ('') }}"
no_proxy: "{{ no_proxy | default ('') }}"
NO_PROXY: "{{ no_proxy | default ('') }}"
no_log: true
- hosts:
- new-worker
roles:
- prepare/variables
- prepare/base
- prepare/container-engine
- prepare/kubernetes
environment: "{{ proxy_env }}"
# 进行apiserver负载均衡
- hosts:
- new-worker
roles:
- prepare/variables
- load-balancer
# 生成master节点证书
- hosts:
- kube-master
- new-master
- kube-worker
- new-worker
roles:
- prepare/variables
- kube-certificates
# 初始化worker节点
- hosts:
- new-worker
roles:
- prepare/variables
- kube-worker
# 标记各节点角色
- hosts:
- new-worker
roles:
- prepare/variables
- post
1
https://gitee.com/allenliuosc/kubeadm-ha.git
git@gitee.com:allenliuosc/kubeadm-ha.git
allenliuosc
kubeadm-ha
kubeadm-ha
master

搜索帮助