Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bootc-dev-infra-commit.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
e15b9622fcef58276464960124823108858dc646
61b769aee4ec165dcbfd993aeaa10a7fae2cb629
9 changes: 6 additions & 3 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,16 @@
},
"features": {},
"runArgs": [
// Minimal security options for nested podman (avoids --privileged):
// - label=disable: Required for mounting /proc in nested user namespace
// - unmask=/proc/*: Allows access to /proc paths needed for nested containers
// In general we hope that the outer environment has set up
// a user namespace to keep this secure.
"--cap-add=all",
// Required for mounting /proc in nested user namespace
"--security-opt", "label=disable",
// Allows access to /proc paths needed for nested containers
"--security-opt", "unmask=/proc/*",
// Device access for nested containers and VMs
"--device", "/dev/net/tun",
// I always want KVM
"--device", "/dev/kvm"
],
"postCreateCommand": {
Expand Down
1 change: 1 addition & 0 deletions .github/actions/bootc-ubuntu-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ runs:
shell: bash
run: |
set -xeuo pipefail
# renovate: datasource=github-releases depName=bootc-dev/bcvk
export BCVK_VERSION=0.10.0
# see https://github.com/bootc-dev/bcvk/issues/176
/bin/time -f '%E %C' sudo apt install -y libkrb5-dev pkg-config libvirt-dev genisoimage qemu-utils qemu-kvm virtiofsd libvirt-daemon-system python3-virt-firmware
Expand Down