diff --git a/docs/content/usage/integrations/cert-manager.md b/docs/content/usage/integrations/cert-manager.md index 831927df1..d4922079c 100644 --- a/docs/content/usage/integrations/cert-manager.md +++ b/docs/content/usage/integrations/cert-manager.md @@ -7,15 +7,25 @@ weight: 10 # Cert-Manager Integration -1. **Install cert-manager** in your Kubernetes cluster, where kube-bind backend is running, if you haven't already. You can follow the official installation guide [here](https://cert-manager.io/docs/installation/kubernetes/). +## Setup -2. **Add kube-bind export label** to certificate CRD. +The following sections will guide you through the one-time setup that is required for providing +certificates using cert-manager and kube-bind. + +### Install cert-manager + +Install cert-manager in your Kubernetes cluster, where kube-bind backend is running, if you haven't +already. You can follow the [official installation guide](https://cert-manager.io/docs/installation/kubernetes/). + +### Export the Certificate CRD + +To export the cert-manager `Certificate` CRD, add the kube-bind export label to it: ```bash kubectl label crd certificates.cert-manager.io kube-bind.io/exported=true --overwrite ``` -3. **Create SelfSigned issuer** in the provider cluster. +### Create a SelfSigned Issuer ```yaml kubectl apply -f - <