36 Star 393 Fork 70

GVPrancher / rancher

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
engine.go 1.85 KB
一键复制 编辑 原始数据 按行查看 历史
Dan Ramich 提交于 2019-06-12 13:38 . goimport linting changes
package engine
import (
"github.com/rancher/rancher/pkg/pipeline/engine/jenkins"
v3 "github.com/rancher/types/apis/project.cattle.io/v3"
"github.com/rancher/types/config"
)
type PipelineEngine interface {
PreCheck(execution *v3.PipelineExecution) (bool, error)
RunPipelineExecution(execution *v3.PipelineExecution) 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, useCache bool) PipelineEngine {
serviceLister := cluster.Core.Services("").Controller().Lister()
podLister := cluster.Core.Pods("").Controller().Lister()
secrets := cluster.Core.Secrets("")
secretLister := secrets.Controller().Lister()
managementSecretLister := cluster.Management.Core.Secrets("").Controller().Lister()
sourceCodeCredentials := cluster.Management.Project.SourceCodeCredentials("")
sourceCodeCredentialLister := sourceCodeCredentials.Controller().Lister()
pipelineLister := cluster.Management.Project.Pipelines("").Controller().Lister()
pipelineSettingLister := cluster.Management.Project.PipelineSettings("").Controller().Lister()
dialer := cluster.Management.Dialer
engine := &jenkins.Engine{
UseCache: useCache,
ServiceLister: serviceLister,
PodLister: podLister,
Secrets: secrets,
SecretLister: secretLister,
ManagementSecretLister: managementSecretLister,
SourceCodeCredentials: sourceCodeCredentials,
SourceCodeCredentialLister: sourceCodeCredentialLister,
PipelineLister: pipelineLister,
PipelineSettingLister: pipelineSettingLister,
Dialer: dialer,
ClusterName: cluster.ClusterName,
}
return engine
}
Go
1
https://gitee.com/rancher/rancher.git
git@gitee.com:rancher/rancher.git
rancher
rancher
rancher
v2.2.13

搜索帮助