1
0
Fork 0
home-stack-kustomize/setup-dev-cluster.sh

79 lines
2.3 KiB
Bash
Raw Normal View History

2020-08-29 04:54:40 +00:00
#!/bin/bash -ex
2020-08-02 03:14:58 +00:00
cluster_name='local'
k3s_registry_config="$HOME/.config/k3d/registries.yaml"
# generate manifest to be deployed on boot
2021-08-26 16:42:21 +00:00
# make cluster
# auto_deploy_manifest="$(dirname "$(readlink -f "$0")")/build/dev/cluster.yaml"
2020-08-02 03:14:58 +00:00
# cluster registry configuration
if [[ ! -f "$k3s_registry_cofing" ]]; then
mkdir -p "$(dirname "$k3s_registry_config")"
cat >"$k3s_registry_config" <<EOF
mirrors:
2020-08-29 04:54:40 +00:00
"registry-localhost:5000":
2020-08-02 03:14:58 +00:00
endpoint:
2020-08-29 04:54:40 +00:00
- http://registry-localhost:5000
2020-08-02 03:14:58 +00:00
EOF
else
echo '~/.config/k3d/registries.yaml already exists, skipping generation'
fi
# local k3s cluster
if ! k3d cluster list "$cluster_name" &>/dev/null; then
k3d cluster create "$cluster_name" \
--servers 1 \
--agents 3 \
--volume "$k3s_registry_config:/etc/rancher/k3s/registries.yaml" \
2020-08-11 04:37:20 +00:00
-p 80:80@loadbalancer \
-p 443:443@loadbalancer
sleep 10
2020-08-02 03:14:58 +00:00
fi
2021-08-26 16:42:21 +00:00
# --volume ":/var/lib/rancher/k3s/server/manifests/cluster.yaml" \
2020-08-02 03:14:58 +00:00
# local docker registry
2020-08-29 04:54:40 +00:00
if ! docker ps -a | grep registry-localhost &>/dev/null; then
2020-08-02 03:14:58 +00:00
docker volume create local_registry
docker run -d \
2020-08-29 04:54:40 +00:00
--name registry-localhost \
2020-08-29 16:38:44 +00:00
--net "k3d-$cluster_name" \
2020-08-02 03:14:58 +00:00
--volume local_registry:/var/lib/registry \
--restart always \
-p 5000:5000 \
registry:2
fi
2020-08-29 04:54:40 +00:00
# local nfs server
2021-08-27 04:57:25 +00:00
# if ! docker ps -a | grep nfs-localhost &>/dev/null; then
# docker volume create local_nfs
# docker run -d \
# --name nfs-localhost \
# --net "k3d-$cluster_name" \
# --ip 172.31.0.10 \
# --volume "$PWD/.nfs/nextcould:/data/nextcloud" \
# --volume /lib/modules:/lib/modules:ro \
# --restart always \
# --cap-add SYS_ADMIN \
# --cap-add SYS_MODULE \
# --env NFS_EXPORT_0='/data *(rw,sync,insecure,no_subtree_check,no_root_squash,fsid=0)' \
# --env NFS_LOG_LEVEL=DEBUG \
# -p 2049:2049 \
# erichough/nfs-server:2.2.1
# sleep 10
# fi
# sudo modprobe netfs
# sudo modprobe fscache
# sudo modprobe sunrpc
# sudo modprobe grace
# sudo modprobe lockd
# sudo modprobe nfs
# sudo modprobe nfs_acl
# sudo modprobe auth_rpcgss
# sudo modprobe nfsd
2020-08-29 04:54:40 +00:00
2021-08-26 16:42:21 +00:00
# k3d kubeconfig merge "$cluster_name" --switch-context >/dev/null
# kubectl apply -f "$auto_deploy_manifest"
kubectl config use-context "k3d-$cluster_name"
2020-08-29 04:54:40 +00:00
kubectl get nodes