mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-17 09:14:25 +00:00
45 lines
861 B
Markdown
45 lines
861 B
Markdown
# Helmfile
|
|
|
|
Declarative spec for deploying helm charts.
|
|
|
|
## Table of contents <!-- omit in toc -->
|
|
|
|
1. [TL;DR](#tldr)
|
|
1. [Further readings](#further-readings)
|
|
1. [Sources](#sources)
|
|
|
|
## TL;DR
|
|
|
|
```sh
|
|
# Show what happens in the internal computations.
|
|
helmfile --debug -e environment apply
|
|
|
|
# Show the difference between the current state and what would be applied.
|
|
# Requires `helm` to have the 'diff' plugin installed.
|
|
helmfile
|
|
-f custom.yml
|
|
-e environment
|
|
diff
|
|
--values environment.yaml
|
|
```
|
|
|
|
## Further readings
|
|
|
|
- [Github]
|
|
- [Helm]
|
|
- [Kubernetes]
|
|
|
|
## Sources
|
|
|
|
All the references in the [further readings] section, plus the following:
|
|
|
|
<!-- project's references -->
|
|
[github]: https://github.com/helmfile/helmfile
|
|
|
|
<!-- internal references -->
|
|
[further readings]: #further-readings
|
|
[helm]: helm.md
|
|
[kubernetes]: README.md
|
|
|
|
<!-- external references -->
|