Skip to content

Commit

Permalink
Add cert-manager installation in the dev-setup doc
Browse files Browse the repository at this point in the history
We are missing a step to install cert-manager. This patch addresses
it.
  • Loading branch information
fmuyassarov committed Oct 10, 2021
1 parent 3820040 commit 9dfb119
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docs/dev-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,24 @@
kubectl create namespace baremetal-operator-system
```

1. Install cert-manager

```bash
kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.5.4/cert-manager.yaml
```

1. Verify that it is deployed correctly. Note: don't move to the
next step before you see all three pods in Running state.

```
kubectl get pods --namespace cert-manager
NAME READY STATUS RESTARTS AGE
cert-manager-5c6866597-zw7kh 1/1 Running 0 2m
cert-manager-cainjector-577f6d9fd7-tr77l 1/1 Running 0 2m
cert-manager-webhook-787858fcdb-nlzsq 1/1 Running 0 2m
```

1. Install operator in the cluster

```bash
Expand Down

0 comments on commit 9dfb119

Please sign in to comment.