mirror of
https://github.com/kubesphere/kubekey.git
synced 2025-12-25 17:12:50 +00:00
Signed-off-by: joyceliu <joyceliu@yunify.com> Co-authored-by: joyceliu <joyceliu@yunify.com>
20 lines
577 B
YAML
20 lines
577 B
YAML
---
|
|
# https://github.com/flannel-io/flannel/blob/master/Documentation/kubernetes.md
|
|
- name: Sync flannel package to remote
|
|
copy:
|
|
src: |
|
|
{{ .binary_dir }}/cni/flannel/flannel.tgz
|
|
dest: |
|
|
/etc/kubernetes/cni/flannel.tgz
|
|
|
|
- name: Generate flannel custom value file
|
|
copy:
|
|
content: |
|
|
{{ .cni.flannel.values }}
|
|
dest: |
|
|
/etc/kubernetes/cni/flannel-values.yaml
|
|
|
|
- name: Apply flannel
|
|
command: |
|
|
helm install --create-namespace --namespace kube-flannel flannel /etc/kubernetes/cni/flannel.tgz -f /etc/kubernetes/cni/flannel-values.yaml
|