{"id":24841370,"url":"https://github.com/jamesorlakin/cert-manager-cpanel-dns-webhook","last_synced_at":"2026-03-01T03:32:33.041Z","repository":{"id":60578498,"uuid":"477687288","full_name":"jamesorlakin/cert-manager-cpanel-dns-webhook","owner":"jamesorlakin","description":"A cert-manager ACME DNS resolver that uses the CPanel UAPI to handle domains using CPanel for DNS","archived":false,"fork":false,"pushed_at":"2024-10-29T23:29:31.000Z","size":115,"stargazers_count":12,"open_issues_count":0,"forks_count":6,"subscribers_count":3,"default_branch":"master","last_synced_at":"2026-02-11T01:16:42.712Z","etag":null,"topics":["cert-manager","cert-manager-webhook","cpanel","hacktoberfest","kubernetes"],"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/jamesorlakin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-04-04T12:18:15.000Z","updated_at":"2025-07-25T00:05:41.000Z","dependencies_parsed_at":"2025-10-14T13:31:45.229Z","dependency_job_id":"e87848b0-b36b-4924-9513-da6928b2d877","html_url":"https://github.com/jamesorlakin/cert-manager-cpanel-dns-webhook","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/jamesorlakin/cert-manager-cpanel-dns-webhook","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamesorlakin%2Fcert-manager-cpanel-dns-webhook","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamesorlakin%2Fcert-manager-cpanel-dns-webhook/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamesorlakin%2Fcert-manager-cpanel-dns-webhook/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamesorlakin%2Fcert-manager-cpanel-dns-webhook/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jamesorlakin","download_url":"https://codeload.github.com/jamesorlakin/cert-manager-cpanel-dns-webhook/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamesorlakin%2Fcert-manager-cpanel-dns-webhook/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29959374,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T01:47:18.291Z","status":"online","status_checked_at":"2026-03-01T02:00:07.437Z","response_time":124,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","cpanel","hacktoberfest","kubernetes"],"created_at":"2025-01-31T07:17:14.512Z","updated_at":"2026-03-01T03:32:32.999Z","avatar_url":"https://github.com/jamesorlakin.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cert-manager CPanel DNS Webhook\n\nA simple webhook DNS solver for cert-manager using the [CPanel UAPI](https://api.docs.cpanel.net/openapi/cpanel/operation/dns-mass_edit_zone/) for those of us stuck using their webhost's CPanel for DNS.\n\nThis is based off the [example](https://github.com/cert-manager/webhook-example) webhook.\n\n## Getting started\n\n1. Install `cert-manager`. This was developed when running v1.8 but it should work reasonably across versions. This is assumed to be in the `cert-manager` namespace, if not you'll need to tweak the Helm values.\n2. Install this webhook. There's a Helm chart in `deploy/chart` (`helm install cpanel-webhook .`), or `kubectl apply -f https://raw.githubusercontent.com/jamesorlakin/cert-manager-cpanel-dns-webhook/master/deploy/v0.3.0.yaml` will install this in the `cert-manager` namespace.\n3. Create a secret containing your CPanel credentials.\n    ```yaml\n    apiVersion: v1\n    kind: Secret\n    type: Opaque\n    metadata:\n      name: some-cpanel-credentials\n      namespace: cert-manager\n    stringData:\n      username: my-cpanel-user\n      password: my-cpanel-password\n      # Or, instead of a password in v0.2.0+, create and use an API token from CPanel's Security section:\n      apiToken: ABCDEF1234567890ABCDEFABCDEF1234567890\n    ```\n4. Create an ACME issuer referencing the webhook, e.g.:\n    ```yaml\n    apiVersion: cert-manager.io/v1\n    kind: ClusterIssuer\n    metadata:\n      name: letsencrypt-staging\n    spec:\n      acme:\n        server: https://acme-staging-v02.api.letsencrypt.org/directory\n        email: my-acme-email@yourself.com\n        privateKeySecretRef:\n          name: letsencrypt-staging\n        solvers:\n        - dns01:\n            # The fun bit:\n            webhook:\n              groupName: jameslakin.co.uk # Must match the group name in the Helm chart (this is the default and shouldn't need changing to your own domain)\n              solverName: cpanel-solver # Don't change\n              config:\n                cpanelUrl: https://cpanel.my-super-website.com # No trailing slash\n                secretRef: cert-manager/some-cpanel-credentials # In the form namespace/secret-name\n    ```\n5. ...issue certificates:\n    ```yaml\n    apiVersion: cert-manager.io/v1\n    kind: Certificate\n    metadata:\n      name: example-cpanel-cert\n    spec:\n      secretName: example-cpanel-cert\n      issuerRef:\n        name: letsencrypt-staging\n        kind: ClusterIssuer\n      dnsNames:\n      - '*.whatever.my-super-website.com'\n    ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjamesorlakin%2Fcert-manager-cpanel-dns-webhook","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjamesorlakin%2Fcert-manager-cpanel-dns-webhook","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjamesorlakin%2Fcert-manager-cpanel-dns-webhook/lists"}