kstack is a tool designed to simplify the deployment and management of Kubernetes clusters using a streamlined YAML configuration format. It abstracts complex Kubernetes configurations into a more user-friendly format, making it easier for developers and DevOps teams to manage their clusters.
- Simplified YAML configuration for Kubernetes resources.
- Support for deployments, services, ingresses, secrets, and volumes.
- Automatic validation of stack configurations against a JSON schema.
- CLI commands for deploying, validating, and managing Kubernetes resources.
To install kstack, ensure you have Python 3.11 installed, then use poetry to install the dependencies:
poetry installTo validate a stack configuration file:
kstack validate examples/simple-deployment.yamlTo deploy resources defined in a stack configuration file:
kstack deploy examples/simple-deployment.yaml(Currently under development)
kstack destroyHere is an example of a simple deployment configuration:
apps:
whoami:
image: "containous/whoami"
ports:
- 8000:80To contribute to kstack, clone the repository and install the dependencies using poetry:
git clone https://github.com/eznix86/kstack.git
cd kstack
poetry installkstack is licensed under the GNU General Public License v3.0 or later. See the LICENSE file for details.