mirror of
https://github.com/cert-manager/webhook-example.git
synced 2025-07-04 07:35:49 +02:00
doc: add certificate creation to README
This commit is contained in:
parent
588325118e
commit
f703e54983
1 changed files with 29 additions and 11 deletions
24
README.md
24
README.md
|
@ -12,7 +12,7 @@ A [cert-manager][2] ACME DNS01 solver webhook for [DNSimple][1].
|
||||||
|
|
||||||
Take note of your DNSimple API token and account ID from the account settings in the automation tab. Run the following commands replacing the account ID, API token placeholders and email address:
|
Take note of your DNSimple API token and account ID from the account settings in the automation tab. Run the following commands replacing the account ID, API token placeholders and email address:
|
||||||
|
|
||||||
```
|
```bash
|
||||||
$ helm install cert-manager-webhook-dnsimple \
|
$ helm install cert-manager-webhook-dnsimple \
|
||||||
--namespace cert-manager \
|
--namespace cert-manager \
|
||||||
--dry-run \
|
--dry-run \
|
||||||
|
@ -24,12 +24,31 @@ $ helm install cert-manager-webhook-dnsimple \
|
||||||
./deploy/dnsimple
|
./deploy/dnsimple
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Afterwards issue a certificate:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ cat << EOF | kubectl apply -f -
|
||||||
|
apiVersion: cert-manager.io/v1alpha3
|
||||||
|
kind: Certificate
|
||||||
|
metadata:
|
||||||
|
name: dnsimple-test
|
||||||
|
namespace: default
|
||||||
|
spec:
|
||||||
|
dnsNames:
|
||||||
|
- test.example.com
|
||||||
|
issuerRef:
|
||||||
|
name: cert-manager-webhook-dnsimple-production
|
||||||
|
kind: ClusterIssuer
|
||||||
|
secretName: dnsimple-test-tls
|
||||||
|
EOF
|
||||||
|
```
|
||||||
|
|
||||||
## Options
|
## Options
|
||||||
|
|
||||||
The Helm chart accepts the following values:
|
The Helm chart accepts the following values:
|
||||||
|
|
||||||
| name | required | description | default value |
|
| name | required | description | default value |
|
||||||
|----------------------------------- | -------- | ----------------------------------------------- |---------------------------------------- |
|
| ---------------------------------- | -------- | ----------------------------------------------- | --------------------------------------- |
|
||||||
| `dnsimple.account` | ✔️ | DNSimple Account ID | _empty_ |
|
| `dnsimple.account` | ✔️ | DNSimple Account ID | _empty_ |
|
||||||
| `dnsimple.token` | ✔️ | DNSimple API Token | _empty_ |
|
| `dnsimple.token` | ✔️ | DNSimple API Token | _empty_ |
|
||||||
| `clusterIssuer.email` | | LetsEncrypt Admin Email | `name@example.com` |
|
| `clusterIssuer.email` | | LetsEncrypt Admin Email | `name@example.com` |
|
||||||
|
@ -43,7 +62,6 @@ The Helm chart accepts the following values:
|
||||||
| `certManager.namespace` | ✔️ | The namespace cert-manager was installed to | `cert-manager` |
|
| `certManager.namespace` | ✔️ | The namespace cert-manager was installed to | `cert-manager` |
|
||||||
| `certManager.serviceAccountName` | ✔️ | The service account cert-manager runs under | `cert-manager` |
|
| `certManager.serviceAccountName` | ✔️ | The service account cert-manager runs under | `cert-manager` |
|
||||||
|
|
||||||
|
|
||||||
## Test suite
|
## Test suite
|
||||||
|
|
||||||
All cert-manager webhooks have to pass the DNS01 provider conformance testing suite. To run that test suite on this plug-in download the test binaries:
|
All cert-manager webhooks have to pass the DNS01 provider conformance testing suite. To run that test suite on this plug-in download the test binaries:
|
||||||
|
|
Loading…
Reference in a new issue