forked from openshift/release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_config.yaml
6164 lines (6164 loc) · 184 KB
/
_config.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
cluster_groups:
bastion:
- build01
- build02
build_farm:
- app.ci
- build01
- build02
- build03
- build04
- build05
- build09
- build10
- build11
- vsphere02
managed_clusters:
- app.ci
- build01
- build02
- build03
- build04
- build05
- build09
- build10
- build11
- hosted-mgmt
- master
non_app_ci:
- build01
- build02
- build03
- build04
- build05
- build09
- build10
- build11
- vsphere02
openshift_config_pull_secret:
- build01
- build02
- build09
- build10
- build11
- vsphere02
osd_global_pull_secret:
- build03
- build04
- build05
secret_configs:
- from:
ops-mirror.pem:
field: cert-key.pem
item: mirror.openshift.com
rh-cdn.pem:
field: rh-cdn.pem
item: rh-cdn
to:
- cluster_groups:
- build_farm
name: mirror.openshift.com
namespace: ocp
- from:
authorized_keys:
field: authorized_keys
item: sshd-bastion-slack-bot-alpha
to:
- cluster: app.ci
name: sshd-slack-bot-alpha-authorized-keys
namespace: ci
- from:
ssh_host_dsa_key:
field: ssh_host_dsa_key
item: sshd-bastion-slack-bot-alpha
ssh_host_ecdsa_key:
field: ssh_host_ecdsa_key
item: sshd-bastion-slack-bot-alpha
ssh_host_ed25519_key:
field: ssh_host_ed25519_key
item: sshd-bastion-slack-bot-alpha
ssh_host_rsa_key:
field: ssh_host_rsa_key
item: sshd-bastion-slack-bot-alpha
to:
- cluster: app.ci
name: sshd-slack-bot-alpha-host-keys
namespace: ci
- from:
authorized_keys:
field: authorized_keys
item: sshd-bastion-z
to:
- cluster_groups:
- bastion
name: sshd-authorized-keys
namespace: bastion-z
- from:
ssh_host_dsa_key:
field: ssh_host_dsa_key
item: sshd-bastion-z
ssh_host_ecdsa_key:
field: ssh_host_ecdsa_key
item: sshd-bastion-z
ssh_host_ed25519_key:
field: ssh_host_ed25519_key
item: sshd-bastion-z
ssh_host_rsa_key:
field: ssh_host_rsa_key
item: sshd-bastion-z
to:
- cluster_groups:
- bastion
name: sshd-host-keys
namespace: bastion-z
- from:
authorized_keys:
field: authorized_keys
item: sshd-bastion-ppc64le
to:
- cluster_groups:
- bastion
name: sshd-authorized-keys
namespace: bastion-ppc64le
- from:
ssh_host_dsa_key:
field: ssh_host_dsa_key
item: sshd-bastion-ppc64le
ssh_host_ecdsa_key:
field: ssh_host_ecdsa_key
item: sshd-bastion-ppc64le
ssh_host_ed25519_key:
field: ssh_host_ed25519_key
item: sshd-bastion-ppc64le
ssh_host_rsa_key:
field: ssh_host_rsa_key
item: sshd-bastion-ppc64le
to:
- cluster_groups:
- bastion
name: sshd-host-keys
namespace: bastion-ppc64le
- from:
authorized_keys:
field: authorized_keys
item: sshd-bastion-ppc64le-libvirt
to:
- cluster_groups:
- bastion
name: sshd-authorized-keys
namespace: bastion-ppc64le-libvirt
- from:
ssh_host_dsa_key:
field: ssh_host_dsa_key
item: sshd-bastion-ppc64le-libvirt
ssh_host_ecdsa_key:
field: ssh_host_ecdsa_key
item: sshd-bastion-ppc64le-libvirt
ssh_host_ed25519_key:
field: ssh_host_ed25519_key
item: sshd-bastion-ppc64le-libvirt
ssh_host_rsa_key:
field: ssh_host_rsa_key
item: sshd-bastion-ppc64le-libvirt
to:
- cluster_groups:
- bastion
name: sshd-host-keys
namespace: bastion-ppc64le-libvirt
- from:
authorized_keys:
field: authorized_keys
item: sshd-bastion-telco
to:
- cluster_groups:
- bastion
name: sshd-authorized-keys
namespace: bastion-telco
- from:
ssh_host_dsa_key:
field: ssh_host_dsa_key
item: sshd-bastion-telco
ssh_host_ecdsa_key:
field: ssh_host_ecdsa_key
item: sshd-bastion-telco
ssh_host_ed25519_key:
field: ssh_host_ed25519_key
item: sshd-bastion-telco
ssh_host_rsa_key:
field: ssh_host_rsa_key
item: sshd-bastion-telco
to:
- cluster_groups:
- bastion
name: sshd-host-keys
namespace: bastion-telco
- from:
api:
field: api-key
item: openshift-bugzilla-robot
to:
- cluster_groups:
- build_farm
name: bugzilla-credentials-openshift-bugzilla-robot
namespace: ci
- from:
oauth:
field: github-oauth-token
item: openshift-bot
to:
- cluster: app.ci
name: github-credentials-openshift-bot
namespace: ci
- from:
oauth:
field: github-oauth-token
item: openshift-cherrypick-robot
to:
- cluster: app.ci
name: github-credentials-openshift-cherrypick-robot
namespace: ci
- from:
oauth:
field: github-oauth-token
item: openshift-ci-robot
to:
- cluster: app.ci
name: github-credentials-openshift-ci-robot
namespace: ci
- from:
oauth:
field: github-oauth-token
item: openshift-merge-robot
to:
- cluster: app.ci
name: github-credentials-openshift-merge-robot
namespace: ci
- from:
oauth:
field: github-oauth-token-peribolos
item: openshift-merge-robot
to:
- cluster: app.ci
name: github-credentials-openshift-merge-robot-peribolos-token
namespace: ci
- from:
oauth:
field: private-git-cloner
item: openshift-ci-robot
to:
- cluster_groups:
- build_farm
name: github-credentials-openshift-ci-robot-private-git-cloner
namespace: ci
- from:
oauth:
field: oauth-token
item: slack-credentials-prow
to:
- cluster: app.ci
name: slack-credentials-prow
namespace: ci
- from:
url:
field: url
item: ci-slack-api-url
to:
- cluster: app.ci
name: ci-slack-api-url
namespace: ci
- from:
integration_key:
field: integration_key
item: pagerduty
token:
field: token
item: pagerduty
to:
- cluster: app.ci
name: pagerduty
namespace: ci
- from:
config.json:
field: client-configuration
item: prow.ci.openshift.org
to:
- cluster: app.ci
name: github-app-credentials
namespace: ci
- from:
config.json:
field: client-configuration
item: deck-internal-ci.apps.ci.l2s4.p1.openshiftapps.com
to:
- cluster: app.ci
name: github-app-credentials-private
namespace: ci
- from:
config.json:
field: client-configuration
item: qe-private-deck-ci.apps.ci.l2s4.p1.openshiftapps.com
to:
- cluster: app.ci
name: github-app-qe-private-deck
namespace: ci
- from:
cookie:
field: cookie32
item: prow.ci.openshift.org
to:
- cluster: app.ci
name: cookie
namespace: ci
- from:
hmac:
field: hmac-token
item: hmac
hmac.yaml:
field: ci-bot-github-app-combined.yaml
item: hmac
to:
- cluster: app.ci
name: github-webhook-credentials
namespace: ci
- from:
api-key:
field: api-key
item: unsplash.com
to:
- cluster: app.ci
name: unsplash-api-key
namespace: ci
- from:
service-account.json:
field: credentials.json
item: gcs-publisher
to:
- cluster_groups:
- build_farm
name: gce-sa-credentials-gcs-publisher
namespace: ci
- cluster_groups:
- build_farm
name: gce-sa-credentials-gcs-publisher
namespace: test-credentials
- from:
service-account.json:
field: credentials.json
item: gcs-tide-publisher
to:
- cluster: app.ci
name: gce-sa-credentials-gcs-tide-publisher
namespace: ci
- from:
service-account.json:
field: credentials.json
item: resource-usage-data-publisher
to:
- cluster_groups:
- build_farm
name: gce-sa-credentials-resource-usage-data-publisher
namespace: ci
- from:
service-account.json:
field: credentials.json
item: gcs-private
to:
- cluster_groups:
- build_farm
name: gce-sa-credentials-gcs-private
namespace: ci
- from:
service-account.json:
field: credentials.json
item: gcs-qe-private-deck
to:
- cluster_groups:
- build_farm
name: gce-sa-credentials-gcs-qe-private-deck
namespace: ci
- from:
service-account.json:
field: credentials.json
item: gcs-crier-publisher
to:
- cluster: app.ci
name: gce-sa-credentials-gcs-crier-publisher
namespace: ci
- from:
config.json:
field: push-credentials
item: quay.io/openshift-knative
to:
- cluster: app.ci
name: registry-push-credentials-quay.io-openshift-knative
namespace: ci
- from:
config.json:
field: push-credentials
item: quay.io/openshift-kni
to:
- cluster: app.ci
name: registry-push-credentials-quay.io-openshift-kni
namespace: ci
- from:
config.json:
field: push-credentials
item: quay.io/openshiftio
to:
- cluster: app.ci
name: registry-push-credentials-quay.io-openshiftio
namespace: ci
- from:
config.json:
field: push-credentials
item: quay.io/openshift-pipeline
to:
- cluster: app.ci
name: registry-push-credentials-quay.io-openshift-pipeline
namespace: ci
- from:
config.json:
field: push-credentials
item: quay.io/codeready-toolchain
to:
- cluster: app.ci
name: registry-push-credentials-quay.io-codeready-toolchain
namespace: ci
- from:
config.json:
field: push-credentials
item: quay.io/integr8ly
to:
- cluster: app.ci
name: registry-push-credentials-quay.io-integr8ly
namespace: ci
- from:
.dockerconfigjson:
dockerconfigJSON:
- auth_field: push-token
item: quay.io/openshift-psap
registry_url: quay.io
- auth_field: token_image-puller_app.ci_reg_auth_value.txt
item: build_farm
registry_url: registry.ci.openshift.org
to:
- cluster: app.ci
name: registry-push-credentials-quay.io-openshift-psap
namespace: ci
type: kubernetes.io/dockerconfigjson
- from:
config.json:
field: config.json
item: quay.io/ovirt
to:
- cluster: app.ci
name: registry-push-credentials-quay.io-ovirt
namespace: ci
- from:
config.json:
field: push-credentials
item: quay.io/redhat-developer
to:
- cluster: app.ci
name: registry-push-credentials-quay.io-redhat-developer
namespace: ci
- from:
config.json:
field: docker.cfg
item: quay.io/open-cluster-management
to:
- cluster: app.ci
name: registry-push-credentials-quay.io-open-cluster-management
namespace: ci
- from:
.dockerconfigjson:
dockerconfigJSON:
- auth_field: push-token
item: quay.io/openshift-ocs-dev
registry_url: quay.io
- auth_field: token_image-puller_app.ci_reg_auth_value.txt
item: build_farm
registry_url: registry.ci.openshift.org
to:
- cluster: app.ci
name: registry-push-credentials-quay.io-ocs-dev
namespace: ci
type: kubernetes.io/dockerconfigjson
- from:
.dockerconfigjson:
dockerconfigJSON:
- auth_field: push-token
item: quay.io/openshift-azure
registry_url: quay.io
to:
- cluster: app.ci
name: registry-push-credentials-quay.io-openshift-azure
namespace: ci
type: kubernetes.io/dockerconfigjson
- from:
config.json:
field: pull-credentials
item: quay.io
to:
- cluster: app.ci
name: files-pull-secret
namespace: ci-release
- cluster: app.ci
name: files-pull-secret
namespace: ci-release-priv
- cluster: app.ci
name: files-pull-secret
namespace: ci-release-ppc64le
- cluster: app.ci
name: files-pull-secret
namespace: ci-release-ppc64le-priv
- cluster: app.ci
name: files-pull-secret
namespace: ci-release-s390x
- cluster: app.ci
name: files-pull-secret
namespace: ci-release-s390x-priv
- cluster: app.ci
name: files-pull-secret
namespace: ci-release-arm64
- cluster: app.ci
name: files-pull-secret
namespace: ci-release-arm64-priv
- cluster: app.ci
name: files-pull-secret
namespace: ci-release-multi
- cluster: app.ci
name: files-pull-secret
namespace: ci-release-multi-priv
- cluster: app.ci
name: git-pull-secret
namespace: ci-release
- cluster: app.ci
name: git-pull-secret
namespace: ci-release-priv
- cluster: app.ci
name: git-pull-secret
namespace: ci-release-ppc64le
- cluster: app.ci
name: git-pull-secret
namespace: ci-release-ppc64le-priv
- cluster: app.ci
name: git-pull-secret
namespace: ci-release-s390x
- cluster: app.ci
name: git-pull-secret
namespace: ci-release-s390x-priv
- cluster: app.ci
name: git-pull-secret
namespace: ci-release-arm64
- cluster: app.ci
name: git-pull-secret
namespace: ci-release-arm64-priv
- cluster: app.ci
name: git-pull-secret
namespace: ci-release-multi
- cluster: app.ci
name: git-pull-secret
namespace: ci-release-multi-priv
- cluster: app.ci
name: source
namespace: ci-release
- cluster: app.ci
name: source
namespace: ci-release-priv
- cluster: app.ci
name: source
namespace: ci-release-ppc64le
- cluster: app.ci
name: source
namespace: ci-release-ppc64le-priv
- cluster: app.ci
name: source
namespace: ci-release-s390x
- cluster: app.ci
name: source
namespace: ci-release-s390x-priv
- cluster: app.ci
name: source
namespace: ci-release-arm64
- cluster: app.ci
name: source
namespace: ci-release-arm64-priv
- cluster: app.ci
name: source
namespace: ci-release-multi
- cluster: app.ci
name: source
namespace: ci-release-multi-priv
- from:
.dockerconfigjson:
dockerconfigJSON:
- auth_field: token_image-puller_app.ci_reg_auth_value.txt
item: build_farm
registry_url: registry.ci.openshift.org
- auth_field: auth
email_field: email
item: cloud.openshift.com-pull-secret
registry_url: cloud.openshift.com
- auth_field: auth
email_field: email
item: quay.io-pull-secret
registry_url: quay.io
- auth_field: auth
email_field: email
item: registry.connect.redhat.com-pull-secret
registry_url: registry.connect.redhat.com
- auth_field: auth
email_field: email
item: registry.redhat.io-pull-secret
registry_url: registry.redhat.io
- auth_field: auth
item: quayio-ci-read-only-robot
registry_url: quay-proxy.ci.openshift.org
- auth_field: auth
item: quayio-ci-read-only-robot
registry_url: quay.io/openshift/ci
- auth_field: auth
item: quayio-ci-read-only-robot
registry_url: quay.io/openshift/network-edge-testing
- auth_field: auth
item: quayio-ci-read-only-robot
registry_url: qci-pull-through-cache-us-east-1-ci.apps.ci.l2s4.p1.openshiftapps.com
to:
- cluster_groups:
- non_app_ci
name: ci-pull-credentials
namespace: ci
type: kubernetes.io/dockerconfigjson
- cluster_groups:
- build_farm
name: ci-pull-credentials
namespace: test-credentials
type: kubernetes.io/dockerconfigjson
- cluster: app.ci
name: ci-pull-credentials
namespace: ci-release
type: kubernetes.io/dockerconfigjson
- cluster: app.ci
name: ci-pull-credentials
namespace: ci-release-priv
type: kubernetes.io/dockerconfigjson
- cluster: app.ci
name: ci-pull-credentials
namespace: ci-release-ppc64le
type: kubernetes.io/dockerconfigjson
- cluster: app.ci
name: ci-pull-credentials
namespace: ci-release-ppc64le-priv
type: kubernetes.io/dockerconfigjson
- cluster: app.ci
name: ci-pull-credentials
namespace: ci-release-s390x
type: kubernetes.io/dockerconfigjson
- cluster: app.ci
name: ci-pull-credentials
namespace: ci-release-s390x-priv
type: kubernetes.io/dockerconfigjson
- cluster: app.ci
name: ci-pull-credentials
namespace: ci-release-arm64
type: kubernetes.io/dockerconfigjson
- cluster: app.ci
name: ci-pull-credentials
namespace: ci-release-arm64-priv
type: kubernetes.io/dockerconfigjson
- from:
.dockerconfigjson:
dockerconfigJSON:
- auth_field: token_image-puller_app.ci_reg_auth_value.txt
item: build_farm
registry_url: registry.ci.openshift.org
- auth_field: cloud.openshift.com-auth
email_field: cloud.openshift.com-email
item: build-farm-global-pull-secret
registry_url: cloud.openshift.com
- auth_field: quay.io-auth
email_field: quay.io-email
item: build-farm-global-pull-secret
registry_url: quay.io
- auth_field: registry.connect.redhat.com-auth
email_field: registry.connect.redhat.com-email
item: build-farm-global-pull-secret
registry_url: registry.connect.redhat.com
- auth_field: registry.redhat.io-auth
email_field: registry.redhat.io-email
item: build-farm-global-pull-secret
registry_url: registry.redhat.io
- auth_field: auth
item: quayio-ci-read-only-robot
registry_url: quay-proxy.ci.openshift.org
- auth_field: auth
item: quayio-ci-read-only-robot
registry_url: quay.io/openshift/ci
- auth_field: auth
item: quayio-ci-read-only-robot
registry_url: quay.io/openshift/network-edge-testing
- auth_field: auth
item: quayio-ci-read-only-robot
registry_url: qci-pull-through-cache-us-east-1-ci.apps.ci.l2s4.p1.openshiftapps.com
to:
- cluster_groups:
- openshift_config_pull_secret
name: pull-secret
namespace: openshift-config
type: kubernetes.io/dockerconfigjson
- from:
.awscred:
field: .awscred
item: cluster-bot-osd-ephemeral
aws-account-id:
field: aws-account-id
item: cluster-bot-osd-ephemeral
pull-secret:
dockerconfigJSON:
- auth_field: token_image-puller_app.ci_reg_auth_value.txt
item: build_farm
registry_url: registry.ci.openshift.org
- auth_field: auth
email_field: email
item: cloud.openshift.com-pull-secret
registry_url: cloud.openshift.com
- auth_field: auth
email_field: email
item: quay.io-pull-secret
registry_url: quay.io
- auth_field: auth
email_field: email
item: registry.connect.redhat.com-pull-secret
registry_url: registry.connect.redhat.com
- auth_field: auth
email_field: email
item: registry.redhat.io-pull-secret
registry_url: registry.redhat.io
sso-client-id:
field: ocm-developer-productivity-staging.user
item: cluster-bot-osd-ephemeral
sso-client-secret:
field: ocm-developer-productivity-staging.token
item: cluster-bot-osd-ephemeral
to:
- cluster_groups:
- non_app_ci
name: cluster-secrets-osd-ephemeral
namespace: ci
- from:
.awscred:
field: .awscred
item: jenkins-ci-iam
insights-live.yaml:
field: insights-live.yaml
item: insights-ci-account
ops-mirror.pem:
field: cert-key.pem
item: mirror.openshift.com
pull-secret:
dockerconfigJSON:
- auth_field: token_image-puller_app.ci_reg_auth_value.txt
item: build_farm
registry_url: registry.ci.openshift.org
- auth_field: auth
email_field: email
item: cloud.openshift.com-pull-secret
registry_url: cloud.openshift.com
- auth_field: auth
email_field: email
item: quay.io-pull-secret
registry_url: quay.io
- auth_field: auth
email_field: email
item: registry.connect.redhat.com-pull-secret
registry_url: registry.connect.redhat.com
- auth_field: auth
email_field: email
item: registry.redhat.io-pull-secret
registry_url: registry.redhat.io
ssh-privatekey:
field: ssh-privatekey
item: jenkins-ci-iam
ssh-publickey:
field: ssh-publickey
item: jenkins-ci-iam
to:
- cluster_groups:
- non_app_ci
name: cluster-secrets-aws
namespace: ci
- from:
insights-live.yaml:
field: insights-live.yaml
item: insights-ci-account
ops-mirror.pem:
field: cert-key.pem
item: mirror.openshift.com
pull-secret:
dockerconfigJSON:
- auth_field: token_image-puller_app.ci_reg_auth_value.txt
item: build_farm
registry_url: registry.ci.openshift.org
- auth_field: auth
email_field: email
item: cloud.openshift.com-pull-secret
registry_url: cloud.openshift.com
- auth_field: auth
email_field: email
item: quay.io-pull-secret
registry_url: quay.io
- auth_field: auth
item: quay.io/multi-arch
registry_url: quay.io/multi-arch
- auth_field: auth
email_field: email
item: registry.connect.redhat.com-pull-secret
registry_url: registry.connect.redhat.com
- auth_field: auth
email_field: email
item: registry.redhat.io-pull-secret
registry_url: registry.redhat.io
ssh-privatekey:
field: ssh-privatekey
item: jenkins-ci-iam
ssh-publickey:
field: ssh-publickey
item: jenkins-ci-iam
to:
- cluster_groups:
- non_app_ci
name: cluster-secrets-aws-arm64
namespace: ci
- from:
pull-secret:
dockerconfigJSON:
- auth_field: token_image-puller_app.ci_reg_auth_value.txt
item: build_farm
registry_url: registry.ci.openshift.org
- auth_field: auth
email_field: email
item: cloud.openshift.com-pull-secret
registry_url: cloud.openshift.com
- auth_field: auth
email_field: email
item: quay.io-pull-secret
registry_url: quay.io
- auth_field: auth
item: quay.io/multi-arch
registry_url: quay.io/multi-arch
- auth_field: auth
email_field: email
item: registry.connect.redhat.com-pull-secret
registry_url: registry.connect.redhat.com
- auth_field: auth
email_field: email
item: registry.redhat.io-pull-secret
registry_url: registry.redhat.io
to:
- cluster_groups:
- non_app_ci
name: cluster-secrets-aws-qe
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-aws-1-qe
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-aws-autorelease-qe
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-aws-sd-qe
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-fleet-manager-qe
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-aws-terraform-qe
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-aws-perfscale
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-aws-perfscale-qe
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-aws-perfscale-lrc-qe
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-aws-outpost-qe
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-aws-rhtap-qe
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-aws-konflux-qe
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-aws-rhtap-performance
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-aws-devfile
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-medik8s-aws
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-aws-pipelines-performance
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-aws-rhdh-performance
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-gitops-aws
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-che-aws
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-quay-aws
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-aws-edge-infra
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-devsandboxci-aws
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-odf-aws
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-aws-serverless
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-aws-sustaining-autorelease-412
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-aws-stackrox
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-aws-kubevirt
namespace: ci
- cluster_groups:
- non_app_ci
name: cluster-secrets-aro-redhat-tenant
namespace: ci
- from:
pull-secret:
dockerconfigJSON:
- auth_field: token_image-puller_app.ci_reg_auth_value.txt
item: build_farm
registry_url: registry.ci.openshift.org
- auth_field: auth
email_field: email
item: cloud.openshift.com-pull-secret
registry_url: cloud.openshift.com
- auth_field: auth
email_field: email
item: quay.io-pull-secret
registry_url: quay.io
- auth_field: auth
item: quay.io/multi-arch
registry_url: quay.io/multi-arch
- auth_field: auth
email_field: email
item: registry.connect.redhat.com-pull-secret
registry_url: registry.connect.redhat.com
- auth_field: auth
email_field: email
item: registry.redhat.io-pull-secret
registry_url: registry.redhat.io
to:
- cluster_groups:
- non_app_ci
name: cluster-secrets-aws-china-qe
namespace: ci