From 7841de5b68298fdf2e2a86e05e155549c09c757f Mon Sep 17 00:00:00 2001 From: ZAKKY Date: Fri, 5 Jun 2026 07:18:58 +0530 Subject: [PATCH] helmfile: add page (#22490) Co-authored-by: Sahil Afrid Farookhi --- pages/common/helmfile.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/common/helmfile.md diff --git a/pages/common/helmfile.md b/pages/common/helmfile.md new file mode 100644 index 0000000000..cc97b95f54 --- /dev/null +++ b/pages/common/helmfile.md @@ -0,0 +1,36 @@ +# helmfile + +> Declare and manage Helm releases and related Kubernetes manifests. +> More information: . + +- Install required Helm plugins: + +`helmfile init` + +- Preview the changes that would be applied to the cluster: + +`helmfile diff` + +- Apply releases defined in `helmfile.yaml` to the cluster: + +`helmfile apply` + +- Synchronize the cluster with the desired state, force-recreating if needed: + +`helmfile sync` + +- Apply releases for a specific environment: + +`helmfile {{[-e|--environment]}} {{dev|production|staging}} apply` + +- Destroy all releases defined in `helmfile.yaml`: + +`helmfile destroy` + +- Display help: + +`helmfile {{[-h|--help]}}` + +- Display version: + +`helmfile version`