forked from openshift/release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenshift-installer-release-4.20.yaml
1228 lines (1228 loc) · 34.1 KB
/
openshift-installer-release-4.20.yaml
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
base_images:
assisted-image-service:
name: ocm-2.13
namespace: edge-infrastructure
tag: assisted-image-service
assisted-installer:
name: ocm-2.13
namespace: edge-infrastructure
tag: assisted-installer
assisted-installer-agent:
name: ocm-2.13
namespace: edge-infrastructure
tag: assisted-installer-agent
assisted-installer-controller:
name: ocm-2.13
namespace: edge-infrastructure
tag: assisted-installer-controller
assisted-service:
name: ocm-2.13
namespace: edge-infrastructure
tag: assisted-service
assisted-test-infra:
name: ocm-2.13
namespace: edge-infrastructure
tag: assisted-test-infra
dev-scripts:
name: test
namespace: ocp-kni
tag: dev-scripts
golangci-lint:
name: golangci-lint
namespace: ci
tag: v1.59.0
ocp_4.10_cli:
name: "4.20"
namespace: ocp
tag: cli
ocp_4.17_base-rhel9:
name: "4.20"
namespace: ocp
tag: base-rhel9
ocp_4.17_cli:
name: "4.20"
namespace: ocp
tag: cli
ocp_4.17_etcd:
name: "4.20"
namespace: ocp
tag: etcd
ocp_4.17_hyperkube:
name: "4.20"
namespace: ocp
tag: hyperkube
ocp_4.17_installer-etcd-artifacts:
name: "4.20"
namespace: ocp
tag: installer-etcd-artifacts
ocp_4.17_installer-kube-apiserver-artifacts:
name: "4.20"
namespace: ocp
tag: installer-kube-apiserver-artifacts
ocp_4.17_installer-terraform-providers:
name: "4.20"
namespace: ocp
tag: installer-terraform-providers
ocp_4.19_base-rhel9:
name: "4.20"
namespace: ocp
tag: base-rhel9
ocp_4.19_etcd:
name: "4.20"
namespace: ocp
tag: etcd
ocp_4.19_hyperkube:
name: "4.20"
namespace: ocp
tag: hyperkube
ocp_4.19_installer-etcd-artifacts:
name: "4.20"
namespace: ocp
tag: installer-etcd-artifacts
ocp_4.19_installer-kube-apiserver-artifacts:
name: "4.20"
namespace: ocp
tag: installer-kube-apiserver-artifacts
ocp_4.19_installer-terraform-providers:
name: "4.20"
namespace: ocp
tag: installer-terraform-providers
ocp_builder_rhel-9-golang-1.22-openshift-4.17:
name: builder
namespace: ocp
tag: rhel-9-golang-1.22-openshift-4.17
ocp_builder_rhel-9-golang-1.23-openshift-4.19:
name: builder
namespace: ocp
tag: rhel-9-golang-1.23-openshift-4.19
build_root:
from_repository: true
use_build_cache: true
images:
- dockerfile_path: images/installer/Dockerfile.ci
inputs:
ocp_4.17_base-rhel9:
as:
- registry.ci.openshift.org/ocp/4.17:base-rhel9
ocp_4.17_installer-etcd-artifacts:
as:
- registry.ci.openshift.org/ocp/4.17:installer-etcd-artifacts
ocp_4.17_installer-kube-apiserver-artifacts:
as:
- registry.ci.openshift.org/ocp/4.17:installer-kube-apiserver-artifacts
ocp_4.17_installer-terraform-providers:
as:
- registry.ci.openshift.org/ocp/4.17:installer-terraform-providers
ocp_4.19_base-rhel9:
as:
- registry.ci.openshift.org/ocp/4.19:base-rhel9
ocp_4.19_installer-etcd-artifacts:
as:
- registry.ci.openshift.org/ocp/4.19:installer-etcd-artifacts
ocp_4.19_installer-kube-apiserver-artifacts:
as:
- registry.ci.openshift.org/ocp/4.19:installer-kube-apiserver-artifacts
ocp_4.19_installer-terraform-providers:
as:
- registry.ci.openshift.org/ocp/4.19:installer-terraform-providers
ocp_builder_rhel-9-golang-1.22-openshift-4.17:
as:
- registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.22-openshift-4.17
ocp_builder_rhel-9-golang-1.23-openshift-4.19:
as:
- registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.23-openshift-4.19
to: installer
- dockerfile_path: images/libvirt/Dockerfile.ci
inputs:
ocp_4.17_cli:
as:
- registry.ci.openshift.org/ocp/4.17:cli
ocp_4.17_etcd:
as:
- registry.ci.openshift.org/ocp/4.17:etcd
ocp_4.17_hyperkube:
as:
- registry.ci.openshift.org/ocp/4.17:hyperkube
ocp_builder_rhel-9-golang-1.22-openshift-4.17:
as:
- registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.22-openshift-4.17
to: libvirt-installer
- dockerfile_path: images/installer/Dockerfile.upi.ci
inputs:
ocp_4.17_base-rhel9:
as:
- registry.ci.openshift.org/ocp/4.17:base-rhel9
ocp_4.17_cli:
as:
- registry.ci.openshift.org/ocp/4.17:cli
ocp_4.17_installer-etcd-artifacts:
as:
- registry.ci.openshift.org/ocp/4.17:installer-etcd-artifacts
ocp_4.17_installer-kube-apiserver-artifacts:
as:
- registry.ci.openshift.org/ocp/4.17:installer-kube-apiserver-artifacts
ocp_4.17_installer-terraform-providers:
as:
- registry.ci.openshift.org/ocp/4.17:installer-terraform-providers
ocp_builder_rhel-9-golang-1.22-openshift-4.17:
as:
- registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.22-openshift-4.17
to: upi-installer
- dockerfile_path: images/openstack/Dockerfile.ci
inputs:
ocp_4.17_base-rhel9:
as:
- registry.ci.openshift.org/ocp/4.17:base-rhel9
ocp_4.17_cli:
as:
- registry.ci.openshift.org/ocp/4.17:cli
ocp_4.17_installer-etcd-artifacts:
as:
- registry.ci.openshift.org/ocp/4.17:installer-etcd-artifacts
ocp_4.17_installer-kube-apiserver-artifacts:
as:
- registry.ci.openshift.org/ocp/4.17:installer-kube-apiserver-artifacts
ocp_4.17_installer-terraform-providers:
as:
- registry.ci.openshift.org/ocp/4.17:installer-terraform-providers
ocp_builder_rhel-9-golang-1.22-openshift-4.17:
as:
- registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.22-openshift-4.17
to: openstack-installer
- dockerfile_path: images/baremetal/Dockerfile.ci
inputs:
ocp_4.17_base-rhel9:
as:
- registry.ci.openshift.org/ocp/4.17:base-rhel9
ocp_4.17_etcd:
as:
- registry.ci.openshift.org/ocp/4.17:etcd
ocp_4.17_hyperkube:
as:
- registry.ci.openshift.org/ocp/4.17:hyperkube
ocp_4.19_base-rhel9:
as:
- registry.ci.openshift.org/ocp/4.19:base-rhel9
ocp_4.19_etcd:
as:
- registry.ci.openshift.org/ocp/4.19:etcd
ocp_4.19_hyperkube:
as:
- registry.ci.openshift.org/ocp/4.19:hyperkube
ocp_builder_rhel-9-golang-1.22-openshift-4.17:
as:
- registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.22-openshift-4.17
ocp_builder_rhel-9-golang-1.23-openshift-4.19:
as:
- registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.23-openshift-4.19
to: baremetal-installer
- dockerfile_literal: |
FROM src
COPY oc /usr/bin/oc
RUN ln -s /usr/bin/oc /usr/bin/kubectl
RUN dnf install -y nmstate
# Cache dir must be accessible when running the integration tests
RUN mkdir /.cache -m 0777
from: src
inputs:
ocp_4.10_cli:
paths:
- destination_dir: .
source_path: /usr/bin/oc
to: src-oc
promotion:
to:
- excluded_images:
- src-oc
name: "4.20"
namespace: ocp
releases:
initial:
integration:
name: "4.20"
namespace: ocp
latest:
integration:
include_built_images: true
name: "4.20"
namespace: ocp
multi-latest:
candidate:
architecture: multi
product: ocp
stream: nightly
version: "4.20"
ppc64le-latest:
candidate:
architecture: ppc64le
product: ocp
stream: nightly
version: "4.20"
resources:
'*':
requests:
cpu: 100m
memory: 200Mi
aro-unit:
requests:
cpu: "3"
memory: 5Gi
baremetal-installer:
requests:
cpu: "3"
memory: 5Gi
govet:
requests:
cpu: "3"
memory: 5Gi
installer:
requests:
cpu: "3"
memory: 5Gi
libvirt-installer:
requests:
cpu: "3"
memory: 5Gi
openstack-installer:
requests:
cpu: "3"
memory: 5Gi
unit:
requests:
cpu: "3"
memory: 5Gi
upi-installer:
requests:
cpu: "3"
memory: 5Gi
test_binary_build_commands: |
# Some agent-based installer tests require nmstatectl
dnf install -y nmstate
tests:
- as: unit
commands: |
go test -coverprofile=/tmp/coverprofile.out ./pkg/...
go tool cover -o $ARTIFACT_DIR/cover.txt -func /tmp/coverprofile.out
go tool cover -o $ARTIFACT_DIR/cover.html -html /tmp/coverprofile.out
container:
from: test-bin
skip_if_only_changed: (^docs/)|((^|/)OWNERS(_ALIASES)?$)|((^|/)[A-Z]+\.md$)
- as: aro-unit
commands: go test ./pkg/... -tags=aro
container:
from: src
skip_if_only_changed: (^docs/)|((^|/)OWNERS(_ALIASES)?$)|((^|/)[A-Z]+\.md$)|(^pkg/asset/agent/)
- as: gofmt
commands: IS_CONTAINER=TRUE ./hack/go-fmt.sh .
container:
from: src
skip_if_only_changed: (^docs/)|((^|/)OWNERS(_ALIASES)?$)|((^|/)[A-Z]+\.md$)
- as: govet
commands: IS_CONTAINER=TRUE ./hack/go-vet.sh ./...
container:
from: src
skip_if_only_changed: (^docs/)|((^|/)OWNERS(_ALIASES)?$)|((^|/)[A-Z]+\.md$)
- as: golint
commands: |
export GOCACHE=/tmp/
export GOLANGCI_LINT_CACHE=/tmp/.cache
export GOPROXY=https://proxy.golang.org
golangci-lint version
golangci-lint run --verbose --print-resources-usage --new-from-rev=dcf8122
container:
clone: true
from: golangci-lint
skip_if_only_changed: (^docs/)|((^|/)OWNERS(_ALIASES)?$)|((^|/)[A-Z]+\.md$)
- as: verify-vendor
commands: IS_CONTAINER=TRUE ./hack/verify-vendor.sh
container:
from: src
skip_if_only_changed: (^docs/)|((^|/)OWNERS(_ALIASES)?$)|((^|/)[A-Z]+\.md$)
- as: verify-codegen
commands: IS_CONTAINER=TRUE ./hack/verify-codegen.sh
container:
from: src
- as: e2e-aws-ovn
skip_if_only_changed: (^(docs|upi|hack)/)|((^|/)OWNERS(_ALIASES)?$)|((^|/)[A-Z]+\.md$)|(^images/(baremetal|libvirt|openstack))|(^terraform/providers)|(^cluster-api/providers/([^a]|a[^w]|aw[^s]).*/)|(/agent/)
steps:
cluster_profile: aws
env:
AWS_INSTALL_USE_MINIMAL_PERMISSIONS: "yes"
USER_TAGS: |
keyA valueA
key2 value2
keySpecial v@lu3-Special_.:/=+
keyD valueD spaces
workflow: openshift-e2e-aws
timeout: 6h0m0s
- always_run: false
as: e2e-aws-ovn-techpreview
optional: true
steps:
cluster_profile: aws
env:
AWS_INSTALL_USE_MINIMAL_PERMISSIONS: "yes"
FEATURE_SET: TechPreviewNoUpgrade
USER_TAGS: |
keyA valueA
keyB valueB
keyC valueC
workflow: openshift-e2e-aws
timeout: 6h0m0s
- always_run: false
as: e2e-aws-ovn-proxy
optional: true
steps:
cluster_profile: aws
workflow: openshift-e2e-aws-proxy
timeout: 6h0m0s
- always_run: false
as: e2e-aws-upi-proxy
optional: true
steps:
cluster_profile: aws
workflow: openshift-e2e-aws-upi-proxy
timeout: 6h0m0s
- always_run: false
as: e2e-aws-ovn-user-provisioned-dns
optional: true
steps:
cluster_profile: aws
env:
AWS_INSTALL_USE_MINIMAL_PERMISSIONS: "yes"
FEATURE_SET: TechPreviewNoUpgrade
USER_PROVISIONED_DNS: "yes"
workflow: openshift-e2e-aws
timeout: 6h0m0s
- as: e2e-aws-ovn-shared-vpc-custom-security-groups
optional: true
run_if_changed: aws
steps:
cluster_profile: aws
env:
AWS_INSTALL_USE_MINIMAL_PERMISSIONS: "yes"
post:
- chain: ipi-aws-post
- ref: ipi-deprovision-aws-custom-security-groups
- ref: aws-deprovision-security-group
- ref: ipi-deprovision-aws-sharednetwork
pre:
- chain: ipi-conf-aws-sharednetwork
- ref: aws-provision-security-group
- ref: ipi-conf-aws-custom-security-groups
- chain: aws-provision-iam-user-minimal-permission
- chain: ipi-install
test:
- ref: openshift-e2e-test
timeout: 6h0m0s
- always_run: false
as: e2e-aws-ovn-custom-iam-profile
optional: true
steps:
cluster_profile: aws
env:
AWS_INSTALL_USE_MINIMAL_PERMISSIONS: "yes"
post:
- chain: ipi-aws-post
- ref: aws-deprovision-iam-profile
pre:
- ref: ipi-conf
- ref: ipi-conf-telemetry
- ref: ipi-conf-aws
- ref: ipi-conf-aws-byo-ipv4-pool-public
- ref: aws-provision-iam-profile
- ref: ipi-conf-aws-byo-iam-profile
- chain: aws-provision-iam-user-minimal-permission
- ref: ipi-install-monitoringpvc
- chain: ipi-install
test:
- ref: openshift-e2e-test
timeout: 6h0m0s
- always_run: false
as: e2e-aws-default-config
optional: true
run_if_changed: aws
steps:
cluster_profile: aws
env:
AWS_INSTALL_USE_MINIMAL_PERMISSIONS: "yes"
post:
- chain: ipi-aws-post
pre:
- ref: ipi-conf
- ref: ipi-conf-aws-default
- chain: aws-provision-iam-user-minimal-permission
- chain: ipi-install
timeout: 6h0m0s
- always_run: false
as: e2e-aws-ovn-edge-zones
optional: true
run_if_changed: aws
steps:
cluster_profile: aws
env:
AWS_INSTALL_USE_MINIMAL_PERMISSIONS: "yes"
workflow: openshift-e2e-aws-edge-zones
timeout: 6h0m0s
- always_run: false
as: e2e-aws-ovn-shared-vpc-edge-zones
optional: true
run_if_changed: aws
steps:
cluster_profile: aws
env:
AWS_INSTALL_USE_MINIMAL_PERMISSIONS: "yes"
workflow: openshift-e2e-aws-edge-zones-byo-vpc
timeout: 6h0m0s
- always_run: true
as: e2e-aws-ovn-edge-zones-manifest-validation
run_if_changed: aws
steps:
cluster_profile: aws
workflow: openshift-installer-manifests-aws-edge-zones
timeout: 3h0m0s
- as: e2e-aws-ovn-imdsv2
optional: true
run_if_changed: aws
steps:
cluster_profile: aws
env:
AWS_INSTALL_USE_MINIMAL_PERMISSIONS: "yes"
AWS_METADATA_SERVICE_AUTH: Required
workflow: openshift-e2e-aws
timeout: 6h0m0s
- as: e2e-gcp-ovn
run_if_changed: (gcp|google)
steps:
cluster_profile: gcp
workflow: openshift-e2e-gcp
timeout: 6h0m0s
- always_run: false
as: e2e-gcp-default-config
optional: true
run_if_changed: (gcp|google)
steps:
cluster_profile: gcp
post:
- chain: ipi-gcp-post
pre:
- ref: ipi-conf
- ref: ipi-conf-gcp-default
- chain: ipi-install
timeout: 6h0m0s
- always_run: false
as: e2e-gcp-ovn-techpreview
optional: true
steps:
cluster_profile: gcp
env:
FEATURE_SET: TechPreviewNoUpgrade
workflow: openshift-e2e-gcp
timeout: 6h0m0s
- always_run: false
as: e2e-gcp-user-provisioned-dns
optional: true
steps:
cluster_profile: gcp
env:
FEATURE_SET: TechPreviewNoUpgrade
USER_PROVISIONED_DNS: "yes"
workflow: openshift-e2e-gcp
timeout: 6h0m0s
- as: e2e-gcp-secureboot
optional: true
run_if_changed: (gcp|google)
steps:
cluster_profile: gcp
workflow: openshift-e2e-gcp-secureboot
timeout: 6h0m0s
- as: e2e-gcp-ovn-byo-vpc
optional: true
run_if_changed: (gcp|google)
steps:
cluster_profile: gcp
workflow: openshift-e2e-gcp-byo-vpc
timeout: 6h0m0s
- always_run: false
as: e2e-azure-default-config
optional: true
run_if_changed: azure
steps:
cluster_profile: azure4
post:
- chain: ipi-azure-post
pre:
- ref: ipi-conf
- ref: ipi-conf-azure-default
- chain: ipi-install
timeout: 6h0m0s
- as: e2e-azure-ovn
run_if_changed: azure
steps:
cluster_profile: azure4
env:
USER_TAGS: |
keyA valueA
keyB valueB
keyC valueC
workflow: openshift-e2e-azure
timeout: 6h0m0s
- always_run: false
as: e2e-azure-ovn-techpreview
optional: true
steps:
cluster_profile: azure4
env:
FEATURE_SET: TechPreviewNoUpgrade
USER_TAGS: |
keyA valueA
keyB valueB
keyC valueC
workflow: openshift-e2e-azure
timeout: 6h0m0s
- as: e2e-azure-ovn-shared-vpc
optional: true
run_if_changed: azure
steps:
cluster_profile: azure4
workflow: openshift-e2e-azure-sharednetwork
timeout: 6h0m0s
- as: e2e-azure-ovn-resourcegroup
optional: true
steps:
cluster_profile: azure4
workflow: openshift-e2e-azure-resourcegroup
timeout: 6h0m0s
- always_run: false
as: e2e-aws-ovn-upgrade
optional: true
steps:
cluster_profile: aws
workflow: openshift-upgrade-aws-latestinstaller
timeout: 6h0m0s
- as: e2e-aws-ovn-upi
run_if_changed: ^(upi/aws/.*)|^(images/installer/Dockerfile\.upi.*)
steps:
cluster_profile: aws
workflow: openshift-e2e-aws-upi
timeout: 6h0m0s
- as: e2e-gcp-ovn-upi
run_if_changed: ^(upi/gcp/.*)|^(images/installer/Dockerfile\.upi.*)
steps:
cluster_profile: gcp
workflow: openshift-e2e-gcp-upi
timeout: 6h0m0s
- as: e2e-gcp-upi-xpn
optional: true
run_if_changed: ^(upi/gcp/.*)
steps:
cluster_profile: gcp
workflow: openshift-e2e-gcp-upi-xpn
timeout: 6h0m0s
- as: e2e-gcp-ovn-xpn
optional: true
run_if_changed: (gcp|google)
steps:
cluster_profile: gcp
workflow: openshift-e2e-gcp-xpn
timeout: 6h0m0s
- as: e2e-azure-ovn-upi
run_if_changed: ^(upi/(azure|azurestack)/.*)|^(images/installer/Dockerfile\.upi.*)
steps:
cluster_profile: azure4
workflow: openshift-e2e-azure-upi
timeout: 6h0m0s
- always_run: false
as: e2e-aws-ovn-workers-rhel8
optional: true
steps:
cluster_profile: aws
env:
PLATFORM_VERSION: "8.4"
workflow: openshift-e2e-aws-workers-rhel
timeout: 6h0m0s
- always_run: false
as: e2e-gcp-upgrade
optional: true
steps:
cluster_profile: gcp
workflow: openshift-upgrade-gcp-latestinstaller
timeout: 6h0m0s
- as: e2e-metal-ipi-ovn
cluster: build05
optional: true
run_if_changed: (baremetal|metal3|ironic)
steps:
cluster_profile: equinix-ocp-metal
env:
DEVSCRIPTS_CONFIG: |
IP_STACK=v4
NETWORK_TYPE=OVNKubernetes
workflow: baremetalds-e2e
timeout: 6h0m0s
- as: e2e-metal-ipi-ovn-swapped-hosts
cluster: build05
optional: true
run_if_changed: (baremetal|metal3|ironic)
steps:
cluster_profile: equinix-ocp-metal
env:
DEVSCRIPTS_CONFIG: |
IP_STACK=v4
NETWORK_TYPE=OVNKubernetes
HOSTS_SWAP_DEFINITION=true
workflow: baremetalds-e2e
timeout: 6h0m0s
- as: e2e-metal-ipi-ovn-ipv6
cluster: build05
run_if_changed: (baremetal|metal3|ironic)
steps:
cluster_profile: equinix-ocp-metal
env:
DEVSCRIPTS_CONFIG: |
IP_STACK=v6
NETWORK_TYPE=OVNKubernetes
workflow: baremetalds-e2e
timeout: 6h0m0s
- as: e2e-metal-ipi-ovn-dualstack
cluster: build05
optional: true
run_if_changed: (baremetal|metal3|ironic)
steps:
cluster_profile: equinix-ocp-metal
env:
DEVSCRIPTS_CONFIG: |
IP_STACK=v4v6
NETWORK_TYPE=OVNKubernetes
workflow: baremetalds-e2e
timeout: 6h0m0s
- as: e2e-metal-ipi-ovn-virtualmedia
cluster: build05
optional: true
run_if_changed: (baremetal|metal3|ironic)
steps:
cluster_profile: equinix-ocp-metal
workflow: baremetalds-e2e-virtualmedia
timeout: 6h0m0s
- as: e2e-openstack-ovn
run_if_changed: openstack|(^data/.*/rhcos\.json)
steps:
cluster_profile: openstack-vexxhost
env:
BASE_DOMAIN: shiftstack.devcluster.openshift.com
CONFIG_TYPE: minimal
TEST_SUITE: experimental/reliability/minimal
workflow: openshift-e2e-openstack-ipi
timeout: 6h0m0s
- as: e2e-openstack-dualstack-upi
optional: true
run_if_changed: (^images/openstack/)|(^docs/user/openstack/install_upi\.md$)|(^upi/openstack/)
steps:
cluster_profile: openstack-hwoffload
env:
CONFIG_TYPE: dual-stack-upi
OPENSTACK_COMPUTE_FLAVOR: m1.xlarge
OPENSTACK_TEST_SKIPS: The OpenStack platform creates Worker nodes in a server
group\|The OpenStack platform creates Control plane nodes in a server group
TEST_SKIPS: Services Secondary IP Family \[LinuxOnly\] should function for service
endpoints using hostNetwork\| Services Secondary IP Family \[LinuxOnly\] should
function for node-Service\| Services Secondary IP Family \[LinuxOnly\] should
function for pod-Service
TEST_SUITE: experimental/reliability/minimal
workflow: openshift-e2e-openstack-upi
timeout: 6h0m0s
- always_run: false
as: e2e-openstack-singlestackv6
optional: true
steps:
cluster_profile: openstack-hwoffload
workflow: openshift-e2e-openstack-singlestackv6
timeout: 6h0m0s
- as: e2e-openstack-proxy
optional: true
run_if_changed: openstack
steps:
cluster_profile: openstack-vh-mecha-central
workflow: openshift-e2e-openstack-proxy
timeout: 6h0m0s
- always_run: false
as: e2e-openstack-nfv-intel
optional: true
run_if_changed: openstack
steps:
cluster_profile: openstack-nfv
workflow: openshift-e2e-openstack-nfv-cgroupsv1
timeout: 6h0m0s
- always_run: false
as: e2e-openstack-externallb
optional: true
steps:
cluster_profile: openstack-vh-mecha-central
workflow: openshift-e2e-openstack-external-lb
timeout: 6h0m0s
- always_run: false
as: e2e-openstack-ccpmso
optional: true
steps:
cluster_profile: openstack-vexxhost
test:
- as: openstack-test-cpms
commands: |
dir=$GOPATH/src/github.com/openshift/cluster-control-plane-machine-set-operator
git clone https://github.com/openshift/cluster-control-plane-machine-set-operator --branch main --depth=1 $dir
export OPENSTACK_CONTROLPLANE_FLAVOR_ALTERNATE="$(<"${SHARED_DIR}/OPENSTACK_CONTROLPLANE_FLAVOR_ALTERNATE")"
cd $dir
make e2e-presubmit
from: src
resources:
requests:
cpu: 100m
workflow: openshift-e2e-openstack-ipi
timeout: 6h0m0s
- always_run: false
as: e2e-openstack-ccpmso-zone
optional: true
steps:
cluster_profile: openstack-vh-mecha-az0
test:
- as: openstack-test-cpms
commands: |
dir=$GOPATH/src/github.com/openshift/cluster-control-plane-machine-set-operator
git clone https://github.com/openshift/cluster-control-plane-machine-set-operator --branch main --depth=1 $dir
export OPENSTACK_CONTROLPLANE_FLAVOR_ALTERNATE="$(<"${SHARED_DIR}/OPENSTACK_CONTROLPLANE_FLAVOR_ALTERNATE")"
cd $dir
test -f "${SHARED_DIR}/proxy-conf.sh" && source "${SHARED_DIR}/proxy-conf.sh"
make e2e-presubmit
from: src
resources:
requests:
cpu: 100m
workflow: openshift-e2e-openstack-ipi
timeout: 6h0m0s
- as: openstack-manifests
run_if_changed: openstack
steps:
cluster_profile: openstack-vexxhost
workflow: openshift-manifests-openstack
timeout: 6h0m0s
- as: e2e-vsphere-ovn
run_if_changed: vsphere
steps:
cluster_profile: vsphere-elastic
workflow: openshift-e2e-vsphere
timeout: 6h0m0s
- as: e2e-vsphere-ovn-techpreview
optional: true
run_if_changed: vsphere
steps:
cluster_profile: vsphere-elastic
env:
FEATURE_SET: TechPreviewNoUpgrade
TEST_SKIPS: 'In-tree Volumes \[Driver: vsphere\] \[Testpattern: Inline-volume\|
In-tree Volumes \[Driver: vsphere\] \[Testpattern: Pre-provisioned PV'
workflow: openshift-e2e-vsphere
timeout: 6h0m0s
- as: e2e-vsphere-static-ovn
optional: true
steps:
cluster_profile: vsphere-elastic
workflow: openshift-e2e-vsphere-staticip
timeout: 6h0m0s
- as: e2e-vsphere-ovn-multi-network
optional: true
steps:
cluster_profile: vsphere-elastic
env:
FEATURE_GATES: '["VSphereMultiNetworks=true"]'
FEATURE_SET: CustomNoUpgrade
MULTI_NIC_IPI: "true"
observers:
enable:
- observers-resource-watch
workflow: openshift-e2e-vsphere
- as: e2e-vsphere-ovn-upi
run_if_changed: (^(upi/vsphere/.*)|^(images/installer/Dockerfile\.upi.*))
steps:
cluster_profile: vsphere-elastic
workflow: openshift-e2e-vsphere-upi
timeout: 6h0m0s
- as: e2e-vsphere-ovn-upi-zones
optional: true
run_if_changed: (^(upi/vsphere/.*)|^(images/installer/Dockerfile\.upi.*))
steps:
cluster_profile: vsphere-elastic
workflow: openshift-e2e-vsphere-upi-zones
timeout: 6h0m0s
- as: e2e-vsphere-ovn-zones
optional: true
run_if_changed: vsphere
steps:
cluster_profile: vsphere-elastic
workflow: openshift-e2e-vsphere-zones
timeout: 6h0m0s
- as: e2e-vsphere-ovn-zones-techpreview
optional: true
run_if_changed: vsphere
steps:
cluster_profile: vsphere-elastic
env:
FEATURE_SET: TechPreviewNoUpgrade
workflow: openshift-e2e-vsphere-zones
timeout: 6h0m0s
- always_run: false
as: e2e-vsphere-multi-vcenter-ovn
optional: true
run_if_changed: vsphere
steps:
cluster_profile: vsphere-elastic
env:
POOLS: vcenter.ci.ibmc.devcluster.openshift.com-cidatacenter-cicluster vcenter.ci.ibmc.devcluster.openshift.com-cidatacenter-1-cicluster-1
vcenter-1.ci.ibmc.devcluster.openshift.com-cidatacenter-2-cicluster-3
TEST_SKIPS: 'In-tree Volumes \[Driver: vsphere\]'
workflow: openshift-e2e-vsphere-multi-vcenter
timeout: 6h0m0s
- always_run: false
as: e2e-crc
optional: true
steps:
cluster_profile: gcp
workflow: openshift-e2e-gcp-crc
timeout: 6h0m0s
- as: e2e-metal-assisted
optional: true
run_if_changed: (baremetal|metal3|ironic)
steps:
cluster_profile: packet-assisted
workflow: assisted-baremetal
timeout: 6h0m0s
- as: e2e-aws-ovn-single-node
optional: true
run_if_changed: aws
steps:
cluster_profile: aws
workflow: openshift-e2e-aws-single-node
timeout: 6h0m0s
- as: e2e-metal-single-node-live-iso
optional: true
run_if_changed: (baremetal|metal3|ironic)
steps:
cluster_profile: packet-sno
workflow: baremetalds-sno
timeout: 6h0m0s
- as: e2e-aws-ovn-fips
optional: true
run_if_changed: aws
steps:
cluster_profile: aws
env:
FIPS_ENABLED: "true"
TEST_SUITE: openshift/conformance/parallel
pre:
- chain: ipi-aws-pre
- ref: fips-check
test:
- ref: openshift-e2e-test
workflow: ipi-aws
timeout: 6h0m0s
- as: e2e-azurestack
cluster: build01
optional: true
run_if_changed: (azure|azurestack)
steps:
cluster_profile: azurestack-qe
workflow: openshift-e2e-azurestack
timeout: 6h0m0s
- as: e2e-azurestack-upi
cluster: build01
optional: true
run_if_changed: ^(upi/(azure|azurestack)/.*)
steps:
cluster_profile: azurestack-qe
workflow: openshift-e2e-azurestack-upi
timeout: 6h0m0s
- as: e2e-ibmcloud-ovn
optional: true
run_if_changed: ibmcloud
steps:
cluster_profile: ibmcloud
workflow: openshift-e2e-ibmcloud
timeout: 6h0m0s
- as: e2e-nutanix-ovn
cluster: build01
optional: true
run_if_changed: (^(data/.*|pkg/.*|images)/nutanix/)|(^vendor/github.com/nutanix.*/)
steps:
cluster_profile: nutanix
workflow: openshift-e2e-nutanix-ovn
timeout: 6h0m0s
- always_run: false
as: e2e-powervs-capi-ovn
cluster: build01
optional: true
steps:
cluster_profile: powervs-5
dependencies:
OPENSHIFT_INSTALL_RELEASE_IMAGE_OVERRIDE: release:ppc64le-latest
env:
ARCH: ppc64le
BRANCH: master
CLUSTER_NAME_MODIFIER: capi-master
INSTALLER: powervs
TEST_TYPE: conformance-parallel
workflow: openshift-e2e-powervs-ipi
timeout: 6h0m0s
- as: integration-tests-nodejoiner
run_if_changed: ^(cmd|pkg|data).*/(agent|node-joiner)/
steps:
test:
- as: integration-tests-nodejoiner
commands: |
hack/go-integration-test-nodejoiner.sh
from: src-oc
resources:
requests:
cpu: 100m
- as: integration-tests
run_if_changed: ^(cmd|pkg|data).*/(agent|imagebased)/
steps:
test:
- as: integration-tests
commands: |
export AUTH_FILE=/var/secrets/registry-pull-secret/.dockerconfigjson
hack/go-integration-test.sh
credentials:
- mount_path: /var/secrets/registry-pull-secret
name: registry-pull-credentials
namespace: test-credentials
dependencies:
- env: OPENSHIFT_INSTALL_RELEASE_IMAGE_OVERRIDE
name: release:latest
from: src-oc