Skip to content

Commit

Permalink
Revert "Another attempt to remediate user namespace issues with ubunt…
Browse files Browse the repository at this point in the history
…u24 runners (pixie-io#2010)"

This reverts commit 5dc122a.

Signed-off-by: Dom Del Nano <[email protected]>
  • Loading branch information
ddelnano committed Sep 6, 2024
1 parent 5dc122a commit 7f61a25
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/workflows/cli_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ jobs:
export TAG_NAME="${REF#*/tags/}"
mkdir -p "artifacts/"
export ARTIFACTS_DIR="$(realpath artifacts/)"
sysctl -w kernel.unprivileged_userns_clone=1
./ci/save_version_info.sh
./ci/cli_build_release.sh
- name: Upload Github Artifacts
Expand Down
5 changes: 5 additions & 0 deletions ci/cli_build_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ bazel run -c opt --config=stamp //src/pixie_cli:push_px_image

if [[ ! "$release_tag" == *"-"* ]]; then
# Create rpm package.

# podman package depends on golang-github-containers-common, which
# provides the following seccomp profile.
podman run -i --rm \
--security-opt seccomp=/usr/share/containers/seccomp.json \
-v "${binary_dir}:/src/" \
-v "$(pwd):/image" \
docker.io/cdrx/fpm-fedora:24 \
Expand All @@ -69,6 +73,7 @@ if [[ ! "$release_tag" == *"-"* ]]; then

# Create deb package.
podman run -i --rm \
--security-opt seccomp=/usr/share/containers/seccomp.json \
-v "${binary_dir}:/src/" \
-v "$(pwd):/image" \
docker.io/cdrx/fpm-ubuntu:18.04 \
Expand Down

0 comments on commit 7f61a25

Please sign in to comment.