代码拉取完成,页面将自动刷新
package engine
import (
"github.com/rancher/rancher/pkg/pipeline/engine/jenkins"
"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
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。