Skip to content

Commit b7805e6

Browse files
committed
Updated installer
1 parent 327d2f9 commit b7805e6

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/bin/bash
2+
3+
# Start kubernetes cluster
4+
echo "[TASK 1] Start kubernetes cluster"
5+
kind create cluster --name kubernetes --config cluster-with-calico.yaml
6+
7+
# Create calico network
8+
echo "[TASK 2] Create calico network"
9+
kubectl create -f https://docs.projectcalico.org/v3.11/manifests/calico.yaml
10+
11+
# Setup metallb
12+
echo "[TASK 3] Setup metallb"
13+
sh ../yaml/metallb/setup-metallb.sh
14+
15+
# Setup nfs-client-provisioner
16+
echo "[TASK 4] Setup nfs-client-provisioner"
17+
sh ../yaml/nfs-client-provisioner/setup-nfs-client-provisioner.sh

0 commit comments

Comments
 (0)