[PR #954] [MERGED] new providers #1087

Closed
opened 2026-03-03 01:07:38 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/certimate-go/certimate/pull/954
Author: @fudiwei
Created: 9/5/2025
Status: Merged
Merged: 9/5/2025
Merged by: @fudiwei

Base: nextHead: dev


📝 Commits (6)

  • 395eb44 feat(provider): new acme dns-01 provider: vultr
  • 3d2f527 feat(provider): new ca provider: actalisssl
  • aaf4821 feat: upload certificate to cas first on deployment to aliyun cdn/dcdn
  • 145eada feat: webhook timeout
  • ed03acd feat: custom k8s secret annotations and labels
  • 9dcaf05 fix: #951

📊 Changes

43 files changed (+743 additions, -56 deletions)

View changed files

📝 go.mod (+1 -0)
📝 go.sum (+2 -0)
internal/certapply/applicators/sp_vultr.go (+29 -0)
📝 internal/certapply/config.go (+1 -0)
📝 internal/certdeploy/deployers/sp_aliyun_cdn.go (+1 -0)
📝 internal/certdeploy/deployers/sp_aliyun_dcdn.go (+1 -0)
📝 internal/certdeploy/deployers/sp_kubernetes_secret.go (+47 -0)
📝 internal/certdeploy/deployers/sp_webhook.go (+1 -0)
📝 internal/domain/access.go (+8 -0)
📝 internal/domain/provider.go (+4 -0)
📝 internal/notify/notifiers/sp_webhook.go (+1 -0)
📝 internal/workflow/service.go (+6 -2)
📝 pkg/core/notifier/providers/webhook/webhook.go (+6 -0)
pkg/core/ssl-applicator/acme-dns01/providers/vultr/vultr.go (+38 -0)
📝 pkg/core/ssl-deployer/providers/aliyun-cdn/aliyun_cdn.go (+45 -12)
📝 pkg/core/ssl-deployer/providers/aliyun-dcdn/aliyun_dcdn.go (+41 -12)
📝 pkg/core/ssl-deployer/providers/aliyun-ddos/aliyun_ddos.go (+1 -1)
📝 pkg/core/ssl-deployer/providers/aliyun-vod/aliyun_vod.go (+40 -12)
📝 pkg/core/ssl-deployer/providers/baotawaf-site/baotawaf_site.go (+2 -2)
📝 pkg/core/ssl-deployer/providers/k8s-secret/k8s_secret.go (+23 -0)

...and 23 more files

📄 Description

该 PR 包含以下内容变更:

  • feat: 新的 DNS-01 提供商:Vultr。
  • feat: 新的证书颁发机构:ActalisSSL。关闭 #929
  • feat: 部署到 Webhook 时支持配置超时。关闭 #882
  • feat: 部署到 Kubernetes Secret 时支持配置自定义注解 Annotations 和标签 Labels。关闭 #883
  • feat: 部署到阿里云 CDN/DCDN 时先上传到 CAS。关闭 #885

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/certimate-go/certimate/pull/954 **Author:** [@fudiwei](https://github.com/fudiwei) **Created:** 9/5/2025 **Status:** ✅ Merged **Merged:** 9/5/2025 **Merged by:** [@fudiwei](https://github.com/fudiwei) **Base:** `next` ← **Head:** `dev` --- ### 📝 Commits (6) - [`395eb44`](https://github.com/certimate-go/certimate/commit/395eb44b0678b4e985e68e9f72fa428f855a0aa9) feat(provider): new acme dns-01 provider: vultr - [`3d2f527`](https://github.com/certimate-go/certimate/commit/3d2f527d78a99df96e67659dcea3d38fafdf8efd) feat(provider): new ca provider: actalisssl - [`aaf4821`](https://github.com/certimate-go/certimate/commit/aaf48216af761d209eb204ab491d1cfd703d8188) feat: upload certificate to cas first on deployment to aliyun cdn/dcdn - [`145eada`](https://github.com/certimate-go/certimate/commit/145eadad2f88da66e882c3d6d791af305dbea813) feat: webhook timeout - [`ed03acd`](https://github.com/certimate-go/certimate/commit/ed03acd5a23b20f948d1795a77b507fab5c4aab7) feat: custom k8s secret annotations and labels - [`9dcaf05`](https://github.com/certimate-go/certimate/commit/9dcaf05b88da1936690132b6818ada8ed57b1914) fix: #951 ### 📊 Changes **43 files changed** (+743 additions, -56 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+1 -0) 📝 `go.sum` (+2 -0) ➕ `internal/certapply/applicators/sp_vultr.go` (+29 -0) 📝 `internal/certapply/config.go` (+1 -0) 📝 `internal/certdeploy/deployers/sp_aliyun_cdn.go` (+1 -0) 📝 `internal/certdeploy/deployers/sp_aliyun_dcdn.go` (+1 -0) 📝 `internal/certdeploy/deployers/sp_kubernetes_secret.go` (+47 -0) 📝 `internal/certdeploy/deployers/sp_webhook.go` (+1 -0) 📝 `internal/domain/access.go` (+8 -0) 📝 `internal/domain/provider.go` (+4 -0) 📝 `internal/notify/notifiers/sp_webhook.go` (+1 -0) 📝 `internal/workflow/service.go` (+6 -2) 📝 `pkg/core/notifier/providers/webhook/webhook.go` (+6 -0) ➕ `pkg/core/ssl-applicator/acme-dns01/providers/vultr/vultr.go` (+38 -0) 📝 `pkg/core/ssl-deployer/providers/aliyun-cdn/aliyun_cdn.go` (+45 -12) 📝 `pkg/core/ssl-deployer/providers/aliyun-dcdn/aliyun_dcdn.go` (+41 -12) 📝 `pkg/core/ssl-deployer/providers/aliyun-ddos/aliyun_ddos.go` (+1 -1) 📝 `pkg/core/ssl-deployer/providers/aliyun-vod/aliyun_vod.go` (+40 -12) 📝 `pkg/core/ssl-deployer/providers/baotawaf-site/baotawaf_site.go` (+2 -2) 📝 `pkg/core/ssl-deployer/providers/k8s-secret/k8s_secret.go` (+23 -0) _...and 23 more files_ </details> ### 📄 Description 该 PR 包含以下内容变更: - **feat**: 新的 DNS-01 提供商:Vultr。 - **feat**: 新的证书颁发机构:ActalisSSL。关闭 #929 - **feat**: 部署到 Webhook 时支持配置超时。关闭 #882 - **feat**: 部署到 Kubernetes Secret 时支持配置自定义注解 Annotations 和标签 Labels。关闭 #883 - **feat**: 部署到阿里云 CDN/DCDN 时先上传到 CAS。关闭 #885 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 01:07:38 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/certimate#1087
No description provided.