VMware/Jumpbox: Difference between revisions
Jump to navigation
Jump to search
Line 8: | Line 8: | ||
==Software== | ==Software== | ||
####################### | |||
## INSTALL TANZU CLI ## | |||
####################### | |||
sudo mkdir -p /etc/apt/keyrings/ | |||
sudo apt-get update | |||
sudo apt-get install -y ca-certificates curl gpg | |||
curl -fsSL https://packages.vmware.com/tools/keys/VMWARE-PACKAGING-GPG-RSA-KEY.pub | sudo gpg --dearmor -o /etc/apt/keyrings/tanzu-archive-keyring.gpg | |||
echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/tanzu-archive-keyring.gpg] https://storage.googleapis.com/tanzu-cli-os-packages/apt tanzu-cli-jessie main" | sudo tee /etc/apt/sources.list.d/tanzu.list | |||
sudo apt-get update | |||
sudo apt-get install -y tanzu-cli | |||
################### | |||
## INSTALL SNAPD ## | |||
################### | |||
apt-get install snapd | |||
####################### | |||
## INSTALL TANZU CLI ## | |||
####################### | |||
snap install tanzu-cli | |||
snap install yq |
Revision as of 18:22, 14 August 2024
Jumpbox Setup
OS
Ubuntu 24.04 UEFI
IP: edit the /etc/netplan/50-cloud-init.yaml REBOOT
Software
####################### ## INSTALL TANZU CLI ## ####################### sudo mkdir -p /etc/apt/keyrings/ sudo apt-get update sudo apt-get install -y ca-certificates curl gpg curl -fsSL https://packages.vmware.com/tools/keys/VMWARE-PACKAGING-GPG-RSA-KEY.pub | sudo gpg --dearmor -o /etc/apt/keyrings/tanzu-archive-keyring.gpg echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/tanzu-archive-keyring.gpg] https://storage.googleapis.com/tanzu-cli-os-packages/apt tanzu-cli-jessie main" | sudo tee /etc/apt/sources.list.d/tanzu.list sudo apt-get update sudo apt-get install -y tanzu-cli ################### ## INSTALL SNAPD ## ################### apt-get install snapd ####################### ## INSTALL TANZU CLI ## ####################### snap install tanzu-cli snap install yq