Skip to content
This repository has been archived by the owner on Jul 1, 2022. It is now read-only.

Commit

Permalink
Merge pull request #65 from ksix/master
Browse files Browse the repository at this point in the history
HOL step-by-step - fixed cert-manager install
  • Loading branch information
DawnmarieDesJardins committed Feb 15, 2019
2 parents 2c53888 + a8a9f63 commit 447d7ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Hands-on lab/HOL step-by-step - Containers and DevOps.md
Expand Up @@ -1975,7 +1975,7 @@ In this task you will setup a Kubernetes Ingress to take advantage of path based
10. Use helm to install `cert-manager`; a tool that can provision SSL certificates automatically from letsencrypt.org.

```bash
helm install --name cert-manager --namespace kube-system --set rbac.create=false stable/cert-manager
helm install --name cert-manager --namespace kube-system --set rbac.create=false --version v0.5.2 stable/cert-manager
```

11. Cert manager will need a custom ClusterIssuer resource to handle requesting SSL certificates.
Expand Down Expand Up @@ -2016,7 +2016,7 @@ In this task you will setup a Kubernetes Ingress to take advantage of path based
14. Update the cert-manager to use the ClusterIssuer by default.

```bash
helm upgrade cert-manager stable/cert-manager --namespace kube-system --set rbac.create=false --set ingressShim.defaultIssuerName=letsencrypt-prod --set ingressShim.defaultIssuerKind=ClusterIssuer
helm upgrade cert-manager stable/cert-manager --namespace kube-system --set rbac.create=false --version v0.5.2 --set ingressShim.defaultIssuerName=letsencrypt-prod --set ingressShim.defaultIssuerKind=ClusterIssuer
```

15. Now you can create an ingress resource for the content applications.
Expand Down

0 comments on commit 447d7ac

Please sign in to comment.