-
Notifications
You must be signed in to change notification settings - Fork 0
/
engine.go
39 lines (32 loc) · 1.34 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
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
}