Real output from running bpfman against a live kernel, demonstrating every supported program type and output format. Each section follows the full lifecycle: load, attach, list, detach, unload.
Complete help output for every command and subcommand.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # On macOS Sequoia 15.2, the Nix-generated default-command uses | |
| # reattach-to-user-namespace, which causes the shell to default to | |
| # bash even though $SHELL is set to /bin/zsh. Override these to ensure | |
| # the correct shell is used. I don't know why or when this behaviour | |
| # changed. | |
| set-option -g default-shell "$SHELL" | |
| set-option -g default-command "$SHELL" | |
| # Unbind all key bindings in the 'copy-mode-vi' table to use Emacs key bindings throughout. | |
| unbind-key -a -T copy-mode-vi |
This describes how I set up TPM2 hardware-backed SSH keys using tpm2-pkcs11 on NixOS. Keys are generated inside the TPM and cannot be extracted, providing hardware-bound authentication.
- Uses the kernel resource manager (
/dev/tpmrm0) directly—notpm2-abrmddaemon needed - Uses the
esysdbbackend instead of FAPI for simpler configuration - Integrates with
passfor PIN storage (non-interactive operation) - Provides helper scripts for key management
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/bundle/manifests/bpfman-operator.clusterserviceversion.yaml b/bundle/manifests/bpfman-operator.clusterserviceversion.yaml | |
| index 7120fc07..287d2b44 100644 | |
| --- a/bundle/manifests/bpfman-operator.clusterserviceversion.yaml | |
| +++ b/bundle/manifests/bpfman-operator.clusterserviceversion.yaml | |
| @@ -993,19 +993,21 @@ metadata: | |
| ] | |
| capabilities: Basic Install | |
| categories: OpenShift Optional | |
| - containerImage: quay.io/bpfman/bpfman-operator:latest | |
| - createdAt: "2025-06-03T12:16:50Z" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/bundle/manifests/bpfman-operator.clusterserviceversion.yaml b/bundle/manifests/bpfman-operator.clusterserviceversion.yaml | |
| index 7120fc07..f8e753ad 100644 | |
| --- a/bundle/manifests/bpfman-operator.clusterserviceversion.yaml | |
| +++ b/bundle/manifests/bpfman-operator.clusterserviceversion.yaml | |
| @@ -993,19 +993,21 @@ metadata: | |
| ] | |
| capabilities: Basic Install | |
| categories: OpenShift Optional | |
| - containerImage: quay.io/bpfman/bpfman-operator:latest | |
| - createdAt: "2025-06-03T12:16:50Z" |
This directory contains placeholder files that Konflux populates with image references during the build process. These files are used as "nudge files" to trigger rebuilds of dependent components when base images are updated.
The Konflux nudge system coordinates component rebuilds when dependencies change. The terminology can be confusing, so here's the actual flow:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Generate Containerfile.bundle.openshift with current VERSION | |
| script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" | |
| repo_root="$(cd "$script_dir/../.." && pwd)" | |
| version_file="${repo_root}/VERSION" | |
| output_file="${repo_root}/Containerfile.bundle.openshift" | |
| if [ ! -f "$version_file" ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # bpfman-dev-container.sh | |
| # | |
| # Minimal, distrobox-free dev container with Nix mounts and sane TTY. | |
| # /run and /tmp are tmpfs. Nix mounts only if /nix/store exists. Works | |
| # with docker (and maybe with podman). | |
| set -euo pipefail |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Catalog: Red Hat Operators (redhat-operators) | |
| Packages: 1 | |
| └── Package: netobserv-operator | |
| Publisher: Red Hat | |
| Default Channel: stable | |
| ├── Channel: stable (Current: network-observability-operator.v1.9.0) | |
| │ ├── [OK] Bundle: network-observability-operator.v1.9.0 (v1.9.0) | |
| │ │ >>> CREATED: 2025-06-27T08:03:00 | |
| │ │ >>> RELATED IMAGES: |
NewerOlder