37 Star 407 Fork 74

GVPrancher/rancher

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
engine.go 1.34 KB
一键复制 编辑 原始数据 按行查看 历史
package engine
import (
"github.com/rancher/rancher/pkg/controllers/user/pipeline/engine/jenkins"
"github.com/rancher/types/apis/management.cattle.io/v3"
"github.com/rancher/types/config"
)
type PipelineEngine interface {
PreCheck() error
RunPipelineExecution(execution *v3.PipelineExecution, triggerType string) error
RerunExecution(execution *v3.PipelineExecution) error
StopExecution(execution *v3.PipelineExecution) error
GetStepLog(execution *v3.PipelineExecution, stage int, step int) (string, error)
SyncExecution(execution *v3.PipelineExecution) (bool, error)
}
func New(cluster *config.UserContext) PipelineEngine {
serviceLister := cluster.Core.Services("").Controller().Lister()
secrets := cluster.Core.Secrets("")
secretLister := secrets.Controller().Lister()
managementSecretLister := cluster.Management.Core.Secrets("").Controller().Lister()
sourceCodeCredentialLister := cluster.Management.Management.SourceCodeCredentials("").Controller().Lister()
dialer := cluster.Management.Dialer
engine := &jenkins.Engine{
ServiceLister: serviceLister,
Secrets: secrets,
SecretLister: secretLister,
ManagementSecretLister: managementSecretLister,
SourceCodeCredentialLister: sourceCodeCredentialLister,
Dialer: dialer,
ClusterName: cluster.ClusterName,
}
return engine
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/rancher/rancher.git
git@gitee.com:rancher/rancher.git
rancher
rancher
rancher
v2.0.7-rc1

搜索帮助