[PR #415] [MERGED] feat: more providers #945

Closed
opened 2026-03-03 01:06:57 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/certimate-go/certimate/pull/415
Author: @fudiwei
Created: 1/13/2025
Status: Merged
Merged: 1/14/2025
Merged by: @usual2970

Base: nextHead: feat/new-workflow


📝 Commits (6)

  • 21cc1d4 feat: support sni domain on deployment to aliyun clb & alb
  • 7160589 refactor: clean code
  • 8aa5c3c refactor: clean code
  • 643d820 feat: add aliyun live deployer
  • ab1c9bf feat: add tencentcloud css deployer
  • 70b8aaf update README

📊 Changes

48 files changed (+1250 additions, -401 deletions)

View changed files

📝 README.md (+63 -34)
📝 README_EN.md (+49 -20)
📝 go.mod (+4 -2)
📝 go.sum (+10 -3)
📝 internal/deployer/providers.go (+27 -7)
📝 internal/domain/access.go (+1 -1)
📝 internal/domain/provider.go (+2 -0)
📝 internal/pkg/core/deployer/providers/aliyun-alb/aliyun_alb.go (+207 -49)
📝 internal/pkg/core/deployer/providers/aliyun-alb/aliyun_alb_test.go (+7 -1)
📝 internal/pkg/core/deployer/providers/aliyun-clb/aliyun_clb.go (+81 -66)
📝 internal/pkg/core/deployer/providers/aliyun-clb/aliyun_clb_test.go (+7 -1)
internal/pkg/core/deployer/providers/aliyun-live/aliyun_live.go (+116 -0)
internal/pkg/core/deployer/providers/aliyun-live/aliyun_live_test.go (+75 -0)
📝 internal/pkg/core/deployer/providers/aliyun-nlb/aliyun_nlb.go (+15 -16)
📝 internal/pkg/core/deployer/providers/huaweicloud-cdn/huaweicloud_cdn.go (+11 -11)
📝 internal/pkg/core/deployer/providers/huaweicloud-elb/huaweicloud_elb.go (+21 -20)
📝 internal/pkg/core/deployer/providers/tencentcloud-cdn/tencentcloud_cdn.go (+4 -4)
📝 internal/pkg/core/deployer/providers/tencentcloud-clb/tencentcloud_clb.go (+7 -6)
internal/pkg/core/deployer/providers/tencentcloud-css/tencentcloud_css.go (+109 -0)
internal/pkg/core/deployer/providers/tencentcloud-css/tencentcloud_css_test.go (+75 -0)

...and 28 more files

📄 Description

该 PR 包含以下内容变更:

  • feat: 部署到阿里云 ALB/CLB 时支持指定扩展域名。关闭 #347
  • feat: 支持部署到阿里云 ALV 视频直播。
  • feat: 支持部署到腾讯云 CSS 云直播。

🔄 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/415 **Author:** [@fudiwei](https://github.com/fudiwei) **Created:** 1/13/2025 **Status:** ✅ Merged **Merged:** 1/14/2025 **Merged by:** [@usual2970](https://github.com/usual2970) **Base:** `next` ← **Head:** `feat/new-workflow` --- ### 📝 Commits (6) - [`21cc1d4`](https://github.com/certimate-go/certimate/commit/21cc1d43deceffdd89c631e791be43745147e681) feat: support sni domain on deployment to aliyun clb & alb - [`7160589`](https://github.com/certimate-go/certimate/commit/7160589ac7508decaef4191ddd1222bce300f26f) refactor: clean code - [`8aa5c3c`](https://github.com/certimate-go/certimate/commit/8aa5c3ca65e0462f7beb1a64d4c35e62aeaf34c6) refactor: clean code - [`643d820`](https://github.com/certimate-go/certimate/commit/643d8209655246f809107e667032d72bb0f8cf8b) feat: add aliyun live deployer - [`ab1c9bf`](https://github.com/certimate-go/certimate/commit/ab1c9bfdbcdaaed31af01c7e8f35f80535cd19b5) feat: add tencentcloud css deployer - [`70b8aaf`](https://github.com/certimate-go/certimate/commit/70b8aaf84560664e51347e65b6dc7191ccf31af6) update README ### 📊 Changes **48 files changed** (+1250 additions, -401 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+63 -34) 📝 `README_EN.md` (+49 -20) 📝 `go.mod` (+4 -2) 📝 `go.sum` (+10 -3) 📝 `internal/deployer/providers.go` (+27 -7) 📝 `internal/domain/access.go` (+1 -1) 📝 `internal/domain/provider.go` (+2 -0) 📝 `internal/pkg/core/deployer/providers/aliyun-alb/aliyun_alb.go` (+207 -49) 📝 `internal/pkg/core/deployer/providers/aliyun-alb/aliyun_alb_test.go` (+7 -1) 📝 `internal/pkg/core/deployer/providers/aliyun-clb/aliyun_clb.go` (+81 -66) 📝 `internal/pkg/core/deployer/providers/aliyun-clb/aliyun_clb_test.go` (+7 -1) ➕ `internal/pkg/core/deployer/providers/aliyun-live/aliyun_live.go` (+116 -0) ➕ `internal/pkg/core/deployer/providers/aliyun-live/aliyun_live_test.go` (+75 -0) 📝 `internal/pkg/core/deployer/providers/aliyun-nlb/aliyun_nlb.go` (+15 -16) 📝 `internal/pkg/core/deployer/providers/huaweicloud-cdn/huaweicloud_cdn.go` (+11 -11) 📝 `internal/pkg/core/deployer/providers/huaweicloud-elb/huaweicloud_elb.go` (+21 -20) 📝 `internal/pkg/core/deployer/providers/tencentcloud-cdn/tencentcloud_cdn.go` (+4 -4) 📝 `internal/pkg/core/deployer/providers/tencentcloud-clb/tencentcloud_clb.go` (+7 -6) ➕ `internal/pkg/core/deployer/providers/tencentcloud-css/tencentcloud_css.go` (+109 -0) ➕ `internal/pkg/core/deployer/providers/tencentcloud-css/tencentcloud_css_test.go` (+75 -0) _...and 28 more files_ </details> ### 📄 Description 该 PR 包含以下内容变更: - **feat**: 部署到阿里云 ALB/CLB 时支持指定扩展域名。关闭 #347 - **feat**: 支持部署到阿里云 ALV 视频直播。 - **feat**: 支持部署到腾讯云 CSS 云直播。 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 01:06:57 +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#945
No description provided.