From 2398ad2f3510af5d9d5aad30b2eee3df69f9c8d2 Mon Sep 17 00:00:00 2001 From: Yusuke KUOKA Date: Fri, 24 Aug 2018 12:10:18 +0900 Subject: [PATCH] doc: Using helmfile without an Internet connection Resolves #155 --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 7f6f4f80..5b18e164 100644 --- a/README.md +++ b/README.md @@ -260,6 +260,13 @@ set -a; . .env; set +a; helmfile sync Please see #203 for more context. +## Running helmfile without an Internet connection + +Once you download all required charts into your machine, you can run `helmfile charts` to deploy your apps. +It basically run only `helm upgrade --install` with your already-downloaded charts, hence no Internet connection is required. +See #155 for more information on this topic. + + ## Examples For more examples, see the [examples/README.md](https://github.com/roboll/helmfile/blob/master/examples/README.md) or the [`helmfile.d`](https://github.com/cloudposse/helmfiles/tree/master/helmfile.d) distribution of helmfiles by [Cloud Posse](https://github.com/cloudposse/).