Skip to content

Commit c530375

Browse files
committed
Project upgrade. Option to skip routes generation.
1 parent 3ad4900 commit c530375

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

Jenkinsfile

+13-9
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,19 @@ pipeline {
88
}
99

1010
agent {
11-
kubernetes {
12-
label 'worker-aylien-query-dsl'
13-
inheritFrom 'default'
14-
15-
containerTemplates([
16-
containerTemplate(name: 'sbt', image: 'gcr.io/aylien-production/sbt-jdk11', command: 'cat', ttyEnabled: true),
17-
containerTemplate(name: 'helm', image: 'gcr.io/aylien-production/helm', command: 'cat', ttyEnabled: true)
18-
])
19-
}
11+
kubernetes {
12+
label 'worker-simple-scala-generator'
13+
inheritFrom 'default'
14+
containerTemplates([
15+
containerTemplate(
16+
name: 'sbt',
17+
image: 'gcr.io/aylien-production/sbt-jdk11',
18+
alwaysPullImage: true,
19+
privileged: true,
20+
ttyEnabled: true
21+
)
22+
])
23+
}
2024
}
2125

2226
stages {

0 commit comments

Comments
 (0)