A K9s-inspired terminal UI for monitoring Flux GitOps resources in real-time.
flux9s provides a terminal-based interface for monitoring and managing Flux CD resources, inspired by the excellent K9s project. It offers real-time monitoring of Flux Custom Resources (CRDs) including Kustomizations, GitRepositories, HelmReleases, and more.
- Real-time monitoring - Watch Flux resources as they change using Kubernetes Watch API
- K9s-inspired interface - Familiar navigation and keybindings for K9s users
- Unified and type-specific views - View all resources together or filter by type
- Resource operations - Suspend, resume, reconcile, and delete Flux resources
- YAML viewing - Inspect full resource manifests
- Namespace switching - Monitor resources across namespaces or cluster-wide
- Status indicators - Visual indicators for resource health and suspension state
The easiest way to install on macOS and Linux:
brew install dgunzy/tap/flux9sOr tap the repository first:
brew tap dgunzy/tap
brew install flux9sIf you have cargo-binstall installed:
cargo binstall flux9sThis downloads and installs pre-built binaries without compiling from source.
Download pre-built binaries from the Releases page:
- Linux (x86_64):
flux9s-linux-x86_64.tar.gz - macOS (Intel):
flux9s-macos-x86_64.tar.gz - macOS (Apple Silicon):
flux9s-macos-aarch64.tar.gz - Windows (x86_64):
flux9s-windows-x86_64.zip
Extract and move the binary to a directory in your PATH.
cargo install flux9sgit clone https://github.com/dgunzy/flux9s.git
cd flux9s
cargo build --releaseThe binary will be available at target/release/flux9s.
- Ensure you have a Kubernetes cluster with Flux installed
- Configure your
kubeconfigto point to your cluster - Run
flux9s
flux9sBy default, flux9s watches the flux-system namespace. Use :ns all to view all namespaces or :ns <namespace> to switch to a specific namespace.
Note:
flux9slaunches in readonly mode by default.
You can change this withflux9s config set readOnly falseor toggle it in a session using:readonly.
j/k- Navigate up/downEnter- View resource detailsy- View resource YAMLEsc- Go back / Quit/- Filter resources by name:- Command mode (e.g.,:kustomization,:gitrepository)
:ns <namespace>- Switch namespace:ns all- View all namespaces:skin {skin-name}- set skin (Must be in your systems flux9s/skins dir):qor:q!- Quit:help- Show help
s- Suspend resourcer- Resume resourceR- Reconcile resourced- Delete resource (with confirmation)
flux9s config --help- Show the config optionsflux9s config set {KEY} {VALUE}- set a yaml option with the cli.flux9s config set ui.skin {skinname}- set a skin that is in your systems flux9s/skins.
Note: Not all K9s skins are compatible with flux9s. flux9s skins follow a similar format but may require adjustments to work properly.
This project is inspired by and built with the following excellent tools:
- K9s - The terminal UI for Kubernetes that inspired this project
- Flux - The open and extensible continuous delivery solution for Kubernetes. Powered by GitOps Toolkit.
- kube-rs - The Rust Kubernetes client library powering the Kubernetes API interactions
- kopium - The tool used to generate Rust types from Kubernetes CRDs
AI was used to get the scaffold of this project together, if there are mistakes or issues please open an issue, or a PR!
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the Apache License, Version 2.0 - see the LICENSE file for details.


