forked from openshift/release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
infra-periodics.yaml
1198 lines (1187 loc) · 32.9 KB
/
infra-periodics.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
periodics:
- agent: kubernetes
cluster: build01
cron: 30 7 * * *
decorate: true
labels:
ci.openshift.io/role: infra
name: periodic-build01-upgrade
spec:
containers:
- args:
- adm
- upgrade
- --to-latest
command:
- /usr/bin/oc
image: registry.svc.ci.openshift.org/ocp/4.5:cli
imagePullPolicy: Always
name: ""
resources:
requests:
cpu: 500m
serviceAccountName: upgrader
- agent: kubernetes
cluster: api.ci
cron: '@yearly'
decorate: true
labels:
ci.openshift.io/role: infra
name: periodic-bugzilla-refresh
spec:
containers:
- args:
- |-
--query=is:pr
state:open
label:bugzilla/invalid-bug
-label:bugzilla/valid-bug
- --token=/etc/oauth/oauth
- --updated=0
- |-
--comment=/bugzilla refresh
The requirements for Bugzilla bugs have changed, recalculating validity.
- --ceiling=0
- --confirm
command:
- /app/robots/commenter/app.binary
image: gcr.io/k8s-prow/commenter:v20200805-d23520775f
imagePullPolicy: Always
name: ""
resources:
requests:
cpu: 500m
volumeMounts:
- mountPath: /etc/oauth
name: token
volumes:
- name: token
secret:
secretName: github-credentials-openshift-bot
- agent: kubernetes
cluster: api.ci
cron: 0 1 * * *
decorate: true
labels:
ci.openshift.io/role: infra
name: periodic-daily-bugzilla-refresh
spec:
containers:
- args:
- |-
--query=is:pr
state:open
label:bugzilla/invalid-bug
label:lgtm
-label:bugzilla/valid-bug
-label:do-not-merge
-label:do-not-merge/work-in-progress
-label:do-not-merge/hold
-label:needs-rebase
-label:needs-ok-to-test
- --token=/etc/oauth/oauth
- --updated=0
- |-
--comment=/bugzilla refresh
Recalculating validity in case the underlying Bugzilla bug has changed.
- --ceiling=0
- --confirm
command:
- /app/robots/commenter/app.binary
image: gcr.io/k8s-prow/commenter:v20200805-d23520775f
imagePullPolicy: Always
name: ""
resources:
requests:
cpu: 500m
volumeMounts:
- mountPath: /etc/oauth
name: token
volumes:
- name: token
secret:
secretName: github-credentials-openshift-bot
- agent: kubernetes
cluster: api.ci
decorate: true
interval: 12m
labels:
ci.openshift.io/role: infra
name: periodic-retester
spec:
containers:
- args:
- |-
--query=is:pr
state:open
label:lgtm
label:approved
status:failure
-label:do-not-merge
-label:do-not-merge/work-in-progress
-label:do-not-merge/hold
-label:needs-rebase
-label:needs-ok-to-test
org:openshift
org:openshift-priv
repo:operator-framework/operator-sdk
repo:operator-framework/operator-lifecycle-manager
repo:operator-framework/operator-marketplace
repo:operator-framework/operator-registry
repo:tnozicka/openshift-acme
- --token=/etc/oauth/oauth
- --updated=0
- |-
--comment=/retest
Please review the [full test history](https://prow.ci.openshift.org/pr-history/?org={{.Org}}&repo={{.Repo}}&pr={{.Number}}) for this PR and help us cut down flakes.
- --template
- --ceiling=5
- --confirm
- --random
command:
- /app/robots/commenter/app.binary
image: gcr.io/k8s-prow/commenter:v20200805-d23520775f
imagePullPolicy: Always
name: ""
resources:
requests:
cpu: 500m
volumeMounts:
- mountPath: /etc/oauth
name: token
volumes:
- name: token
secret:
secretName: github-credentials-openshift-bot
- agent: kubernetes
cluster: api.ci
decorate: true
interval: 6h
labels:
ci.openshift.io/role: infra
name: periodic-issue-close
spec:
containers:
- args:
- |-
--query=org:openshift
repo:operator-framework/operator-sdk
repo:tnozicka/openshift-acme
-label:lifecycle/frozen
label:lifecycle/rotten
- --updated=720h
- --token=/etc/oauth/oauth
- |-
--comment=Rotten issues close after 30d of inactivity.
Reopen the issue by commenting `/reopen`.
Mark the issue as fresh by commenting `/remove-lifecycle rotten`.
Exclude this issue from closing again by commenting `/lifecycle frozen`.
/close
- --template
- --ceiling=10
- --confirm
command:
- /app/robots/commenter/app.binary
image: gcr.io/k8s-prow/commenter:v20200805-d23520775f
imagePullPolicy: Always
name: ""
resources:
requests:
cpu: 500m
volumeMounts:
- mountPath: /etc/oauth
name: token
volumes:
- name: token
secret:
secretName: github-credentials-openshift-bot
- agent: kubernetes
cluster: api.ci
decorate: true
interval: 6h
labels:
ci.openshift.io/role: infra
name: periodic-issue-rotten
spec:
containers:
- args:
- |-
--query=org:openshift
repo:operator-framework/operator-sdk
repo:tnozicka/openshift-acme
-label:lifecycle/frozen
label:lifecycle/stale
-label:lifecycle/rotten
- --updated=720h
- --token=/etc/oauth/oauth
- |-
--comment=Stale issues rot after 30d of inactivity.
Mark the issue as fresh by commenting `/remove-lifecycle rotten`.
Rotten issues close after an additional 30d of inactivity.
Exclude this issue from closing by commenting `/lifecycle frozen`.
If this issue is safe to close now please do so with `/close`.
/lifecycle rotten
/remove-lifecycle stale
- --template
- --ceiling=10
- --confirm
command:
- /app/robots/commenter/app.binary
image: gcr.io/k8s-prow/commenter:v20200805-d23520775f
imagePullPolicy: Always
name: ""
resources:
requests:
cpu: 500m
volumeMounts:
- mountPath: /etc/oauth
name: token
volumes:
- name: token
secret:
secretName: github-credentials-openshift-bot
- agent: kubernetes
cluster: api.ci
decorate: true
interval: 6h
labels:
ci.openshift.io/role: infra
name: periodic-issue-stale
spec:
containers:
- args:
- |-
--query=org:openshift
repo:operator-framework/operator-sdk
repo:tnozicka/openshift-acme
-label:lifecycle/frozen
-label:lifecycle/stale
-label:lifecycle/rotten
- --updated=2160h
- --token=/etc/oauth/oauth
- |-
--comment=Issues go stale after 90d of inactivity.
Mark the issue as fresh by commenting `/remove-lifecycle stale`.
Stale issues rot after an additional 30d of inactivity and eventually close.
Exclude this issue from closing by commenting `/lifecycle frozen`.
If this issue is safe to close now please do so with `/close`.
/lifecycle stale
- --template
- --ceiling=10
- --confirm
command:
- /app/robots/commenter/app.binary
image: gcr.io/k8s-prow/commenter:v20200805-d23520775f
imagePullPolicy: Always
name: ""
resources:
requests:
cpu: 500m
volumeMounts:
- mountPath: /etc/oauth
name: token
volumes:
- name: token
secret:
secretName: github-credentials-openshift-bot
- agent: kubernetes
cluster: api.ci
decorate: true
decoration_config:
timeout: 8h0m0s
interval: 24h
labels:
ci.openshift.io/role: infra
name: periodic-label-sync
spec:
containers:
- args:
- --config=/etc/config/labels.yaml
- --confirm=true
- --orgs=openshift,cri-o,operator-framework,openshift-priv,redhat-operator-ecosystem,openshift-psap,openshift-metal3
- --token=/etc/github/oauth
- --endpoint=http://ghproxy
- --graphql-endpoint=http://ghproxy/graphql
- --debug
command:
- /app/label_sync/app.binary
image: gcr.io/k8s-prow/label_sync:v20200805-d23520775f
imagePullPolicy: Always
name: ""
resources:
requests:
cpu: 500m
volumeMounts:
- mountPath: /etc/github
name: token
readOnly: true
- mountPath: /etc/config
name: config
readOnly: true
volumes:
- name: token
secret:
secretName: github-credentials-openshift-ci-robot
- configMap:
name: labels
name: config
- agent: kubernetes
cluster: api.ci
decorate: true
decoration_config:
timeout: 8h0m0s
extra_refs:
- base_ref: master
org: openshift
repo: ci-tools
interval: 5m
labels:
ci.openshift.io/role: infra
pj-rehearse.openshift.io/can-be-rehearsed: "true"
max_concurrency: 1
name: periodic-ipi-deprovision
spec:
containers:
- command:
- ./cmd/ipi-deprovision/ipi-deprovision.sh
env:
- name: HOME
value: /tmp
- name: AWS_SHARED_CREDENTIALS_FILE
value: /aws/.awscred
- name: GOOGLE_APPLICATION_CREDENTIALS
value: /gcp/gce.json
- name: AZURE_AUTH_LOCATION
value: /azure/osServicePrincipal.json
- name: CLUSTER_TTL
value: 30 minutes ago
image: registry.svc.ci.openshift.org/ci/ipi-deprovision:latest
imagePullPolicy: Always
name: ipi-deprovision
resources:
requests:
cpu: "1"
memory: 300Mi
volumeMounts:
- mountPath: /aws
name: cluster-secrets-aws
- mountPath: /gcp
name: cluster-secrets-gcp
- mountPath: /azure
name: cluster-secrets-azure
serviceAccountName: ipi-deprovisioner
volumes:
- name: cluster-secrets-aws
secret:
items:
- key: .awscred
path: .awscred
secretName: cluster-secrets-aws
- name: cluster-secrets-gcp
secret:
items:
- key: gce.json
path: gce.json
secretName: cluster-secrets-gcp
- name: cluster-secrets-azure
secret:
items:
- key: osServicePrincipal.json
path: osServicePrincipal.json
secretName: cluster-secrets-azure4
- agent: kubernetes
cluster: api.ci
decorate: true
extra_refs:
- base_ref: master
org: openshift
repo: release
interval: 12h
labels:
ci.openshift.io/role: infra
name: periodic-prow-image-autobump
spec:
containers:
- args:
- --github-token-path=/etc/github/oauth
- --github-endpoint=http://ghproxy
- --github-endpoint=https://api.github.com
- --github-graphql-endpoint=http://ghproxy/graphql
- --dry-run=false
- --git-name=openshift-bot
- --target-dir=.
command:
- /usr/bin/autobumper
image: registry.svc.ci.openshift.org/ci/autobumper:latest
imagePullPolicy: Always
name: autobump
resources:
requests:
cpu: 500m
volumeMounts:
- mountPath: /etc/github
name: token
readOnly: true
volumes:
- name: token
secret:
secretName: github-credentials-openshift-bot
- agent: kubernetes
cluster: api.ci
cron: '@hourly'
decorate: true
extra_refs:
- base_ref: master
org: openshift
repo: release
labels:
ci.openshift.io/role: infra
name: periodic-prow-auto-config-brancher
spec:
containers:
- args:
- --github-token-path=/etc/github/oauth
- --github-endpoint=http://ghproxy
- --github-endpoint=https://api.github.com
- --github-graphql-endpoint=http://ghproxy/graphql
- --confirm=true
- --git-name=openshift-bot
- --target-dir=.
- --config-dir=./ci-operator/config
- --current-release=4.6
- --future-release=4.7
- --self-approve=true
- --assign=ghost
- --whitelist-file=./core-services/openshift-priv/_whitelist.yaml
command:
- /usr/bin/autoconfigbrancher
image: registry.svc.ci.openshift.org/ci/auto-config-brancher:latest
imagePullPolicy: Always
name: auto-config-brancher
resources:
requests:
cpu: 500m
volumeMounts:
- mountPath: /etc/github
name: token
readOnly: true
volumes:
- name: token
secret:
secretName: github-credentials-openshift-bot
- agent: kubernetes
cluster: api.ci
cron: 30 7 * * *
decorate: true
extra_refs:
- base_ref: master
org: openshift
repo: release
labels:
ci.openshift.io/role: infra
name: periodic-prow-auto-owners
spec:
containers:
- args:
- --github-token-path=/etc/github/oauth
- --github-endpoint=http://ghproxy
- --github-endpoint=https://api.github.com
- --github-graphql-endpoint=http://ghproxy/graphql
- --dry-run=false
- --git-name=openshift-bot
- --target-dir=.
- --self-approve=true
- --assign=ghost
- --ignore-repo=ci-operator/config/openshift/kubernetes-metrics-server
- --ignore-repo=ci-operator/jobs/openshift/kubernetes-metrics-server
- --ignore-repo=ci-operator/config/openshift/origin-metrics
- --ignore-repo=ci-operator/jobs/openshift/origin-metrics
- --ignore-repo=ci-operator/config/openshift/origin-web-console
- --ignore-repo=ci-operator/jobs/openshift/origin-web-console
- --ignore-repo=ci-operator/config/openshift/origin-web-console-server
- --ignore-repo=ci-operator/jobs/openshift/origin-web-console-server
- --ignore-repo=ci-operator/jobs/openvswitch/ovn-kubernetes
- --ignore-repo=ci-operator/templates/openshift/installer
- --ignore-repo=ci-operator/config/openshift/cluster-api-provider-azure
- --ignore-repo=ci-operator/config/openshift/csi-driver-registrar
- --ignore-repo=ci-operator/config/openshift/csi-external-resizer
- --ignore-repo=ci-operator/config/openshift/csi-external-snapshotter
- --ignore-repo=ci-operator/config/openshift/csi-livenessprobe
- --ignore-repo=ci-operator/config/openshift/knative-build
- --ignore-repo=ci-operator/config/openshift/knative-client
- --ignore-repo=ci-operator/config/openshift/knative-serving
- --ignore-repo=ci-operator/config/openshift/sig-storage-local-static-provisioner
- --ignore-repo=ci-operator/jobs/openshift/cluster-api-provider-azure
- --ignore-repo=ci-operator/jobs/openshift/csi-driver-registrar
- --ignore-repo=ci-operator/jobs/openshift/csi-external-resizer
- --ignore-repo=ci-operator/jobs/openshift/csi-external-snapshotter
- --ignore-repo=ci-operator/jobs/openshift/csi-livenessprobe
- --ignore-repo=ci-operator/jobs/openshift/knative-build
- --ignore-repo=ci-operator/jobs/openshift/knative-client
- --ignore-repo=ci-operator/jobs/openshift/knative-serving
- --ignore-repo=ci-operator/jobs/openshift/sig-storage-local-static-provisioner
- --ignore-repo=ci-operator/config/openshift/oauth-apiserver
- --ignore-repo=ci-operator/jobs/openshift/oauth-apiserver
- --ignore-repo=ci-operator/config/openshift/build-machinery-go
- --ignore-repo=ci-operator/jobs/openshift/build-machinery-go
- --ignore-repo=ci-operator/config/openshift/etcd
- --ignore-repo=ci-operator/jobs/openshift/etcd
- --ignore-org=openshift-priv
command:
- /usr/bin/autoowners
image: registry.svc.ci.openshift.org/ci/autoowners:latest
imagePullPolicy: Always
name: autoowners
resources:
requests:
cpu: 500m
volumeMounts:
- mountPath: /etc/github
name: token
readOnly: true
volumes:
- name: token
secret:
secretName: github-credentials-openshift-bot
- agent: kubernetes
cluster: api.ci
decorate: true
extra_refs:
- base_ref: master
org: openshift
repo: release
workdir: true
interval: 24h
labels:
ci.openshift.io/role: infra
name: periodic-branch-protector
spec:
containers:
- args:
- --config-path=./core-services/prow/02_config/_config.yaml
- --job-config-path=./ci-operator/jobs
- --confirm=true
- --github-token-path=/etc/github/oauth
- --github-endpoint=http://ghproxy
- --github-endpoint=https://api.github.com
- --github-graphql-endpoint=http://ghproxy/graphql
command:
- /app/prow/cmd/branchprotector/app.binary
image: gcr.io/k8s-prow/branchprotector:v20200805-d23520775f
imagePullPolicy: Always
name: ""
resources:
requests:
cpu: 500m
volumeMounts:
- mountPath: /etc/github
name: token
readOnly: true
volumes:
- name: token
secret:
secretName: github-credentials-openshift-merge-robot
- agent: kubernetes
cluster: api.ci
decorate: true
decoration_config:
oauth_token_secret:
key: oauth
name: github-credentials-openshift-ci-robot-private-git-cloner
extra_refs:
- base_ref: master
org: openshift
repo: config
workdir: true
interval: 2h
labels:
ci.openshift.io/role: infra
name: periodic-org-sync
spec:
containers:
- args:
- --config-path=./org/config.yaml
- --confirm=true
- --github-token-path=/etc/github/oauth
- --github-endpoint=http://ghproxy
- --github-endpoint=https://api.github.com
- --github-graphql-endpoint=http://ghproxy/graphql
- --fix-org
- --fix-org-members
- --fix-teams
- --fix-team-members
- --fix-team-repos
- --fix-repos
command:
- /app/prow/cmd/peribolos/app.binary
image: gcr.io/k8s-prow/peribolos:v20200805-d23520775f
imagePullPolicy: Always
name: ""
resources:
requests:
cpu: 500m
volumeMounts:
- mountPath: /etc/github
name: token
readOnly: true
volumes:
- name: token
secret:
secretName: github-credentials-openshift-merge-robot
- agent: kubernetes
cluster: api.ci
cron: '@daily'
decorate: true
decoration_config:
skip_cloning: true
labels:
app: image-pruner
ci.openshift.io/role: infra
name: periodic-ci-image-pruner
spec:
containers:
- args:
- adm
- prune
- images
- --certificate-authority=/var/run/secrets/kubernetes.io/serviceaccount/service-ca.crt
- --keep-tag-revisions=3
- --keep-younger-than=96h
- --confirm=true
command:
- oc
image: quay.io/openshift/origin-cli:4.5
imagePullPolicy: Always
name: ""
resources:
limits:
cpu: "2"
memory: 8Gi
requests:
cpu: "1"
memory: 4Gi
serviceAccountName: image-pruner
- agent: kubernetes
cluster: api.ci
decorate: true
extra_refs:
- base_ref: master
org: openshift
repo: release
interval: 12h
labels:
ci.openshift.io/role: infra
name: openshift-release-master-core-apply
spec:
containers:
- args:
- --config-dir=core-services
- --confirm=true
- --as=
command:
- applyconfig
env:
- name: build01_build01_reg_auth_value
valueFrom:
secretKeyRef:
key: build01_build01_reg_auth_value.txt
name: build-farm-credentials
- name: build01_build02_reg_auth_value
valueFrom:
secretKeyRef:
key: build01_build02_reg_auth_value.txt
name: build-farm-credentials
- name: build01_ci_reg_auth_value
valueFrom:
secretKeyRef:
key: build01_ci_reg_auth_value.txt
name: build-farm-credentials
- name: slack_api_url
valueFrom:
secretKeyRef:
key: url
name: ci-slack-api-url
image: registry.svc.ci.openshift.org/ci/applyconfig:latest
imagePullPolicy: Always
name: ""
resources:
requests:
cpu: 10m
serviceAccountName: config-updater
- agent: kubernetes
cluster: api.ci
decorate: true
extra_refs:
- base_ref: master
org: openshift
repo: release
interval: 12h
name: openshift-release-master-services-apply
spec:
containers:
- args:
- --config-dir=services
- --confirm=true
- --as=
command:
- applyconfig
image: registry.svc.ci.openshift.org/ci/applyconfig:latest
imagePullPolicy: Always
name: ""
resources:
requests:
cpu: 10m
serviceAccountName: config-updater
- agent: kubernetes
cluster: api.ci
decorate: true
extra_refs:
- base_ref: master
org: openshift
repo: release
interval: 12h
name: openshift-release-master-config-updates
spec:
containers:
- args:
- postsubmit-update
command:
- make
image: registry.svc.ci.openshift.org/ci/origin-release:cli
imagePullPolicy: Always
name: ""
resources:
requests:
cpu: 10m
serviceAccountName: config-updater
- agent: kubernetes
cluster: api.ci
decorate: true
extra_refs:
- base_ref: master
org: openshift
repo: release
- base_ref: master
org: redhat-operator-ecosystem
repo: release
interval: 1h
labels:
ci.openshift.io/role: infra
name: openshift-release-master-config-bootstrapper
spec:
containers:
- args:
- --dry-run=false
- --source-path=.
- --source-path=../../redhat-operator-ecosystem/release
- --config-path=core-services/prow/02_config/_config.yaml
- --plugin-config=core-services/prow/02_config/_plugins.yaml
command:
- /app/prow/cmd/config-bootstrapper/app.binary
env:
- name: KUBECONFIG
value: /etc/build-farm-credentials/api.ci.kubeconfig:/etc/build-farm-credentials/build01.kubeconfig:/etc/app-ci-config-updater-kubeconfig/kubeconfig:/etc/build-farm-credentials/build02.kubeconfig:/etc/build-farm-credentials/vsphere.kubeconfig
image: gcr.io/k8s-prow/config-bootstrapper:v20200805-d23520775f
imagePullPolicy: Always
name: ""
resources:
requests:
cpu: 10m
volumeMounts:
- mountPath: /etc/build-farm-credentials
name: build-farm-credentials
readOnly: true
- mountPath: /etc/app-ci-config-updater-kubeconfig
name: app-ci-config-updater-kubeconfig
readOnly: true
serviceAccountName: config-updater
volumes:
- name: build-farm-credentials
secret:
items:
- key: sa.hook.api.ci.config
path: api.ci.kubeconfig
- key: sa.hook.build01.config
path: build01.kubeconfig
- key: sa.hook.build02.config
path: build02.kubeconfig
- key: sa.hook.vsphere.config
path: vsphere.kubeconfig
secretName: build-farm-credentials
- name: app-ci-config-updater-kubeconfig
secret:
secretName: app-ci-config-updater-kubeconfig
- agent: kubernetes
cluster: api.ci
cron: '@hourly'
decorate: true
extra_refs:
- base_ref: master
org: openshift
repo: release
labels:
ci.openshift.io/role: infra
name: periodic-openshift-release-fast-forward
spec:
containers:
- args:
- --config-dir=./ci-operator/config/
- --current-release=4.6
- --future-release=4.7
- --future-release=4.7
- --fast-forward
- --confirm
- --username=openshift-merge-robot
- --token-path=/etc/github/oauth
command:
- repo-brancher
image: repo-brancher:latest
imagePullPolicy: Always
name: ""
resources:
requests:
cpu: 500m
volumeMounts:
- mountPath: /etc/github
name: token
readOnly: true
volumes:
- name: token
secret:
secretName: github-credentials-openshift-merge-robot
- agent: kubernetes
cluster: api.ci
cron: '@hourly'
decorate: true
extra_refs:
- base_ref: master
org: openshift
repo: release
hidden: true
labels:
ci.openshift.io/role: infra
max_concurrency: 1
name: periodic-openshift-release-private-org-sync
spec:
containers:
- args:
- --config-path=./ci-operator/config/
- --target-org=openshift-priv
- --token-path=/etc/github/oauth
- --only-org=openshift
- --confirm
- --whitelist-file=./core-services/openshift-priv/_whitelist.yaml
- --git-name=openshift-merge-robot
command:
- private-org-sync
image: private-org-sync:latest
imagePullPolicy: Always
name: ""
resources:
requests:
cpu: 500m
volumeMounts:
- mountPath: /etc/github
name: token
readOnly: true
volumes:
- name: token
secret:
secretName: github-credentials-openshift-merge-robot
- agent: kubernetes
cluster: api.ci
cron: '@hourly'
decorate: true
extra_refs:
- base_ref: master
org: openshift
repo: release
labels:
ci.openshift.io/role: infra
name: periodic-openshift-release-merge-blockers
spec:
containers:
- args:
- --config-dir=./ci-operator/config/
- --current-release=4.6
- --future-release=4.7
- --confirm
- --username=openshift-merge-robot
- --token-path=/etc/github/oauth
command:
- blocking-issue-creator
image: blocking-issue-creator:latest
imagePullPolicy: Always
name: ""
resources:
requests:
cpu: 500m
volumeMounts:
- mountPath: /etc/github
name: token
readOnly: true
volumes:
- name: token
secret:
secretName: github-credentials-openshift-merge-robot
- agent: kubernetes
cluster: app.ci
decorate: true
decoration_config:
oauth_token_secret:
key: oauth
name: github-credentials-openshift-ci-robot-private-git-cloner
extra_refs:
- base_ref: master
org: openshift
repo: config
workdir: true
hidden: true
interval: 12h
labels:
ci.openshift.io/role: infra
name: periodic-openshift-priv-group-update
spec:
containers:
- args:
- --peribolos-config=org/config.yaml
- --org=openshift-priv
- --group=openshift-priv-admins
command:
- group-auto-updater
image: group-auto-updater:latest
imagePullPolicy: Always
name: ""
resources:
requests:
cpu: 500m
serviceAccountName: group-auto-updater
- agent: kubernetes
cluster: api.ci
cron: '@weekly'
decorate: true
decoration_config:
skip_cloning: true
labels:
ci.openshift.io/role: infra
pj-rehearse.openshift.io/can-be-rehearsed: "true"
max_concurrency: 1
name: periodic-imagestream-importer
spec:
containers:
- args:
- -c
- |
set -o errexit
set -o nounset
set -o pipefail
for is in python; do
echo "importing ${is} ..."
oc import-image -n openshift "${is}" --all
done
command:
- /bin/bash
image: registry.svc.ci.openshift.org/ocp/4.5:cli
imagePullPolicy: Always