From ff7ea994275edb2da77bb294ac157bcff65459d0 Mon Sep 17 00:00:00 2001 From: Max Wittig Date: Tue, 9 Oct 2018 10:48:50 +0200 Subject: [PATCH] docs(install): use classic argument for snap installation Otherwise this error message will pop up on ubuntu 18.04 LTS ```txt error: This revision of snap "helm" was published using classic confinement and thus may perform arbitrary system changes outside of the security sandbox that snaps are usually confined to, which may put your system at risk. If you understand and want to proceed repeat the command including --classic. ``` Signed-off-by: Max Wittig --- docs/install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/install.md b/docs/install.md index 96d9bc9f7..241961c59 100755 --- a/docs/install.md +++ b/docs/install.md @@ -30,7 +30,7 @@ The Snap package for Helm is maintained by [Snapcrafters](https://github.com/snapcrafters/helm). ``` -$ sudo snap install helm +$ sudo snap install helm --classic ``` ### From Homebrew (macOS)