Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Kustomize | 9,695 | 714 | a day ago | 256 | August 01, 2022 | 201 | apache-2.0 | Go | ||
Customization of kubernetes YAML configurations | ||||||||||
Kube Linter | 2,308 | 1 | 3 days ago | 14 | June 29, 2022 | 69 | apache-2.0 | Go | ||
KubeLinter is a static analysis tool that checks Kubernetes YAML files and Helm charts to ensure the applications represented in them adhere to best practices. | ||||||||||
Tanka | 2,008 | 12 | 4 days ago | 59 | September 27, 2022 | 55 | apache-2.0 | Go | ||
Flexible, reusable and concise configuration for Kubernetes | ||||||||||
Cheatsheet Kubernetes A4 | 1,712 | 3 months ago | Shell | |||||||
:book: Kubernetes CheatSheets In A4 | ||||||||||
Kapitan | 1,671 | 1 | 2 days ago | 99 | March 18, 2022 | 108 | apache-2.0 | Python | ||
Generic templated configuration management for Kubernetes, Terraform and other things | ||||||||||
Devops | 1,609 | 10 days ago | gpl-3.0 | Go | ||||||
This repo contains all my learning related to DevOps | ||||||||||
Konstellate | 1,405 | 4 years ago | 13 | mit | Clojure | |||||
Free and Open Source GUI to Visualize Kubernetes Applications. | ||||||||||
Ytt | 1,384 | 3 days ago | 141 | apache-2.0 | Go | |||||
YAML templating tool that works on YAML structure instead of text | ||||||||||
Kubernetes Examples | 1,234 | 17 days ago | 12 | mit | Shell | |||||
Minimal self-contained examples of standard Kubernetes features and patterns in YAML | ||||||||||
Kubectl Neat | 1,232 | 3 | 3 months ago | 9 | November 30, 2021 | 31 | apache-2.0 | Go | ||
Clean up Kubernetes yaml and json output to make it readable |
Validkube combines the best open-source tools to help ensure Kubernetes YAML best practices, hygiene & security.
If you like ValidKube, share with your friends and be sure to ⭐ it!
Please read contributing guidelines
before submitting new Resources.
Policies - A combination of security and best practices.
Validkube is an open-source project, so please feel free to add more tools or capabilities. :)
Full deploy:
make deploy
Deploy backend:
make deploy-backend
In order to update web domain:
aws ssm put-parameter --name /validkube/config/allowed_origin --type String --value {frontend-domain} --overwrite
Deploy frontend:
make deploy-frontend
To run locally, set ALLOWED_ORIGIN
environment variable to http://localhost:3000
Example in Linux:
export ALLOWED_ORIGIN='http://localhost:3000'
In order to start backend:
go mod download
go run backend/development/localdev.go
In order to start frontend:
cd frontend
yarn install
yarn start