@@ -36,9 +36,9 @@ parameters:
36
36
e2e_param_cniNetworkPlugin :
37
37
type : string
38
38
default : flannel
39
- e2e_param_legacyKDS :
40
- type : boolean
41
- default : false
39
+ e2e_param_sidecarContainers :
40
+ type : string
41
+ default : " "
42
42
# See https://circleci.com/docs/2.0/configuration-reference/#commands-requires-version-21.
43
43
commands :
44
44
install_build_tools :
@@ -265,8 +265,8 @@ jobs:
265
265
description : The CNI networking plugin to use [flannel | calico]
266
266
type : string
267
267
default : flannel
268
- legacyKDS :
269
- description : if should run tests with new implementation of KDS
268
+ sidecarContainers :
269
+ description : if should run tests with sidecar containers
270
270
type : boolean
271
271
default : false
272
272
executor :
@@ -285,7 +285,7 @@ jobs:
285
285
- {equal: [calico, << parameters.cniNetworkPlugin >>]}
286
286
- {equal: [kindIpv6, << parameters.k8sVersion >>]}
287
287
- {equal: [arm64, << parameters.arch >>]}
288
- - {equal: [true, << parameters.legacyKDS >>]}
288
+ # - {equal: [true, << parameters.sidecarContainers >>]}
289
289
- {equal: [<< pipeline.parameters.first_k8s_version >>, << parameters.k8sVersion >>]}
290
290
steps :
291
291
- halt_non_priority_job
@@ -362,8 +362,8 @@ jobs:
362
362
export MAKE_PARAMETERS="-j2"
363
363
fi
364
364
365
- if [[ "<< parameters.legacyKDS >>" == true ]]; then
366
- export KUMA_LEGACY_KDS =true
365
+ if [[ "<< parameters.sidecarContainers >>" == true ]]; then
366
+ export KUMA_EXPERIMENTAL_SIDECAR_CONTAINERS =true
367
367
fi
368
368
369
369
if [[ "<< parameters.target >>" == "" ]]; then
@@ -403,8 +403,8 @@ jobs:
403
403
description : The CNI networking plugin to use [flannel | calico]
404
404
type : string
405
405
default : flannel
406
- legacyKDS :
407
- description : if should run tests with new implementation of KDS
406
+ sidecarContainers :
407
+ description : if should run tests with sidecar containers
408
408
type : boolean
409
409
executor :
410
410
name : vm-<< parameters.arch >>
@@ -471,8 +471,8 @@ jobs:
471
471
export MAKE_PARAMETERS="-j2"
472
472
fi
473
473
474
- if [[ "<< parameters.legacyKDS >>" == true ]]; then
475
- export KUMA_LEGACY_KDS =true
474
+ if [[ "<< parameters.sidecarContainers >>" == true ]]; then
475
+ export KUMA_EXPERIMENTAL_SIDECAR_CONTAINERS =true
476
476
fi
477
477
478
478
if [[ "<< parameters.target >>" == "" ]]; then
@@ -625,14 +625,14 @@ workflows:
625
625
arch : [amd64, arm64]
626
626
requires : [build, go_cache-<< matrix.arch >>]
627
627
- e2e :
628
- name : << matrix.target >>:<< matrix.arch >>-<< matrix.k8sVersion >>-legacy-kds
628
+ name : << matrix.target >>:<< matrix.arch >>-<< matrix.k8sVersion >>-sidecar-containers
629
629
matrix :
630
- alias : legacy-kds
630
+ alias : sidecar-containers
631
631
parameters :
632
632
k8sVersion : [<< pipeline.parameters.last_k8s_version >>]
633
- target : [multizone ]
633
+ target : [kubernetes ]
634
634
arch : [amd64]
635
- legacyKDS : [true]
635
+ sidecarContainers : [true]
636
636
requires : [build, go_cache-amd64]
637
637
- e2e :
638
638
name : << matrix.target >>:<< matrix.arch >>-<< matrix.k8sVersion >>-calico
@@ -661,6 +661,6 @@ workflows:
661
661
k8sVersion : << pipeline.parameters.e2e_param_k8sVersion >>
662
662
target : << pipeline.parameters.e2e_param_target >>
663
663
arch : << pipeline.parameters.e2e_param_arch >>
664
- legacyKDS : << pipeline.parameters.e2e_param_legacyKDS >>
664
+ sidecarContainers : {not: {equal: [ << pipeline.parameters.e2e_param_sidecarContainers >>, ""]}}
665
665
cniNetworkPlugin : << pipeline.parameters.e2e_param_cniNetworkPlugin >>
666
666
parallelism : << pipeline.parameters.e2e_param_parallelism >>
0 commit comments