mirror of
https://github.com/cert-manager/webhook-example.git
synced 2025-08-22 20:22:51 +02:00
Improve documentation of groupName in the helm values.
Signed-off-by: Niklas Beierl <22919961+NiklasBeierl@users.noreply.github.com>
This commit is contained in:
parent
0dcb653740
commit
661c9d80dd
2 changed files with 13 additions and 6 deletions
|
@ -36,6 +36,11 @@ webhook to complete ACME challenge validations and obtain certificates.
|
||||||
To make the set up of these webhook's easier, we provide a template repository
|
To make the set up of these webhook's easier, we provide a template repository
|
||||||
that can be used to get started quickly.
|
that can be used to get started quickly.
|
||||||
|
|
||||||
|
When implementing your webhook, you should set the `groupName` in the
|
||||||
|
[values.yml](deploy/example-webhook/values.yaml) of your chart to a domain name that
|
||||||
|
you - as the webhook-author - own. It should not need to be adjusted by the users of
|
||||||
|
your chart.
|
||||||
|
|
||||||
### Creating your own repository
|
### Creating your own repository
|
||||||
|
|
||||||
### Running the test suite
|
### Running the test suite
|
||||||
|
|
|
@ -1,11 +1,13 @@
|
||||||
# The GroupName here is used to identify your company or business unit that
|
# The groupName avoids naming conflicts on the Kubernetes API, it should be set by the
|
||||||
# created this webhook.
|
# author of the webhook a unique domain that the author owns. For
|
||||||
# For example, this may be "acme.mycompany.com".
|
# example: some-provider-webhook.mycompany.tld , or
|
||||||
# This name will need to be referenced in each Issuer's `webhook` stanza to
|
# some-provider-webhook.mypersonalsite.tld if your webhook is a personal open-source
|
||||||
|
# project.
|
||||||
|
# Once set to a unique domain name by the webhook author, it does not need to be further
|
||||||
|
# adjusted by the users of a webhook chart!
|
||||||
|
# The name will need to be referenced in each Issuer's `webhook` stanza to
|
||||||
# inform cert-manager of where to send ChallengePayload resources in order to
|
# inform cert-manager of where to send ChallengePayload resources in order to
|
||||||
# solve the DNS01 challenge.
|
# solve the DNS01 challenge.
|
||||||
# This group name should be **unique**, hence using your own company's domain
|
|
||||||
# here is recommended.
|
|
||||||
groupName: acme.mycompany.com
|
groupName: acme.mycompany.com
|
||||||
|
|
||||||
certManager:
|
certManager:
|
||||||
|
|
Loading…
Reference in a new issue