-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathJenkinsfile
173 lines (152 loc) · 5.07 KB
/
Jenkinsfile
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
#!/usr/bin/env groovy
pipeline {
agent { label 'executor-v2' }
options {
timestamps()
buildDiscarder(logRotator(numToKeepStr: '30'))
}
triggers {
cron(getDailyCronString())
}
parameters {
booleanParam(
name: 'TEST_OCP_NEXT',
description: 'Whether or not to run the pipeline against the next OCP version',
defaultValue: false)
}
stages {
// Postgres Tests with Host-ID-based and Annotation-based Authn against OSS
stage('Deploy Demos against OSS on Openshift') {
parallel {
stage('OpenShift v(current), Conjur OSS, Postgres, Host-ID-based Authn') {
steps {
sh 'cd ci && CONJUR_OSS=true summon --environment current ./test oc postgres host-id-based'
}
}
stage('OpenShift v(current), Conjur OSS, Postgres, Annotation-based Authn') {
steps {
sh 'cd ci && CONJUR_OSS=true summon --environment current ./test oc postgres annotation-based'
}
}
stage('OpenShift v(next)') {
when {
expression { params.TEST_OCP_NEXT }
}
stages {
stage('OpenShift v(next), Conjur OSS, Postgres, Host-ID-based Authn') {
steps {
sh 'cd ci && CONJUR_OSS=true summon --environment next ./test oc postgres host-id-based'
}
}
stage('OpenShift v(next), Conjur OSS, Postgres, Annotation-based Authn') {
steps {
sh 'cd ci && CONJUR_OSS=true summon --environment next ./test oc postgres annotation-based'
}
}
}
}
}
}
// Postgres Tests with Host-ID-based Auth
stage('Deploy Demos Postgres with Host-ID-based Authn') {
parallel {
stage('GKE, Conjur Enterprise, Postgres, Host-ID-based Authn') {
steps {
sh 'cd ci && summon --environment gke ./test gke postgres host-id-based'
}
}
stage('OpenShift v(oldest), Conjur Enterprise, Postgres, Host-ID-based Authn') {
steps {
sh 'cd ci && summon --environment oldest ./test oc postgres host-id-based'
}
}
stage('OpenShift v(current), Conjur Enterprise, Postgres, Host-ID-based Authn') {
steps {
sh 'cd ci && summon --environment current ./test oc postgres host-id-based'
}
}
stage('OpenShift v(next)') {
when {
expression { params.TEST_OCP_NEXT }
}
stages {
stage('OpenShift v(next), Conjur Enterprise, Postgres, Host-ID-based Authn') {
steps {
sh 'cd ci && summon --environment next ./test oc postgres host-id-based'
}
}
}
}
}
}
// Postgres Tests with Annotation-based Authn
stage('Deploy Demos Postgres with Annotation-based Authn') {
parallel {
stage('GKE, Conjur Enterprise, Postgres, Annotation-based Authn') {
steps {
sh 'cd ci && summon --environment gke ./test gke postgres annotation-based'
}
}
stage('OpenShift v(oldest), Conjur Enterprise, Postgres, Annotation-based Authn') {
steps {
sh 'cd ci && summon --environment oldest ./test oc postgres annotation-based'
}
}
stage('OpenShift v(current), Conjur Enterprise, Postgres, Annotation-based Authn') {
steps {
sh 'cd ci && summon --environment current ./test oc postgres annotation-based'
}
}
stage('OpenShift v(next)') {
when {
expression { params.TEST_OCP_NEXT }
}
stages {
stage('OpenShift v(next), Conjur Enterprise, Postgres, Annotation-based Authn') {
steps {
sh 'cd ci && summon --environment next ./test oc postgres annotation-based'
}
}
}
}
}
}
// MySQL Tests
stage('Deploy Demos MySQL') {
parallel {
stage('GKE, Conjur Enterprise, MySQL, Host-ID-based Authn') {
steps {
sh 'cd ci && summon --environment gke ./test gke mysql host-id-based'
}
}
stage('OpenShift v(oldest), Conjur Enterprise, MySQL, Host-ID-based Authn') {
steps {
sh 'cd ci && summon --environment oldest ./test oc mysql host-id-based'
}
}
stage('OpenShift v(current), Conjur Enterprise, MySQL, Host-ID-based Authn') {
steps {
sh 'cd ci && summon --environment current ./test oc mysql host-id-based'
}
}
stage('OpenShift v(next)') {
when {
expression { params.TEST_OCP_NEXT }
}
stages {
stage('OpenShift v(next), Conjur Enterprise, MySQL, Host-ID-based Authn') {
steps {
sh 'cd ci && summon --environment next ./test oc mysql host-id-based'
}
}
}
}
}
}
}
post {
always {
cleanupAndNotify(currentBuild.currentResult)
}
}
}