[PR #254] [MERGED] feat: huaweicloud elb deployer #888

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

📋 Pull Request Information

Original PR: https://github.com/certimate-go/certimate/pull/254
Author: @fudiwei
Created: 10/24/2024
Status: Merged
Merged: 10/25/2024
Merged by: @usual2970

Base: mainHead: feat/cloud-load-balance


📝 Commits (5)

  • cea6be3 feat: allow set a different region on deployment to huaweicloud cdn
  • ee531dd fix: aliyun oss deploy config validation error
  • af3e207 refactor: clean code
  • dc720a5 feat: add huaweicloud elb deployer
  • 024b3c9 Merge branch 'main' into feat/cloud-load-balance

📊 Changes

26 files changed (+914 additions, -227 deletions)

View changed files

📝 README.md (+2 -2)
📝 README_EN.md (+16 -16)
📝 internal/deployer/deployer.go (+3 -0)
📝 internal/deployer/huaweicloud_cdn.go (+54 -47)
internal/deployer/huaweicloud_elb.go (+365 -0)
📝 internal/pkg/core/uploader/uploader.go (+5 -5)
📝 internal/pkg/core/uploader/uploader_aliyun_cas.go (+12 -11)
📝 internal/pkg/core/uploader/uploader_huaweicloud_elb.go (+69 -14)
📝 internal/pkg/core/uploader/uploader_huaweicloud_scm.go (+14 -13)
📝 internal/pkg/core/uploader/uploader_tencentcloud_ssl.go (+7 -6)
📝 internal/pkg/utils/x509/x509.go (+2 -2)
📝 ui/src/components/certimate/DeployEdit.tsx (+1 -1)
📝 ui/src/components/certimate/DeployEditDialog.tsx (+5 -1)
📝 ui/src/components/certimate/DeployToAliyunCDN.tsx (+11 -0)
📝 ui/src/components/certimate/DeployToAliyunOSS.tsx (+23 -23)
📝 ui/src/components/certimate/DeployToHuaweiCloudCDN.tsx (+31 -19)
ui/src/components/certimate/DeployToHuaweiCloudELB.tsx (+190 -0)
📝 ui/src/components/certimate/DeployToKubernetesSecret.tsx (+5 -6)
📝 ui/src/components/certimate/DeployToQiniuCDN.tsx (+11 -0)
📝 ui/src/components/certimate/DeployToTencentCLB.tsx (+11 -12)

...and 6 more files

📄 Description

此 PR 包含以下内容变更:

  • feat: 新增支持部署到华为云负载均衡器 ELB 服务。(后续会按目前的思路继续实现阿里云 SLB & 腾讯云 CLB)
  • feat: 部署到华为云 CDN 时支持填入与申请证书时不同的地域。
  • fix: 修复 UI 部分部署到阿里云 OSS 时表单存储桶参数验证错误。
  • refactor: 优化代码。

🔄 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/254 **Author:** [@fudiwei](https://github.com/fudiwei) **Created:** 10/24/2024 **Status:** ✅ Merged **Merged:** 10/25/2024 **Merged by:** [@usual2970](https://github.com/usual2970) **Base:** `main` ← **Head:** `feat/cloud-load-balance` --- ### 📝 Commits (5) - [`cea6be3`](https://github.com/certimate-go/certimate/commit/cea6be37dc495626217c02ebd8595def4546b119) feat: allow set a different region on deployment to huaweicloud cdn - [`ee531dd`](https://github.com/certimate-go/certimate/commit/ee531dd186fbb12470e0225cf0a3963e93c0a1f6) fix: aliyun oss deploy config validation error - [`af3e207`](https://github.com/certimate-go/certimate/commit/af3e20709d13e67a9b6cd5c40c30ddc6f8ddf418) refactor: clean code - [`dc720a5`](https://github.com/certimate-go/certimate/commit/dc720a5d999b5fd2656487b8b8700a3563c87e2a) feat: add huaweicloud elb deployer - [`024b3c9`](https://github.com/certimate-go/certimate/commit/024b3c936e7d0492efa0bc9cad3beffa1f722826) Merge branch 'main' into feat/cloud-load-balance ### 📊 Changes **26 files changed** (+914 additions, -227 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+2 -2) 📝 `README_EN.md` (+16 -16) 📝 `internal/deployer/deployer.go` (+3 -0) 📝 `internal/deployer/huaweicloud_cdn.go` (+54 -47) ➕ `internal/deployer/huaweicloud_elb.go` (+365 -0) 📝 `internal/pkg/core/uploader/uploader.go` (+5 -5) 📝 `internal/pkg/core/uploader/uploader_aliyun_cas.go` (+12 -11) 📝 `internal/pkg/core/uploader/uploader_huaweicloud_elb.go` (+69 -14) 📝 `internal/pkg/core/uploader/uploader_huaweicloud_scm.go` (+14 -13) 📝 `internal/pkg/core/uploader/uploader_tencentcloud_ssl.go` (+7 -6) 📝 `internal/pkg/utils/x509/x509.go` (+2 -2) 📝 `ui/src/components/certimate/DeployEdit.tsx` (+1 -1) 📝 `ui/src/components/certimate/DeployEditDialog.tsx` (+5 -1) 📝 `ui/src/components/certimate/DeployToAliyunCDN.tsx` (+11 -0) 📝 `ui/src/components/certimate/DeployToAliyunOSS.tsx` (+23 -23) 📝 `ui/src/components/certimate/DeployToHuaweiCloudCDN.tsx` (+31 -19) ➕ `ui/src/components/certimate/DeployToHuaweiCloudELB.tsx` (+190 -0) 📝 `ui/src/components/certimate/DeployToKubernetesSecret.tsx` (+5 -6) 📝 `ui/src/components/certimate/DeployToQiniuCDN.tsx` (+11 -0) 📝 `ui/src/components/certimate/DeployToTencentCLB.tsx` (+11 -12) _...and 6 more files_ </details> ### 📄 Description 此 PR 包含以下内容变更: - **feat**: 新增支持部署到华为云负载均衡器 ELB 服务。(后续会按目前的思路继续实现阿里云 SLB & 腾讯云 CLB) - **feat**: 部署到华为云 CDN 时支持填入与申请证书时不同的地域。 - **fix**: 修复 UI 部分部署到阿里云 OSS 时表单存储桶参数验证错误。 - **refactor**: 优化代码。 --- <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:41 +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#888
No description provided.