File tree 1 file changed +15
-0
lines changed
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,21 @@ sudo apt update
13
13
# Install OpenVPN Connector setup tool
14
14
sudo apt install -y python3-openvpn-connector-setup
15
15
16
+ # Install more tools
17
+ sudo apt install -y mc gnupg unzip ca-certificates curl htop
18
+
19
+ # Install awscliv2
20
+ sudo curl " https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o " awscliv2.zip"
21
+ sudo unzip awscliv2.zip
22
+ sudo ./aws/install
23
+
24
+ # Install kubectl
25
+ sudo apt-get update && sudo apt-get install -y apt-transport-https
26
+ curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
27
+ echo " deb https://apt.kubernetes.io/ kubernetes-xenial main" | sudo tee -a /etc/apt/sources.list.d/kubernetes.list
28
+ sudo apt-get update
29
+ sudo apt-get install -y kubectl
30
+
16
31
# Enable IP forwarding
17
32
sudo sed -i ' s/#net.ipv4.ip_forward=1/net.ipv4.ip_forward=1/g' /etc/sysctl.conf
18
33
sudo sed -i ' s/#net.ipv6.conf.all.forwarding=1/net.ipv6.conf.all.forwarding=1/g' /etc/sysctl.conf
You can’t perform that action at this time.
0 commit comments