From 37c584cd39ae82533eecd7e0fc9c129a2ac285d7 Mon Sep 17 00:00:00 2001 From: Martin Bergljung Date: Mon, 13 May 2019 09:23:06 +0100 Subject: [PATCH 1/3] Need an empty prefix for the sed command to work on Mac --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ddd8b9e..9046ba7 100644 --- a/README.md +++ b/README.md @@ -285,7 +285,7 @@ Pull the minimal values file from the current repo: ```bash curl -O https://raw.githubusercontent.com/Alfresco/alfresco-dbp-deployment/master/charts/incubator/alfresco-dbp/minimal-values.yaml -sed -i s/REPLACEME/$LOCALIP/g minimal-values.yaml +sed -i "" s/REPLACEME/$LOCALIP/g minimal-values.yaml ``` ### 11. Deploy the DBP From 466c538c3b60f4f35f427bf7765a678e580ce5d3 Mon Sep 17 00:00:00 2001 From: Martin Bergljung Date: Mon, 13 May 2019 09:47:14 +0100 Subject: [PATCH 2/3] Make sure to run helm update before installation so you are using latest helm charts --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 9046ba7..bb19782 100644 --- a/README.md +++ b/README.md @@ -290,6 +290,11 @@ sed -i "" s/REPLACEME/$LOCALIP/g minimal-values.yaml ### 11. Deploy the DBP +```bash +# Make sure you have the latest Helm charts locally +helm update +``` + ```bash # From within the same folder as your minimal-values file helm install alfresco-incubator/alfresco-dbp -f minimal-values.yaml From 128e7efaa7fc943e719c7c69661750985c6f8f0f Mon Sep 17 00:00:00 2001 From: Martin Bergljung Date: Tue, 14 May 2019 09:26:18 +0100 Subject: [PATCH 3/3] Updated 'helm update' instruction to 'helm repo update' --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bb19782..1ea5568 100644 --- a/README.md +++ b/README.md @@ -292,7 +292,7 @@ sed -i "" s/REPLACEME/$LOCALIP/g minimal-values.yaml ```bash # Make sure you have the latest Helm charts locally -helm update +helm repo update ``` ```bash