You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
423 B
15 lines
423 B
## Instalar en todos los nodos
|
|
|
|
sudo apt install wireguard curl apparmor apparmor-utils bash-completion neovim
|
|
|
|
## Specify topology
|
|
|
|
for node in $(kubectl get nodes | grep -i ssd | awk '{print $1}'); do kubectl annotate node $node kilo.squat.ai/location="$node"; done
|
|
|
|
## Apply CRD
|
|
|
|
kubectl apply -f https://raw.githubusercontent.com/squat/kilo/main/manifests/crds.yaml
|
|
|
|
## Apply Kilo
|
|
|
|
kubectl apply -f kilo-k3s-cilium.yaml |