mirror of
https://github.com/certimate-go/certimate.git
synced 2026-04-25 20:55:52 +03:00
[PR #348] [MERGED] feat: deployers #929
Labels
No labels
announcement
backlog
bug
declined
documentation
duplicate
enhancement
good first issue
good first issue
help wanted
invalid
pull-request
question
stale
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/certimate#929
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/certimate-go/certimate/pull/348
Author: @fudiwei
Created: 11/19/2024
Status: ✅ Merged
Merged: 11/22/2024
Merged by: @usual2970
Base:
main← Head:feat/deployer📝 Commits (10+)
295b777refactor: clean code43b2ff7refactor: extract x509 transformer utils26d11defeat: add deployer interfaceaa7fb7dMerge branch 'main' into feat/deployer6367785feat: implement local, ssh, webhookDeployer51fb9dctest: add some unit test cases for newDeployer414d8d1test: use flag arguments in test cases forNotifierandDeployer6a15186feat: implement k8s secretDeployera6c93eftest: fix typo82807fcrefactor: clean code📊 Changes
83 files changed (+7526 additions, -260 deletions)
View changed files
📝
internal/applicant/volcengine.go(+2 -2)📝
internal/deployer/deployer.go(+6 -66)➕
internal/deployer/factory.go(+374 -0)📝
internal/deployer/huaweicloud_elb.go(+2 -10)📝
internal/deployer/local.go(+3 -2)📝
internal/deployer/ssh.go(+3 -2)📝
internal/deployer/volcengine_cdn.go(+4 -4)📝
internal/deployer/volcengine_live.go(+4 -4)📝
internal/domain/access.go(+11 -6)📝
internal/domain/domains.go(+2 -2)📝
internal/notify/factory.go(+16 -16)➕
internal/pkg/core/deployer/deployer.go(+24 -0)➕
internal/pkg/core/deployer/logger.go(+117 -0)➕
internal/pkg/core/deployer/logger_test.go(+56 -0)➕
internal/pkg/core/deployer/providers/aliyun-alb/aliyun_alb.go(+289 -0)➕
internal/pkg/core/deployer/providers/aliyun-alb/aliyun_alb_test.go(+118 -0)➕
internal/pkg/core/deployer/providers/aliyun-alb/defines.go(+10 -0)➕
internal/pkg/core/deployer/providers/aliyun-cdn/aliyun_cdn.go(+93 -0)➕
internal/pkg/core/deployer/providers/aliyun-cdn/aliyun_cdn_test.go(+75 -0)➕
internal/pkg/core/deployer/providers/aliyun-clb/aliyun_clb.go(+291 -0)...and 63 more files
📄 Description
该 PR 包含以下内容变更:
/internal/pkg/core/deployer/目录下。/internal/pkg/utils/x509/transformer.go;【备注】
关于 Deployer
与 #227 中实现的 Uploader 和 #321 中实现的 Notifier 类似,旨在:
/internal/pkg/core/deployer/providers/webhook/webhook_test.go);/pkg/包下,便于日后作为类库对外暴露。⚠️ 因存在 Breaking Changes,故虽已实现原有的全部部署目标,但并未实际替换原有的
/internal/deployer/实现。计划于下一个大版本前替换。🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.