Skip to content

Commit

Permalink
Updating cert-manager instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
cniackz committed Oct 31, 2023
1 parent 9089b82 commit 9d24702
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/cert-manager.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ Then it creates a new tenant including the new `tenant-certmanager-tls` secret i
Copy the cert-manager CA from the tenant certificate, this will allow Operator to trust the cert-manager CA and allow Operator to trust the Tenant certificate

```sh
kubectl get secrets -n tenant-certmanager tenant-certmanager-tls -o=jsonpath='{.data.ca\.crt}' | base64 -d > ca.crt
kubectl get secrets -n tenant-certmanager tenant-certmanager-tls -o=jsonpath='{.data.ca\.crt}' | base64 -d > public.crt
```

Create the secret

```sh
kubectl create secret generic operator-ca-tls --from-file=ca.crt -n minio-operator
kubectl create secret generic operator-ca-tls --from-file=public.crt -n minio-operator
```

Restart the minio-operator
Expand Down

0 comments on commit 9d24702

Please sign in to comment.