From 11d6d3da0dec645c60c9cbb91b81f591d62c122a Mon Sep 17 00:00:00 2001 From: James Munnelly Date: Thu, 18 Jan 2018 16:57:47 +0000 Subject: [PATCH] Update deploying.md to include git clone --- docs/user-guides/deploying.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/docs/user-guides/deploying.md b/docs/user-guides/deploying.md index 1a55d97ba..b032fe9a3 100644 --- a/docs/user-guides/deploying.md +++ b/docs/user-guides/deploying.md @@ -21,9 +21,19 @@ RBAC can be found [here](https://github.com/kubernetes/helm/blob/master/docs/rba ### Step 1 - deploying cert-manager -To deploy the latest version of cert-manager using Helm, run: +To deploy the latest version of cert-manager using Helm you will first need to +clone this repository: +```bash +$ git clone https://github.com/jetstack/cert-manager +$ cd cert-manager +# check out the latest release tag to ensure we use a supported version of cert-manager +$ git checkout v0.2.3 ``` + +We can then go ahead and install the bundled chart: + +```bash $ helm install \ --name cert-manager \ --namespace kube-system \