@@ -100,7 +100,7 @@ config = {
100100 "apiLocks" ,
101101 ],
102102 "skip" : False ,
103- "k8s" : True ,
103+ "k8s" : False ,
104104 },
105105 "settingsAndNotification" : {
106106 "suites" : [
@@ -130,21 +130,21 @@ config = {
130130 ],
131131 "skip" : False ,
132132 "withRemotePhp" : [True ],
133- "k8s" : True ,
133+ "k8s" : False ,
134134 },
135135 "spaces" : {
136136 "suites" : [
137137 "apiSpaces" ,
138138 ],
139139 "skip" : False ,
140- "k8s" : True ,
140+ "k8s" : False ,
141141 },
142142 "spacesShares" : {
143143 "suites" : [
144144 "apiSpacesShares" ,
145145 ],
146146 "skip" : False ,
147- "k8s" : True ,
147+ "k8s" : False ,
148148 },
149149 "davOperations" : {
150150 "suites" : [
@@ -184,14 +184,14 @@ config = {
184184 ],
185185 "skip" : False ,
186186 "withRemotePhp" : [True ],
187- "k8s" : True ,
187+ "k8s" : False ,
188188 },
189189 "sharingNgAdditionalShareRole" : {
190190 "suites" : [
191191 "apiSharingNgAdditionalShareRole" ,
192192 ],
193193 "skip" : False ,
194- "k8s" : True ,
194+ "k8s" : False ,
195195 "withRemotePhp" : [True ],
196196 },
197197 "sharingNgShareInvitation" : {
@@ -307,7 +307,7 @@ config = {
307307 "coreApiShareManagementToShares" ,
308308 ],
309309 "skip" : False ,
310- "k8s" : True ,
310+ "k8s" : False ,
311311 "withRemotePhp" : [True ],
312312 },
313313 "3" : {
@@ -328,7 +328,7 @@ config = {
328328 "coreApiShareUpdateToShares" ,
329329 ],
330330 "skip" : False ,
331- "k8s" : True ,
331+ "k8s" : False ,
332332 "withRemotePhp" : [True ],
333333 },
334334 "5" : {
@@ -339,7 +339,7 @@ config = {
339339 "coreApiWebdavEtagPropagation2" ,
340340 ],
341341 "skip" : False ,
342- "k8s" : True ,
342+ "k8s" : False ,
343343 },
344344 "6" : {
345345 "suites" : [
@@ -354,7 +354,7 @@ config = {
354354 "coreApiWebdavProperties" ,
355355 ],
356356 "skip" : False ,
357- "k8s" : True ,
357+ "k8s" : False ,
358358 },
359359 "8" : {
360360 "suites" : [
@@ -1099,7 +1099,7 @@ def localApiTestPipeline(ctx):
10991099 pipeline = {
11001100 "kind" : "pipeline" ,
11011101 "type" : "docker" ,
1102- "name" : "%s-%s%s" % ("CLI" if name .startswith ("cli" ) else "API" , name , "-withoutRemotePhp" if not run_with_remote_php else "" ),
1102+ "name" : "%s-%s%s%s " % ("CLI" if name .startswith ("cli" ) else "API" , name , "-withoutRemotePhp" if not run_with_remote_php else "" , "-k8s" if run_on_k8s else "" ),
11031103 "platform" : {
11041104 "os" : "linux" ,
11051105 "arch" : "amd64" ,
@@ -1400,7 +1400,7 @@ def coreApiTestPipeline(ctx):
14001400 pipeline = {
14011401 "kind" : "pipeline" ,
14021402 "type" : "docker" ,
1403- "name" : "Core-API-%s%s" % (name , "-withoutRemotePhp" if not run_with_remote_php else "" ),
1403+ "name" : "Core-API-%s%s%s " % (name , "-withoutRemotePhp" if not run_with_remote_php else "" , "-k8s" if run_on_k8s else "" ),
14041404 "platform" : {
14051405 "os" : "linux" ,
14061406 "arch" : "amd64" ,
0 commit comments