-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTaskfile.yaml
31 lines (26 loc) · 998 Bytes
/
Taskfile.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
version: "3"
vars:
PROJECT_DIR:
sh: "git rev-parse --show-toplevel"
CLUSTER_DIR: "{{.PROJECT_DIR}}/cluster"
env:
KUBECONFIG: "{{.CLUSTER_DIR}}/local/kubeconfig"
includes:
ansible: .taskfiles/AnsibleTasks.yml
cluster: .taskfiles/ClusterTasks.yml
debug: .taskfiles/DebugTasks.yml
precommit: .taskfiles/PreCommitTasks.yml
snapshot: .taskfiles/SnapshotTasks.yml
terraform: .taskfiles/TerraformTasks.yml
tasks:
kubeconfig:
desc: Remotely fetch kubeconfig from Kubernetes
cmds:
- rsync --verbose --progress --partial --rsync-path="sudo rsync" {{.K3S_PRIMARY_MASTER_NODE_USERNAME}}@{{.K3S_PRIMARY_MASTER_NODE_ADDR}}:/etc/rancher/k3s/k3s.yaml "{{.CLUSTER_DIR}}/local/kubeconfig"
- sed -i 's/127.0.0.1/{{.K3S_LB_ADDR}}/g' "{{.CLUSTER_DIR}}/local/kubeconfig"
- chmod go-r "{{.CLUSTER_DIR}}/local/kubeconfig"
vars:
K3S_PRIMARY_MASTER_NODE_USERNAME: "yin"
K3S_PRIMARY_MASTER_NODE_ADDR: "192.168.3.11"
K3S_LB_ADDR: "192.168.4.10"