-
Notifications
You must be signed in to change notification settings - Fork 0
/
engine.go
46 lines (41 loc) · 1.85 KB
/
engine.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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
}