clean: remove useless package installation

This commit is contained in:
root 2025-02-22 10:39:20 -05:00
parent 9faf7b6fe7
commit 1cfa5df370
2 changed files with 2 additions and 6 deletions

View File

@ -1,6 +1,4 @@
#!/bin/bash #!/bin/bash
apt update
apt install -y build-essential dkms linux-headers-generic
# Get the master node's IP from the arguments # Get the master node's IP from the arguments
MASTER_IP=$1 MASTER_IP=$1
@ -8,4 +6,4 @@ MASTER_IP=$1
TOKEN=$(cat /vagrant/token) TOKEN=$(cat /vagrant/token)
# Install K3s agent (worker) and join the master node # Install K3s agent (worker) and join the master node
curl -sfL https://get.k3s.io | K3S_URL=https://$MASTER_IP:6443 K3S_TOKEN=$TOKEN sh - curl -sfL https://get.k3s.io | K3S_URL=https://$MASTER_IP:6443 K3S_TOKEN=$TOKEN sh -

View File

@ -1,6 +1,4 @@
#!/bin/bash #!/bin/bash
apt update
sudo apt install -y build-essential dkms linux-headers-generic
# Install K3s on the master node # Install K3s on the master node
curl -sfL https://get.k3s.io | sh - curl -sfL https://get.k3s.io | sh -
@ -13,4 +11,4 @@ sudo chown -R vagrant:vagrant /home/vagrant/.kube/config
TOKEN=$(sudo cat /var/lib/rancher/k3s/server/node-token) TOKEN=$(sudo cat /var/lib/rancher/k3s/server/node-token)
# Store the token for the workers to use # Store the token for the workers to use
echo $TOKEN > /vagrant/token echo $TOKEN > /vagrant/token