Hi, we are trying to onboard to buildkite with hosted agent but are running into some issues.
We have certain tests where we spin up docker containers and throttle the network. In order to do that we use a utility tool called tc
provided as part of iproutes2
pacakge.
The command we run ideally is
tc qdisc add dev "${IFACE}" root tbf rate 10mbit burst 32kbit latency 10sec
.
However, this gives us error saying that “Error qdisc is unknown”. Upon searching a lot it seems to be a problem with the linux kernel. Though not entirely sure.
root@msevcsuuou6v0:~# cat /etc/os-release
PRETTY_NAME=“Ubuntu 22.04.3 LTS”
NAME=“Ubuntu”
VERSION_ID=“22.04”
VERSION=“22.04.3 LTS (Jammy Jellyfish)”
VERSION_CODENAME=jammy
ID=ubuntu
ID_LIKE=debian
HOME_URL=“https://www.ubuntu.com/”
SUPPORT_URL=“https://help.ubuntu.com/”
BUG_REPORT_URL=“Bugs : Ubuntu”
PRIVACY_POLICY_URL=“https://www.ubuntu.com/legal/terms-and-policies/privacy-policy”
UBUNTU_CODENAME=jammy
Is there a way where I can use an updated version of Ubuntu for a hosted image ?