Skip to content

p-v-a/cert-manager-webhook-godaddy

 
 

Repository files navigation

GoDaddy webhook for cert-manager

This is a webhook solver for GoDaddy.

Docker Repository on Quay

Requirements

Installing

helm repo add godaddy-webhook https://raw.githubusercontent.com/neoGeneva/cert-manager-webhook-godaddy/master/deploy/repo
helm repo update
helm install --namespace cert-manager cert-manager-webhook-godaddy godaddy-webhook/cert-manager-webhook-godaddy

Configuration

  1. Generate API Key and Token from GoDaddy https://developer.godaddy.com/
  2. Create secret to store the API Token
kubectl --namespace cert-manager create secret generic \
    godaddy-api-key --from-literal=key='<GODADDY_AUTH_KEY>'
  1. Configure your ClusterIssuer to reference the GoDaddy webhook.
apiVersion: cert-manager.io/v1alpha2
kind: ClusterIssuer
metadata:
  name: ...
spec:
  acme:
    solvers:
    - dns01:
        webhook:
          groupName: acme.blackhouse.dev
          solverName: godaddy
          config:
            authAPIKey: <GODADDY_AUTH_TOKEN>
            authAPISecretRef:
              name: godaddy-api-key
              key: key

Development

All DNS providers must run the DNS01 provider conformance testing suite, else they will have undetermined behaviour when used with cert-manager.

It is essential that you configure and run the test suite when creating a DNS01 webhook.

An example Go test file has been provided in main_test.go.

Before you can run the test suite, you need to download the test binaries:

./scripts/fetch-test-binaries.sh

Then create testdata/my-custom-solver/config.json and testdata/my-custom-solver/api-key.yaml to setup the configs, using the *.sample files a reference

Now you can run the test suite with:

TEST_ZONE_NAME=example.com. go test .

About

A cert-manager GoDaddy ACME DNS01 solver webhook

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 54.4%
  • Dockerfile 18.9%
  • Mustache 9.2%
  • Shell 8.5%
  • Starlark 6.5%
  • Makefile 2.5%