Skip to content

Commit

Permalink
Mount bpffs on all supported Kubernetes versions (#1349)
Browse files Browse the repository at this point in the history
  • Loading branch information
cartermckinnon authored Jul 20, 2023
1 parent 80dd9e5 commit 9307b07
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
8 changes: 2 additions & 6 deletions files/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function print_help {
echo "--ip-family Specify ip family of the cluster"
echo "--kubelet-extra-args Extra arguments to add to the kubelet. Useful for adding labels or taints."
echo "--local-disks Setup instance storage NVMe disks in raid0 or mount the individual disks for use by pods [mount | raid0]"
echo "--mount-bpf-fs Mount a bpffs at /sys/fs/bpf (default: true, for Kubernetes 1.25+; false otherwise)"
echo "--mount-bpf-fs Mount a bpffs at /sys/fs/bpf (default: true)"
echo "--pause-container-account The AWS account (number) to pull the pause container from"
echo "--pause-container-version The tag of the pause container"
echo "--service-ipv6-cidr ipv6 cidr range of the cluster"
Expand Down Expand Up @@ -224,11 +224,7 @@ if [[ ! -z ${LOCAL_DISKS} ]]; then
setup-local-disks "${LOCAL_DISKS}"
fi

DEFAULT_MOUNT_BPF_FS="true"
if vercmp "$KUBELET_VERSION" lt "1.25.0"; then
DEFAULT_MOUNT_BPF_FS="false"
fi
MOUNT_BPF_FS="${MOUNT_BPF_FS:-$DEFAULT_MOUNT_BPF_FS}"
MOUNT_BPF_FS="${MOUNT_BPF_FS:-true}"

# Helper function which calculates the amount of the given resource (either CPU or memory)
# to reserve in a given resource range, specified by a start and end of the range and a percentage
Expand Down
7 changes: 4 additions & 3 deletions test/cases/mount-bpf-fs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ fi
export -nf mount
rm $SYSTEMD_UNIT

echo "--> Should default to true on 1.27+"
echo "--> Should default to true"
export KUBELET_VERSION=v1.27.0-eks-ba74326
MOUNT_BPF_FS_MOCK=$(mktemp)
function mount-bpf-fs() {
Expand All @@ -72,8 +72,8 @@ if [ ! "$(cat $MOUNT_BPF_FS_MOCK)" = "called" ]; then
fi
export -nf mount-bpf-fs

echo "--> Should default to false on 1.24-"
export KUBELET_VERSION=v1.24.0-eks-ba74326
echo "--> Should be disabled by flag"
export KUBELET_VERSION=v1.27.0-eks-ba74326
MOUNT_BPF_FS_MOCK=$(mktemp)
function mount-bpf-fs() {
echo "called" >> $MOUNT_BPF_FS_MOCK
Expand All @@ -84,6 +84,7 @@ EXIT_CODE=0
/etc/eks/bootstrap.sh \
--b64-cluster-ca dGVzdA== \
--apiserver-endpoint http://my-api-endpoint \
--mount-bpf-fs false \
test || EXIT_CODE=$?
if [[ ${EXIT_CODE} -ne 0 ]]; then
echo "❌ Test Failed: expected a zero exit code but got '${EXIT_CODE}'"
Expand Down

0 comments on commit 9307b07

Please sign in to comment.