version: v1.0.0
What is Helmsman?
Helmsman is a Helm Charts (k8s applications) as Code tool which adds a layer of abstraction on top of Helm (the Kubernetes package manager). It allows you to automate the deployment/management of your Helm charts.
Why Helmsman?
Helmsman was created to ease continous deployment of Helm charts. When you want to configure a continous deployment pipeline to manage multiple charts deployed on your k8s cluster(s), a CI script will quickly become complex and difficult to maintain. That's where Helmsman comes to rescue. Read more about how Helmsman can save you time and effort.
Features
- Built for CD: Helmsman can be used as a docker image or a binary.
- Applications as code: describe your desired applications and manage them from a single version-controlled declarative file.
- Easy to use: deep knowledge of Helm CLI and Kubectl is NOT manadatory to use Helmsman.
- Plan, View, apply: you can run Helmsman to generate and view a plan with/without executing it.
- Portable: Helmsman can be used to manage charts deployments on any k8s cluster.
- Protect Namespaces/Releases: you can define certain namespaces/releases to be protected against accidental human mistakes.
- Idempotency: As long your desired state file does not change, you can execute Helmsman several times and get the same result.
- Continue from failures: In the case of partial deployment due to a specific chart deployment failure, fix your helm chart and execute Helmsman again without needing to rollback the partial successes first.
Helmsman lets you:
Usage
Helmsman can be used in three different settings:
How does it work?
Helmsman uses a simple declarative TOML file to allow you to describe a desired state for your k8s applications as in the example file.
The desired state file (DSF) follows the desired state specification.
Helmsman sees what you desire, validates that your desire makes sense (e.g. that the charts you desire are available in the repos you defined), compares it with the current state of Helm and figures out what to do to make your desire come true.
To plan without executing:
$ helmsman -f example.toml
To plan and execute the plan:
$ helmsman -apply -f example.toml
To show debugging details:
$ helmsman -debug -apply -f example.toml
Installation
Install Helmsman for your OS from the releases page. Available for Linux, MacOS & Windows.
Also available as a docker image.
Documentaion
Documentation and How-Tos can be found here.
Contributing
Pull requests, feeback/feature requests are welcome.