sigs.k8s.io/cluster-api-provider-azure@v1.14.3/tilt_modules/cert_manager/README.md (about) 1 # Cert-manager 2 3 This extension deploys cert-manager. 4 5 ## Usage 6 7 Basic usage 8 9 ``` 10 load('ext://cert_manager', 'deploy_cert_manager') 11 12 deploy_cert_manager() 13 ``` 14 15 This will deploy cert-manager to your cluster and check that it actually works. 16 17 If working with Kind, it's possible to pass `load_to_kind=True` to `deploy_cert_manager` so 18 all the cert-manager images will be pre-pulled to your local environment and then loaded into Kind before installing. 19 This speeds up your workflow if you're repeatedly destroying and recreating your kind cluster, as it doesn't 20 have to pull the images over the network each time. 21 22 The full list of parameters accepted by `deploy_cert_manager` includes: 23 - `registry` from which images should be pulled, defaults to `quay.io/jetstack` 24 - `version` of cert-manager to install, defaults to `v1.3.1` 25 - `load_to_kind` (see above), defaults to `False` 26 - `kind_cluster_name`, defaults to `kind`