{"id":19349468,"url":"https://github.com/moficodes/cert-manager-webhook-dnsimple","last_synced_at":"2026-05-07T16:44:10.603Z","repository":{"id":57528931,"uuid":"256379102","full_name":"moficodes/cert-manager-webhook-dnsimple","owner":"moficodes","description":"cert-manager-webhook for dnsimple.","archived":false,"fork":false,"pushed_at":"2020-04-23T19:12:02.000Z","size":46763,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-24T10:19:31.485Z","etag":null,"topics":["cert-manager","cert-manager-webhook","dnsimple"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/moficodes.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-04-17T02:17:23.000Z","updated_at":"2020-04-23T19:32:35.000Z","dependencies_parsed_at":"2022-09-10T17:11:14.185Z","dependency_job_id":null,"html_url":"https://github.com/moficodes/cert-manager-webhook-dnsimple","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/moficodes/cert-manager-webhook-dnsimple","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moficodes%2Fcert-manager-webhook-dnsimple","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moficodes%2Fcert-manager-webhook-dnsimple/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moficodes%2Fcert-manager-webhook-dnsimple/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moficodes%2Fcert-manager-webhook-dnsimple/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/moficodes","download_url":"https://codeload.github.com/moficodes/cert-manager-webhook-dnsimple/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moficodes%2Fcert-manager-webhook-dnsimple/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32746857,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-07T02:14:30.463Z","status":"ssl_error","status_checked_at":"2026-05-07T02:14:29.405Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cert-manager","cert-manager-webhook","dnsimple"],"created_at":"2024-11-10T04:26:29.095Z","updated_at":"2026-05-07T16:44:10.582Z","avatar_url":"https://github.com/moficodes.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DNSIMPLE Webhook for Cert Manager\n\nThis is a webhook solver for [dnsimple](https://dnsimple.com/).\n\n## Prerequisites\n\n* [cert-manager](https://github.com/jetstack/cert-manager) version 0.13.0 or higher (*tested with 0.14.0*):\n  - [Installing on Kubernetes](https://cert-manager.io/docs/installation/kubernetes/#installing-with-helm)\n\n## Installation\nAdd the helm repo\n```bash\nhelm repo add dnsimple-webhook https://moficodes.github.io/cert-manager-webhook-dnsimple\n```\n\nCheck that the repo was added\n```bash\nhelm repo list\n```\n\nInstall the helm chart\n```bash\nhelm install dnsimple dnsimple-webhook/cert-manager-webhook-dnsimple -n cert-manager\n```\n\nIf you customized the installation of cert-manager, you may need to also set the `certManager.namespace` and `certManager.serviceAccountName` values.\n```\nhelm install dnsimple dnsimple-webhook/cert-manager-webhook-dnsimple -n \u003ccustom-ns\u003e --set certManager.namespace=\u003ccustom-ns\u003e --set certManager.serviceAccountName=\u003ccustom-sa\u003e\n```\n\n\n## Issuer\n\n1. [Create a new DNSimple Api Token](https://support.dnsimple.com/articles/api-access-token/).\n\n2. Create a secret to store your application secret:\n\n    ```bash\n    kubectl create secret generic dnsimple-credentials \\\n      --from-literal=accessToken='\u003cDNSimple-access-token\u003e'\n    ```\n\n3. Create a certificate issuer:\n\n    ```yaml\n    apiVersion: certmanager.k8s.io/v1alpha1\n    kind: Issuer\n    metadata:\n      name: letsencrypt\n    spec:\n      acme:\n        server: https://acme-v02.api.letsencrypt.org/directory\n        email: '\u003cYOUR_EMAIL_ADDRESS\u003e'\n        privateKeySecretRef:\n          name: letsencrypt-account-key\n        solvers:\n        - dns01:\n            webhook:\n              groupName: 'acme.moficodes.com'\n              solverName: dnsimple\n              config:\n                accountId: '\u003caccount-id\u003e'\n                accessTokenSecretRef:\n                  key: accessToken\n                  name: dnsimple-credentials\n    ```\n\n## Certificate\nLets encrypt can automatically issue certs based on annotations. As discussed [here](https://cert-manager.io/docs/usage/ingress/#how-it-works)\n\nOr you can manually deploy a cert.\n\nIssue a certificate:\n\n```yaml\napiVersion: certmanager.k8s.io/v1alpha1\nkind: Certificate\nmetadata:\n  name: example-com\nspec:\n  dnsNames:\n  - example.com\n  - *.example.com\n  issuerRef:\n    name: letsencrypt\n  secretName: example-com-tls\n```\n\n## Development\n\nAll DNS providers **must** run the DNS01 provider conformance testing suite,\nelse they will have undetermined behaviour when used with cert-manager.\n\n**It is essential that you configure and run the test suite when creating a\nDNS01 webhook.**\n\nAn example Go test file has been provided in [main_test.go]().\n\nBefore you can run the test suite, you need to download the test binaries:\n\n```bash\n./scripts/fetch-test-binaries.sh\n```\n\nThen duplicate the `*.sample` files in `testdata/dnsimple/` and update the configuration with the appropriate DNSIMPLE credentials.\n\nNow you can run the test suite with:\n\n```bash\nTEST_ZONE_NAME=example.com. go test .\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoficodes%2Fcert-manager-webhook-dnsimple","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmoficodes%2Fcert-manager-webhook-dnsimple","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoficodes%2Fcert-manager-webhook-dnsimple/lists"}