Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions docs/istio/05-letsencrypt-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Install cert-manager's CRDs:
```bash
CERT_REPO=https://raw.githubusercontent.com/jetstack/cert-manager

kubectl apply -f ${CERT_REPO}/release-0.7/deploy/manifests/00-crds.yaml
kubectl apply -f ${CERT_REPO}/release-0.9/deploy/manifests/00-crds.yaml
```

Create the cert-manager namespace and disable resource validation:
Expand All @@ -87,10 +87,7 @@ Install cert-manager with Helm:
```bash
helm repo add jetstack https://charts.jetstack.io && \
helm repo update && \
helm upgrade -i cert-manager \
--namespace cert-manager \
--version v0.7.0 \
jetstack/cert-manager
helm install cert-manager jetstack/cert-manager --namespace cert-manager --version v0.9.0
```

Create a letsencrypt issuer for CloudDNS (replace `[email protected]` with a valid email address and `my-gcp-project` with your project ID):
Expand Down