[PR #263] [MERGED] feat: aliyun slb deployer #892

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

📋 Pull Request Information

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

Base: mainHead: feat/cloud-load-balance


📝 Commits (7)

  • 26d7b0b refactor: clean code
  • e660e9c feat: add aliyun slb uploader
  • 20d2c56 feat: add aliyun clb deployer
  • 1690963 feat: add aliyun alb deployer
  • d87026d feat: add aliyun nlb deployer
  • 506ab4f feat: support quic listener in deployment to aliyun alb
  • da4715e fix: fix aliyun nlb endpoint

📊 Changes

25 files changed (+1631 additions, -79 deletions)

View changed files

📝 README.md (+1 -1)
📝 README_EN.md (+1 -1)
📝 go.mod (+5 -2)
📝 go.sum (+9 -0)
📝 internal/applicant/applicant.go (+2 -2)
internal/deployer/aliyun_alb.go (+265 -0)
internal/deployer/aliyun_clb.go (+282 -0)
internal/deployer/aliyun_nlb.go (+229 -0)
📝 internal/deployer/deployer.go (+10 -1)
📝 internal/deployer/huaweicloud_cdn.go (+1 -1)
📝 internal/deployer/huaweicloud_elb.go (+28 -12)
📝 internal/domain/domains.go (+33 -1)
📝 internal/pkg/core/uploader/uploader_aliyun_cas.go (+5 -9)
internal/pkg/core/uploader/uploader_aliyun_slb.go (+134 -0)
📝 internal/pkg/utils/x509/x509.go (+45 -31)
📝 ui/src/components/certimate/DeployEditDialog.tsx (+12 -0)
ui/src/components/certimate/DeployToAliyunALB.tsx (+162 -0)
ui/src/components/certimate/DeployToAliyunCLB.tsx (+158 -0)
ui/src/components/certimate/DeployToAliyunNLB.tsx (+162 -0)
📝 ui/src/components/certimate/DeployToHuaweiCloudELB.tsx (+1 -1)

...and 5 more files

📄 Description

此 PR 包含以下内容变更:


  • feat: 新增支持部署到阿里云负载均衡器 SLB 服务(含传统型负载均衡 CLB、应用型负载均衡 ALB、网络型负载均衡 NLB)。关闭 #57
  • 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/263 **Author:** [@fudiwei](https://github.com/fudiwei) **Created:** 10/25/2024 **Status:** ✅ Merged **Merged:** 10/27/2024 **Merged by:** [@usual2970](https://github.com/usual2970) **Base:** `main` ← **Head:** `feat/cloud-load-balance` --- ### 📝 Commits (7) - [`26d7b0b`](https://github.com/certimate-go/certimate/commit/26d7b0ba037c7062b6e52cad552b9e84d2a47b68) refactor: clean code - [`e660e9c`](https://github.com/certimate-go/certimate/commit/e660e9cad1ef3aec145e752c6520832df361eb04) feat: add aliyun slb uploader - [`20d2c56`](https://github.com/certimate-go/certimate/commit/20d2c5699c249193f863ed5a36f4a441f00b5d2b) feat: add aliyun clb deployer - [`1690963`](https://github.com/certimate-go/certimate/commit/1690963aafb2cc3c5f7862b2b0cc0af1e92680c4) feat: add aliyun alb deployer - [`d87026d`](https://github.com/certimate-go/certimate/commit/d87026d5be7f98b50282c15cd0fdfdcbed9adeeb) feat: add aliyun nlb deployer - [`506ab4f`](https://github.com/certimate-go/certimate/commit/506ab4f18e2e6bb64ad166b2b0c131c02f9d7727) feat: support quic listener in deployment to aliyun alb - [`da4715e`](https://github.com/certimate-go/certimate/commit/da4715e6dc36171cda43a2750cced65b4f448771) fix: fix aliyun nlb endpoint ### 📊 Changes **25 files changed** (+1631 additions, -79 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -1) 📝 `README_EN.md` (+1 -1) 📝 `go.mod` (+5 -2) 📝 `go.sum` (+9 -0) 📝 `internal/applicant/applicant.go` (+2 -2) ➕ `internal/deployer/aliyun_alb.go` (+265 -0) ➕ `internal/deployer/aliyun_clb.go` (+282 -0) ➕ `internal/deployer/aliyun_nlb.go` (+229 -0) 📝 `internal/deployer/deployer.go` (+10 -1) 📝 `internal/deployer/huaweicloud_cdn.go` (+1 -1) 📝 `internal/deployer/huaweicloud_elb.go` (+28 -12) 📝 `internal/domain/domains.go` (+33 -1) 📝 `internal/pkg/core/uploader/uploader_aliyun_cas.go` (+5 -9) ➕ `internal/pkg/core/uploader/uploader_aliyun_slb.go` (+134 -0) 📝 `internal/pkg/utils/x509/x509.go` (+45 -31) 📝 `ui/src/components/certimate/DeployEditDialog.tsx` (+12 -0) ➕ `ui/src/components/certimate/DeployToAliyunALB.tsx` (+162 -0) ➕ `ui/src/components/certimate/DeployToAliyunCLB.tsx` (+158 -0) ➕ `ui/src/components/certimate/DeployToAliyunNLB.tsx` (+162 -0) 📝 `ui/src/components/certimate/DeployToHuaweiCloudELB.tsx` (+1 -1) _...and 5 more files_ </details> ### 📄 Description 此 PR 包含以下内容变更: --- - **feat**: 新增支持部署到阿里云负载均衡器 SLB 服务(含传统型负载均衡 CLB、应用型负载均衡 ALB、网络型负载均衡 NLB)。关闭 #57 - **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:42 +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#892
No description provided.