https://github.com/cilium/cilium
Revision dee730e60a54af8008c21b3f9c51a222fae1797f authored by Tom Hadlaw on 05 March 2024, 20:09:14 UTC, committed by Tom Hadlaw on 05 March 2024, 20:09:14 UTC
This release includes improved uninstall/cleanup command which should aleviate various issues when re-using clusters while re-running e2e tests.

Fixes: #30990 #30991 #30993

Signed-off-by: Tom Hadlaw <tom.hadlaw@isovalent.com>
1 parent d697a14
Raw File
Tip revision: dee730e60a54af8008c21b3f9c51a222fae1797f authored by Tom Hadlaw on 05 March 2024, 20:09:14 UTC
.github: bump version of cilium-cli to v0.16.0
Tip revision: dee730e
gcp-vm-startup.sh
#!/usr/bin/env bash

apt-get update
apt-get install -y --no-install-recommends \
    apt-transport-https \
    ca-certificates \
    curl \
    gnupg \
    lsb-release

HOSTNAME=$(curl --silent http://metadata.google.internal/computeMetadata/v1/instance/attributes/hostname -H "Metadata-Flavor: Google")
echo "Setting hostname $HOSTNAME"
hostname $HOSTNAME

echo "Installing docker"
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo \
  "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
  $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
apt-get update
apt-get install -y --no-install-recommends \
	docker-ce \
	docker-ce-cli \
	containerd.io

echo "Adding user $USER to group docker"
usermod -aG docker $USER
back to top