rakkess
Review Access - kubectl plugin to show an access matrix for k8s server resources
File Explorer
Download Latest Version (.zip)- bug_report.md
- ci.yml
- dependabot.yml
- resource.go
- root.go
- root_test.go
- signals.go
- signals_test.go
- version.go
- v0.1.0.md
- v0.1.1.md
- v0.2.0.md
- v0.2.1.md
- v0.3.0.md
- v0.4.0.md
- v0.4.1.md
- v0.4.2.md
- v0.4.3.md
- v0.4.4.md
- v0.4.5.md
- v0.4.6.md
- v0.4.7.md
- v0.5.0.md
- demo-named-resource-smaller.png
- demo-resource-smaller.png
- demo-user-smaller.png
- USAGE.md
- .gitignore
- access-matrix.yaml
- install-gox.sh
- install_golangci-lint.sh
- make_tag.sh
- release_notes.sh
- run_lint.sh
- resource.go
- result.go
- subject.go
- subject_test.go
- fetch_resources.go
- fetch_resources_test.go
- resource_access.go
- resource_access_test.go
- subject_access.go
- subject_access_test.go
- command_krew.go
- command_rakkess.go
- constants.go
- diff.go
- options.go
- options_test.go
- printer.go
- printer_test.go
- terminal_notwindows.go
- terminal_windows.go
- validation.go
- validation_test.go
- version.go
- version_test.go
- rakkess.go
- .gitattributes
- .gitignore
- .travis.yml
- CONTRIBUTING.md
- Dockerfile
- go.mod
- go.sum
- LICENSE
- main.go
- Makefile
- README.md
π Installation Guide
1. Get the code
git clone https://github.com/corneliusweig/rakkess
Downloads the entire project code from GitHub to your computer.
cd rakkess
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build . -t rakkess-builder
Builds a runnable image based on the Dockerfile.
docker run --rm -v $PWD:/go/bin/ --env PLATFORMS=$(go env GOOS) rakkess
Runs the built image as an actual container.
docker rmi rakkess-builder
Type this command into your terminal and run it.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
Pulled directly from this repo's README.
3. Go
MediumPrerequisites
go build ./...
Compiles the Go program into an executable.
go run .
Runs the Go program directly without a separate build step.
If the build finishes without errors, it worked. If you used go run ., check the terminal output.
4. Make
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make all # binaries will be placed in out/
Compiles the code based on the generated build configuration to produce an executable.
If it finishes without errors, it worked. Try running the generated executable directly.
Pulled directly from this repo's README.
// repository documentation
Was this content helpful?
(0 ratings)
