mirror of
https://github.com/k3s-io/kubernetes.git
synced 2026-01-06 07:57:35 +00:00
41 lines
486 B
YAML
41 lines
486 B
YAML
---
|
|
# Install etcd
|
|
- hosts: etcd
|
|
sudo: yes
|
|
roles:
|
|
- common
|
|
- etcd
|
|
tags:
|
|
- etcd
|
|
|
|
# install flannel
|
|
- hosts:
|
|
- etcd
|
|
- masters
|
|
- nodes
|
|
sudo: yes
|
|
roles:
|
|
- flannel
|
|
tags:
|
|
- flannel
|
|
|
|
# install kube master services
|
|
- hosts: masters
|
|
sudo: yes
|
|
roles:
|
|
- common
|
|
- kubernetes
|
|
- master
|
|
tags:
|
|
- masters
|
|
|
|
# install kubernetes on the nodes
|
|
- hosts: nodes
|
|
sudo: yes
|
|
roles:
|
|
- common
|
|
- kubernetes
|
|
- node
|
|
tags:
|
|
- nodes
|