{"id":21385351,"url":"https://github.com/touchifyapp/cert-manager-webhook-scaleway","last_synced_at":"2025-07-03T17:34:13.397Z","repository":{"id":98958687,"uuid":"298862053","full_name":"touchifyapp/cert-manager-webhook-scaleway","owner":"touchifyapp","description":"ACME webhook for Scaleway DNS","archived":false,"fork":false,"pushed_at":"2020-09-26T20:16:39.000Z","size":87,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-22T23:42:18.668Z","etag":null,"topics":["acme","cert-manager","cert-manager-webhook","letsencrypt","scaleway","scaleway-dns"],"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/touchifyapp.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-09-26T17:08:54.000Z","updated_at":"2020-11-03T21:10:19.000Z","dependencies_parsed_at":null,"dependency_job_id":"91cbed9a-4e37-4725-bf0a-9e320445c4db","html_url":"https://github.com/touchifyapp/cert-manager-webhook-scaleway","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touchifyapp%2Fcert-manager-webhook-scaleway","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touchifyapp%2Fcert-manager-webhook-scaleway/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touchifyapp%2Fcert-manager-webhook-scaleway/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touchifyapp%2Fcert-manager-webhook-scaleway/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/touchifyapp","download_url":"https://codeload.github.com/touchifyapp/cert-manager-webhook-scaleway/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243864626,"owners_count":20360355,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["acme","cert-manager","cert-manager-webhook","letsencrypt","scaleway","scaleway-dns"],"created_at":"2024-11-22T11:46:57.675Z","updated_at":"2025-03-16T11:44:36.374Z","avatar_url":"https://github.com/touchifyapp.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ACME webhook for Scaleway DNS\n\nThis webhook allows Scaleway users to use the DNS01 challenge solving when using `cert-manager` in kubernetes.\n\n## Installation\n\nTo install with helm, run:\n\n```bash\n$ git clone https://github.com/touchifyapp/cert-manager-webhook-scaleway.git\n$ cd cert-manager-webhook-scaleway/deploy/cert-manager-webhook-scaleway\n$ helm install --name cert-manager-webhook-scaleway .\n```\n\nWithout helm, use:\n\n```bash\n$ make rendered-manifest.yaml\n$ kubectl apply -f _out/rendered-manifest.yaml\n```\n\n## Configuration\n\n### Generate your secret key\n\nLogin to your Scaleway account and create a token from the `credentials` page. A `secret_key` and an `access_key` will be displayed on your screen, the `secret_key` will be used in your `kubernetes` secret.\n\nReference: https://www.scaleway.com/docs/generate-an-api-token/\n\n### Create a kubernetes secret\n\n```yaml\napiVersion: v1\nkind: Secret\nmetadata:\n  name: scaleway-secret-key\ntype: Opaque\nstringData:\n  token: SECRET_KEY_FROM_SCALEWAY\n```\n\n### Create a new Issuer/ClusterIssuer\n\n```yaml\napiVersion: cert-manager.io/v1\nkind: Issuer\nmetadata:\n  name: letsencrypt-scaleway\n  namespace: default\nspec:\n  acme:\n    server: https://acme-staging-v02.api.letsencrypt.org/directory\n    email: certmaster@company.com\n    privateKeySecretRef:\n      name: letsencrypt-scaleway-account-key\n    solvers:\n    - dns01:\n        webhook:\n          groupName: acme.company.com\n          solverName: scaleway\n          config:\n            organizationId: 12345678-1234-1234-1234-123456789012\n            secretKeySecretRef:\n              name: scaleway-secret-key\n              key: token\n```\n\n### Testing your issuer\n\n```yaml\napiVersion: cert-manager.io/v1alpha2\nkind: Certificate\nmetadata:\n  name: test-letsencrypt-crt\n  namespace: default\nspec:\n  secretName: company-com-tls\n  commonName: company.com\n  issuerRef:\n    name: letsencrypt-scaleway\n    kind: Issuer\n  dnsNames:\n  - company.com\n  - www.company.com\n```\n\n## Contributing\n\n### Running the test suite\n\nFirst, you need to provide your own secret key:\n1. Generate your secret key as explained below ([more info](#generate-your-secret-key))\n2. Fill in the appropriate values in `testdata/scaleway-solver/secretkey.yml` and `testdata/scaleway-solver/config.json`\n\nThen, you can run the test suite with:\n\n```bash\n$ TEST_ZONE_NAME=example.com. make verify\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftouchifyapp%2Fcert-manager-webhook-scaleway","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftouchifyapp%2Fcert-manager-webhook-scaleway","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftouchifyapp%2Fcert-manager-webhook-scaleway/lists"}