| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Caution
This project is under active development and is not yet ready for production use. I strongly advise not using it until a stable release is published. Contributions and feedback are more than welcome and appreciated once the core is complete.
Argane is a Kubernetes security validator for YAML manifests, Helm charts, and running pods. It checks your workloads against the Kubernetes Pod Security Standards and reports any violations, helping you identify security issues such as host namespaces, privileged containers, capabilities and other security settings.
Argane is designed to be a lightweight, developer-friendly tool that helps you catch pod security misconfigurations early, before they even reach your cluster.
On macOS you can install the tool via the Homebrew Tap:
brew install kkrypt0nn/tap/argane
argane versionProvided you have Docker installed, you can pull the prebuilt image from Docker Hub or GitHub Container Registry:
docker pull docker.io/kkrypt0nn/argane
docker run docker.io/kkrypt0nn/argane version
# or
docker pull ghcr.io/kkrypt0nn/argane
docker run ghcr.io/kkrypt0nn/argane versionPrebuilt binaries are available via GitHub Releases. Download the proper archive for your platform, extract and place the binary in one of the paths in your PATH environment variable.
ARCH=$(uname -m)
[ "$ARCH" = "x86_64" ] && ARCH=amd64
[ "$ARCH" = "aarch64" ] && ARCH=arm64
OS=$(uname -s | tr '[:upper:]' '[:lower:]')
curl -LO "https://github.com/kkrypt0nn/argane/releases/latest/download/argane_${OS}_${ARCH}.tar.gz"
tar -xzf "argane_${OS}_${ARCH}.tar.gz"
mv argane /usr/local/bin/
argane versionGo to the releases, download the ZIP file and extract it.
Provided you have Go installed, you can execute the following command:
go install github.com/kkrypt0nn/argane/cmd/argane@latestTo install the tool by source, provided you have cloned the repository, you can execute the following command:
make build
./dist/argane version # The binary is available in the dist folderargane eval file ./fixtures/baseline/invalid/host_process.yaml -p baseline
cat ./fixtures/restricted/invalid/capabilities.yaml | argane eval stdin
docker run -v ./fixtures:/fixtures kkrypt0nn/argane eval file /fixtures/baseline/valid/hostpath_volumes.yaml -p baselineComing soon!
Issues are currently disabled while Argane is in active development and not ready for actual use.
Once a usable version is released, the issue tracker will be opened for bug reports, feature requests, and support.
Contributions are more than welcome, but please wait until we release a working beta or alpha version, then the issues will also be opened.
When it's time, please follow:
This tool was made with 💜 by Krypton and is under the Apache 2.0 License.
| Back | FazBrowse Home | New Git URL |