-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathrhpkg-container-build.sh_test_consoleText_pass.txt
4929 lines (4852 loc) · 828 KB
/
rhpkg-container-build.sh_test_consoleText_pass.txt
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
Started by upstream project "CRW_CI/crw-sync-to-downstream_2.x" build number 401
originally caused by:
Started by upstream project "CRW_CI/crw-configbump_2.x" build number 11
originally caused by:
Started by upstream project "CRW_CI/Releng/build-all-images_2.x" build number 11
originally caused by:
Started by timer
Started by user Nick
Started by upstream project "CRW_CI/crw-sync-to-downstream_2.x" build number 400
originally caused by:
Started by upstream project "CRW_CI/crw-configbump_2.x" build number 11
Started by user Nick
Started by upstream project "CRW_CI/crw-sync-to-downstream_2.x" build number 399
originally caused by:
Started by upstream project "CRW_CI/crw-configbump_2.x" build number 11
Started by user Nick
Started by upstream project "CRW_CI/crw-sync-to-downstream_2.x" build number 398
originally caused by:
Started by upstream project "CRW_CI/crw-configbump_2.x" build number 11
Started by user Nick
Started by upstream project "CRW_CI/crw-sync-to-downstream_2.x" build number 381
originally caused by:
Started by upstream project "CRW_CI/crw-configbump_2.x" build number 11
Started by user Nick
Rebuilds build #479
Running as Nick
Resume disabled by user, switching to high-performance, low-durability mode.
[Pipeline] Start of Pipeline
[Pipeline] timeout
Timeout set to expire in 4 hr 0 min
[Pipeline] {
[Pipeline] node
Running on rhel8-122 in /mnt/hudson_workspace/workspace/CRW_CI/get-sources-rhpkg-container-build_2.x
[Pipeline] {
[Pipeline] stage
[Pipeline] { (Build on rhel8)
[Pipeline] wrap
[Pipeline] {
[Pipeline] withCredentials
Masking supported pattern matches of $GITHUB_TOKEN or $QUAY_TOKEN or $CRW_KEYTAB or $CRW_BOT_USERNAME or $CRW_BOT_PASSWORD
[Pipeline] {
[Pipeline] sh
+ curl -sSLO https://raw.githubusercontent.com/redhat-developer/devspaces/devspaces-3-rhel-8/product/util.groovy
[Pipeline] load
[Pipeline] { (/mnt/hudson_workspace/workspace/CRW_CI/get-sources-rhpkg-container-build_2.x/util.groovy)
[Pipeline] }
[Pipeline] // load
[Pipeline] cleanWs
[WS-CLEANUP] Deleting project workspace...
[WS-CLEANUP] Deferred wipeout is used...
[WS-CLEANUP] done
[Pipeline] sh
+ cat
+ sudo tee /etc/yum.conf
[main]
gpgcheck=0
installonly_limit=3
clean_requirements_on_remove=True
best=True
skip_if_unavailable=True
fastestmirror=True
max_parallel_downloads=10
minrate=1
retries=20
timeout=60
+ sudo yum install -yq drpm dnf
warning: /var/cache/dnf/appstream-00b769ba490e910c/packages/drpm-0.3.0-14.el8.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY
Importing GPG key 0xFD431D51:
Userid : "Red Hat, Inc. (release key 2) <[email protected]>"
Fingerprint: 567E 347A D004 4ADE 55BA 8A5F 199E 2F91 FD43 1D51
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
Importing GPG key 0xD4082792:
Userid : "Red Hat, Inc. (auxiliary key) <[email protected]>"
Fingerprint: 6A6A A7C9 7C88 90AE C6AE BFE2 F76F 66C3 D408 2792
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
++ find /etc/yum.repos.d/ -name '*.repo'
+ for r in $(find /etc/yum.repos.d/ -name "*.repo")
+ sudo sed -i /etc/yum.repos.d/redhat.repo -r -e s#skip_if_unavailable=False#skip_if_unavailable=True#g
++ sudo grep skip_if_unavailable=True /etc/yum.repos.d/redhat.repo
++ true
+ [[ ! -n '' ]]
+ cat
+ sudo tee -a /etc/yum.repos.d/redhat.repo
skip_if_unavailable=True
+ for r in $(find /etc/yum.repos.d/ -name "*.repo")
+ sudo sed -i /etc/yum.repos.d/baseos.repo -r -e s#skip_if_unavailable=False#skip_if_unavailable=True#g
++ sudo grep skip_if_unavailable=True /etc/yum.repos.d/baseos.repo
++ true
+ [[ ! -n '' ]]
+ sudo tee -a /etc/yum.repos.d/baseos.repo
+ cat
skip_if_unavailable=True
+ for r in $(find /etc/yum.repos.d/ -name "*.repo")
+ sudo sed -i /etc/yum.repos.d/appstream.repo -r -e s#skip_if_unavailable=False#skip_if_unavailable=True#g
++ sudo grep skip_if_unavailable=True /etc/yum.repos.d/appstream.repo
++ true
+ [[ ! -n '' ]]
+ cat
+ sudo tee -a /etc/yum.repos.d/appstream.repo
skip_if_unavailable=True
+ for r in $(find /etc/yum.repos.d/ -name "*.repo")
+ sudo sed -i /etc/yum.repos.d/beaker-client.repo -r -e s#skip_if_unavailable=False#skip_if_unavailable=True#g
++ sudo grep skip_if_unavailable=True /etc/yum.repos.d/beaker-client.repo
++ true
+ [[ ! -n '' ]]
+ cat
+ sudo tee -a /etc/yum.repos.d/beaker-client.repo
skip_if_unavailable=True
+ for r in $(find /etc/yum.repos.d/ -name "*.repo")
+ sudo sed -i /etc/yum.repos.d/epel-modular.repo -r -e s#skip_if_unavailable=False#skip_if_unavailable=True#g
++ sudo grep skip_if_unavailable=True /etc/yum.repos.d/epel-modular.repo
++ true
+ [[ ! -n '' ]]
+ cat
+ sudo tee -a /etc/yum.repos.d/epel-modular.repo
skip_if_unavailable=True
+ for r in $(find /etc/yum.repos.d/ -name "*.repo")
+ sudo sed -i /etc/yum.repos.d/epel-playground.repo -r -e s#skip_if_unavailable=False#skip_if_unavailable=True#g
++ sudo grep skip_if_unavailable=True /etc/yum.repos.d/epel-playground.repo
++ true
+ [[ ! -n '' ]]
+ cat
+ sudo tee -a /etc/yum.repos.d/epel-playground.repo
skip_if_unavailable=True
+ for r in $(find /etc/yum.repos.d/ -name "*.repo")
+ sudo sed -i /etc/yum.repos.d/epel-testing-modular.repo -r -e s#skip_if_unavailable=False#skip_if_unavailable=True#g
++ sudo grep skip_if_unavailable=True /etc/yum.repos.d/epel-testing-modular.repo
++ true
+ [[ ! -n '' ]]
+ cat
+ sudo tee -a /etc/yum.repos.d/epel-testing-modular.repo
skip_if_unavailable=True
+ for r in $(find /etc/yum.repos.d/ -name "*.repo")
+ sudo sed -i /etc/yum.repos.d/epel-testing.repo -r -e s#skip_if_unavailable=False#skip_if_unavailable=True#g
++ sudo grep skip_if_unavailable=True /etc/yum.repos.d/epel-testing.repo
++ true
+ [[ ! -n '' ]]
+ cat
+ sudo tee -a /etc/yum.repos.d/epel-testing.repo
skip_if_unavailable=True
+ for r in $(find /etc/yum.repos.d/ -name "*.repo")
+ sudo sed -i /etc/yum.repos.d/epel.repo -r -e s#skip_if_unavailable=False#skip_if_unavailable=True#g
++ sudo grep skip_if_unavailable=True /etc/yum.repos.d/epel.repo
++ true
+ [[ ! -n '' ]]
+ cat
+ sudo tee -a /etc/yum.repos.d/epel.repo
skip_if_unavailable=True
[Pipeline] sh
+ repo=latest-RCMTOOLS-2-RHEL-8
+ cat
+ sudo tee /etc/yum.repos.d/latest-RCMTOOLS-2-RHEL-8.repo
[latest-RCMTOOLS-2-RHEL-8]
name=latest-RCMTOOLS-2-RHEL-8
baseurl=http://download.devel.redhat.com/rel-eng/RCMTOOLS/latest-RCMTOOLS-2-RHEL-8/compose/BaseOS/$basearch/os/
enabled=1
gpgcheck=0
skip_if_unavailable=True
[Pipeline] sh
+ sudo yum install -y -q krb5-workstation openssh-clients coreutils git rhpkg jq python3-six python3-pip
warning: /var/cache/dnf/epel-fafd94c310c51e1e/packages/distribution-gpg-keys-1.52-1.el8.noarch.rpm: Header V4 RSA/SHA256 Signature, key ID 2f86d6a1: NOKEY
Importing GPG key 0x2F86D6A1:
Userid : "Fedora EPEL (8) <[email protected]>"
Fingerprint: 94E2 79EB 8D8F 25B2 1810 ADF1 21EA 45AB 2F86 D6A1
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-8
[Pipeline] withCredentials
Masking supported pattern matches of $CRW_BOT_USERNAME or $CRW_BOT_PASSWORD
[Pipeline] {
[Pipeline] sh
+ SKOPEO_VERSION=
++ which skopeo
which: no skopeo in (/home/hudson/.local/bin:/home/hudson/bin:/opt/apache-maven-3.5.2/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin)
+ '[' '!' -z '' ']'
+ checkVersion 1.1 '' skopeo
++ sort -V
++ head -n1
++ echo -e '1.1
'
+ [[ 1.1 = '' ]]
++ cat /etc/os-release
++ grep -E '^VERSION="*8.'
+ [[ ! -z VERSION="8.1 (Ootpa)" ]]
+ echo '[INFO] skopeo version installed is < 1.1, will attempt to install latest from registry.redhat.io/rhel8/skopeo ...'
[INFO] skopeo version installed is < 1.1, will attempt to install latest from registry.redhat.io/rhel8/skopeo ...
+ installFromContainer skopeo
+ installable=skopeo
+ sudo yum remove -y -q skopeo
++ command -v podman
+ PODMAN=/usr/bin/podman
+ [[ ! -x /usr/bin/podman ]]
+ [[ ! -x /usr/bin/podman ]]
+ echo ****
+ /usr/bin/podman login '-u=****' --password-stdin registry.redhat.io
Login Succeeded!
+ /usr/bin/podman run --rm -v /tmp:/skopeo registry.redhat.io/rhel8/skopeo sh -c 'cp /usr/bin/skopeo /skopeo'
Trying to pull registry.redhat.io/rhel8/skopeo...Getting image source signatures
Copying blob sha256:55eda774346862e410811e3fa91cefe805bc11ff46fad425dd1b712709c05bbc
Copying blob sha256:96143af340eaaf82fe1d5ce79ef08dc8036be5d61f7435b702f48283ce531fef
Copying blob sha256:4b21dcdd136d133a4df0840e656af2f488c226dd384a98b89ced79064a4081b4
Copying config sha256:3fc2cc8f1bfe7d660b53240b8e8ebaa2d5fb3749fafd48b7660d620890c3119f
Writing manifest to image destination
Storing signatures
+ sudo cp -f /tmp/skopeo /usr/local/bin/skopeo
+ rm -f /tmp/skopeo
+ sudo chmod 755 /usr/local/bin/skopeo
+ skopeo --version
skopeo version 1.2.0
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] sh
+ repo=latest-RCMTOOLS-2-RHEL-8
+ cat
+ sudo tee /etc/yum.repos.d/latest-RCMTOOLS-2-RHEL-8.repo
[latest-RCMTOOLS-2-RHEL-8]
name=latest-RCMTOOLS-2-RHEL-8
baseurl=http://download.devel.redhat.com/rel-eng/RCMTOOLS/latest-RCMTOOLS-2-RHEL-8/compose/BaseOS/$basearch/os/
enabled=1
gpgcheck=0
skip_if_unavailable=True
[Pipeline] sh
+ sudo yum install -y -q jq python3-six python3-pip
[Pipeline] sh
+ sudo /usr/bin/python3 -m pip install -q --upgrade pip yq jsonschema
+ jq --version
jq-1.5
+ yq --version
yq 2.12.0
[Pipeline] sh
+ chmod 700 ****
+ chown hudson ****
+ echo crw-build/codeready-workspaces-jenkins.rhev-ci-vms.eng.rdu2.redhat.com@REDHAT.COM
+ chmod 644 /home/hudson/.k5login
+ chown hudson /home/hudson/.k5login
+ echo 'pkgs.devel.redhat.com,10.19.208.80 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAplqWKs26qsoaTxvWn3DFcdbiBxqRLhFngGiMYhbudnAj4li9/VwAJqLm1M6YfjOoJrj9dlmuXhNzkSzvyoQODaRgsjCG5FaRjuN8CSM/y+glgCYsWX1HFZSnAasLDuW0ifNLPR2RBkmWx61QKq+TxFDjASBbBywtupJcCsA5ktkjLILS+1eWndPJeSUJiOtzhoN8KIigkYveHSetnxauxv1abqwQTk5PmxRgRt20kZEFSRqZOJUlcl85sZYzNC/G7mneptJtHlcNrPgImuOdus5CW+7W49Z/1xqqWI/iRjwipgEMGusPMlSzdxDX4JzIx6R53pDpAwSAQVGDz4F9eQ==
'
+ ssh-keyscan -t rsa github.com
# github.com:22 SSH-2.0-babeld-cec9758f
+ [[ -f /home/hudson/.ssh/config ]]
+ mv -f /home/hudson/.ssh/config /home/hudson/.ssh/config.BAK
+ echo '
GSSAPIAuthentication yes
GSSAPIDelegateCredentials yes
Host pkgs.devel.redhat.com
User crw-build/codeready-workspaces-jenkins.rhev-ci-vms.eng.rdu2.redhat.com@REDHAT.COM
'
+ chmod 600 /home/hudson/.ssh/config
+ export KRB5CCNAME=/var/tmp/crw-build_ccache
+ KRB5CCNAME=/var/tmp/crw-build_ccache
+ kinit crw-build/codeready-workspaces-jenkins.rhev-ci-vms.eng.rdu2.redhat.com@REDHAT.COM -kt ****
[Pipeline] fileExists
[Pipeline] sh
+ export KRB5CCNAME=/var/tmp/crw-build_ccache
+ KRB5CCNAME=/var/tmp/crw-build_ccache
+ git clone ssh://[email protected]/containers/codeready-workspaces-configbump /mnt/hudson_workspace/workspace/CRW_CI/get-sources-rhpkg-container-build_2.x/sources
Cloning into '/mnt/hudson_workspace/workspace/CRW_CI/get-sources-rhpkg-container-build_2.x/sources'...
[Pipeline] sh
+ export KRB5CCNAME=/var/tmp/crw-build_ccache
+ KRB5CCNAME=/var/tmp/crw-build_ccache
+ cd /mnt/hudson_workspace/workspace/CRW_CI/get-sources-rhpkg-container-build_2.x/sources
+ git checkout --track origin/devspaces-3-rhel-8
Switched to a new branch 'devspaces-3-rhel-8'
Branch 'devspaces-3-rhel-8' set up to track remote branch 'devspaces-3-rhel-8' from 'origin'.
+ git config user.email [email protected]
+ git config user.name 'CRW Build'
+ git config --global push.default matching
[Pipeline] sh
+ curl -sSLo- https://raw.githubusercontent.com/redhat-developer/devspaces/devspaces-3-rhel-8/dependencies/VERSION
[Pipeline] echo
CRW_VERSION = '2.9'
[Pipeline] fileExists
[Pipeline] sh
+ URL=https://raw.githubusercontent.com/redhat-developer/devspaces/devspaces-3-rhel-8/product/updateBaseImages.sh
++ curl -sSLI https://raw.githubusercontent.com/redhat-developer/devspaces/devspaces-3-rhel-8/product/updateBaseImages.sh
++ grep -E -v 'id: |^x-'
++ grep -E '404|Not Found'
++ true
+ header404=
+ [[ -n '' ]]
+ curl -sSL https://raw.githubusercontent.com/redhat-developer/devspaces/devspaces-3-rhel-8/product/updateBaseImages.sh -o /mnt/hudson_workspace/workspace/CRW_CI/get-sources-rhpkg-container-build_2.x/updateBaseImages.sh
+ chmod +x /mnt/hudson_workspace/workspace/CRW_CI/get-sources-rhpkg-container-build_2.x/updateBaseImages.sh
[Pipeline] sh
+ cd /mnt/hudson_workspace/workspace/CRW_CI/get-sources-rhpkg-container-build_2.x/sources
+ git remote -v
+ grep pkgs.devel.redhat.com
[Pipeline] sh
+ export KRB5CCNAME=/var/tmp/crw-build_ccache
+ KRB5CCNAME=/var/tmp/crw-build_ccache
+ echo '[INFO] util.groovy :: updateBaseImages :: SOURCES_BRANCH = devspaces-3-rhel-8'
[INFO] util.groovy :: updateBaseImages :: SOURCES_BRANCH = devspaces-3-rhel-8
+ echo '[INFO] util.groovy :: updateBaseImages :: SCRIPTS_BRANCH = devspaces-3-rhel-8'
[INFO] util.groovy :: updateBaseImages :: SCRIPTS_BRANCH = devspaces-3-rhel-8
+ cd /mnt/hudson_workspace/workspace/CRW_CI/get-sources-rhpkg-container-build_2.x/sources
+ /mnt/hudson_workspace/workspace/CRW_CI/get-sources-rhpkg-container-build_2.x/updateBaseImages.sh --sources-branch devspaces-3-rhel-8 --scripts-branch devspaces-3-rhel-8
# Checking /mnt/hudson_workspace/workspace/CRW_CI/get-sources-rhpkg-container-build_2.x/sources/Dockerfile ...
+ ubi8-minimal:8.3-298.1618432845
[base] No Dockerfiles changed - no new base images found.
[Pipeline] echo
[INFO] Attempt to run get-sources-jenkins.sh, with up to 2 retries
[Pipeline] retry
[Pipeline] {
[Pipeline] sh
+ pushd /mnt/hudson_workspace/workspace/CRW_CI/get-sources-rhpkg-container-build_2.x/sources
+ SCRATCH_FLAG=
+ [[ false == \t\r\u\e ]]
+ FORCE_FLAG=
+ [[ true == \t\r\u\e ]]
+ FORCE_FLAG=--force-build
+ ./get-sources-jenkins.sh '' --force-build 2.x
+ tee /mnt/hudson_workspace/workspace/CRW_CI/get-sources-rhpkg-container-build_2.x/get-sources-jenkins.log.txt
+ verbose=1
+ scratchFlag=
+ JOB_BRANCH=
+ doRhpkgContainerBuild=1
+ forceBuild=0
+ forcePull=0
+ generateDockerfileLABELs=1
+ [[ 3 -gt 0 ]]
+ case $1 in
+ JOB_BRANCH=
+ shift 0
+ shift 1
+ [[ 2 -gt 0 ]]
+ case $1 in
+ forceBuild=1
+ shift 0
+ shift 1
+ [[ 1 -gt 0 ]]
+ case $1 in
+ JOB_BRANCH=2.x
+ shift 0
+ shift 1
+ [[ 0 -gt 0 ]]
+ [[ ! -n 2.x ]]
+ UPSTREAM_JOB_NAME=crw-configbump_2.x
+ jenkinsURL=
+ [[ -n https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/ ]]
+ checkJenkinsURL https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/CRW_CI/job/crw-configbump_2.x
+ checkURL=https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/CRW_CI/job/crw-configbump_2.x
++ curl -sSLI https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/CRW_CI/job/crw-configbump_2.x
++ grep -E '404|Not Found|Failed to connect|No route to host|Could not resolve host|Connection refused'
+ [[ ! -n '' ]]
+ jenkinsURL=https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/CRW_CI/job/crw-configbump_2.x
+ [[ ! -n https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/CRW_CI/job/crw-configbump_2.x ]]
+ [[ ! -n https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/CRW_CI/job/crw-configbump_2.x ]]
+ [[ ! -n https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/CRW_CI/job/crw-configbump_2.x ]]
+ theTarGzs='
lastSuccessfulBuild/artifact/asset-configbump-x86_64.tar.gz
lastSuccessfulBuild/artifact/asset-configbump-s390x.tar.gz
lastSuccessfulBuild/artifact/asset-configbump-ppc64le.tar.gz
'
+ lastSuccessfulURL='https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/CRW_CI/job/crw-configbump_2.x/lastSuccessfulBuild/api/xml?xpath=/workflowRun/'
+ LABELs=
+ outputFiles=
+ for theTarGz in ${theTarGzs}
+ outputFile=asset-configbump-x86_64.tar.gz
+ log '[INFO] Download https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/CRW_CI/job/crw-configbump_2.x/lastSuccessfulBuild/artifact/asset-configbump-x86_64.tar.gz:'
+ [[ 1 -gt 0 ]]
+ echo '[INFO] Download https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/CRW_CI/job/crw-configbump_2.x/lastSuccessfulBuild/artifact/asset-configbump-x86_64.tar.gz:'
+ rm -f asset-configbump-x86_64.tar.gz
[INFO] Download https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/CRW_CI/job/crw-configbump_2.x/lastSuccessfulBuild/artifact/asset-configbump-x86_64.tar.gz:
+ getFingerprints asset-configbump-x86_64.tar.gz
+ outputFile=asset-configbump-x86_64.tar.gz
++ curl -L https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/CRW_CI/job/crw-configbump_2.x/lastSuccessfulBuild/fingerprints/
++ grep asset-configbump-x86_64.tar.gz
++ sed -e 's#.\+/fingerprint/\([0-9a-f]\+\)/".\+#\1#'
+ latestFingerprint=
++ cat sources
++ grep asset-configbump-x86_64.tar.gz
++ sed -e 's#\([0-9a-f]\+\) .\+#\1#'
+ currentFingerprint=SHA512
+ [[ ! -n '' ]]
+ echo '[WARNING] Cannot resolve artifact fingerprints for asset-configbump-x86_64.tar.gz'
+ [[ '' != \S\H\A\5\1\2 ]]
[WARNING] Cannot resolve artifact fingerprints for asset-configbump-x86_64.tar.gz
+ curl -sSL --insecure -o asset-configbump-x86_64.tar.gz https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/CRW_CI/job/crw-configbump_2.x/lastSuccessfulBuild/artifact/asset-configbump-x86_64.tar.gz
+ outputFiles=' asset-configbump-x86_64.tar.gz'
+ for theTarGz in ${theTarGzs}
+ outputFile=asset-configbump-s390x.tar.gz
+ log '[INFO] Download https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/CRW_CI/job/crw-configbump_2.x/lastSuccessfulBuild/artifact/asset-configbump-s390x.tar.gz:'
+ [[ 1 -gt 0 ]]
+ echo '[INFO] Download https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/CRW_CI/job/crw-configbump_2.x/lastSuccessfulBuild/artifact/asset-configbump-s390x.tar.gz:'
+ rm -f asset-configbump-s390x.tar.gz
[INFO] Download https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/CRW_CI/job/crw-configbump_2.x/lastSuccessfulBuild/artifact/asset-configbump-s390x.tar.gz:
+ getFingerprints asset-configbump-s390x.tar.gz
+ outputFile=asset-configbump-s390x.tar.gz
++ curl -L https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/CRW_CI/job/crw-configbump_2.x/lastSuccessfulBuild/fingerprints/
++ grep asset-configbump-s390x.tar.gz
++ sed -e 's#.\+/fingerprint/\([0-9a-f]\+\)/".\+#\1#'
+ latestFingerprint=
++ cat sources
++ grep asset-configbump-s390x.tar.gz
++ sed -e 's#\([0-9a-f]\+\) .\+#\1#'
+ currentFingerprint=SHA512
+ [[ ! -n '' ]]
+ echo '[WARNING] Cannot resolve artifact fingerprints for asset-configbump-s390x.tar.gz'
+ [[ '' != \S\H\A\5\1\2 ]]
[WARNING] Cannot resolve artifact fingerprints for asset-configbump-s390x.tar.gz
+ curl -sSL --insecure -o asset-configbump-s390x.tar.gz https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/CRW_CI/job/crw-configbump_2.x/lastSuccessfulBuild/artifact/asset-configbump-s390x.tar.gz
+ outputFiles=' asset-configbump-x86_64.tar.gz asset-configbump-s390x.tar.gz'
+ for theTarGz in ${theTarGzs}
+ outputFile=asset-configbump-ppc64le.tar.gz
+ log '[INFO] Download https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/CRW_CI/job/crw-configbump_2.x/lastSuccessfulBuild/artifact/asset-configbump-ppc64le.tar.gz:'
+ [[ 1 -gt 0 ]]
+ echo '[INFO] Download https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/CRW_CI/job/crw-configbump_2.x/lastSuccessfulBuild/artifact/asset-configbump-ppc64le.tar.gz:'
+ rm -f asset-configbump-ppc64le.tar.gz
[INFO] Download https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/CRW_CI/job/crw-configbump_2.x/lastSuccessfulBuild/artifact/asset-configbump-ppc64le.tar.gz:
+ getFingerprints asset-configbump-ppc64le.tar.gz
+ outputFile=asset-configbump-ppc64le.tar.gz
++ curl -L https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/CRW_CI/job/crw-configbump_2.x/lastSuccessfulBuild/fingerprints/
++ grep asset-configbump-ppc64le.tar.gz
++ sed -e 's#.\+/fingerprint/\([0-9a-f]\+\)/".\+#\1#'
+ latestFingerprint=
++ cat sources
++ grep asset-configbump-ppc64le.tar.gz
++ sed -e 's#\([0-9a-f]\+\) .\+#\1#'
+ currentFingerprint=SHA512
+ [[ ! -n '' ]]
+ echo '[WARNING] Cannot resolve artifact fingerprints for asset-configbump-ppc64le.tar.gz'
+ [[ '' != \S\H\A\5\1\2 ]]
[WARNING] Cannot resolve artifact fingerprints for asset-configbump-ppc64le.tar.gz
+ curl -sSL --insecure -o asset-configbump-ppc64le.tar.gz https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/CRW_CI/job/crw-configbump_2.x/lastSuccessfulBuild/artifact/asset-configbump-ppc64le.tar.gz
+ outputFiles=' asset-configbump-x86_64.tar.gz asset-configbump-s390x.tar.gz asset-configbump-ppc64le.tar.gz'
+ [[ -n asset-configbump-x86_64.tar.gz asset-configbump-s390x.tar.gz asset-configbump-ppc64le.tar.gz ]]
+ log '[INFO] Upload new sources: asset-configbump-x86_64.tar.gz asset-configbump-s390x.tar.gz asset-configbump-ppc64le.tar.gz'
+ [[ 1 -gt 0 ]]
+ echo '[INFO] Upload new sources: asset-configbump-x86_64.tar.gz asset-configbump-s390x.tar.gz asset-configbump-ppc64le.tar.gz'
+ rhpkg new-sources asset-configbump-x86_64.tar.gz asset-configbump-s390x.tar.gz asset-configbump-ppc64le.tar.gz
[INFO] Upload new sources: asset-configbump-x86_64.tar.gz asset-configbump-s390x.tar.gz asset-configbump-ppc64le.tar.gz
File already uploaded: asset-configbump-x86_64.tar.gz
File already uploaded: asset-configbump-s390x.tar.gz
File already uploaded: asset-configbump-ppc64le.tar.gz
Source upload succeeded. Don't forget to commit the sources file
+ log '[INFO] Commit new sources from: asset-configbump-x86_64.tar.gz asset-configbump-s390x.tar.gz asset-configbump-ppc64le.tar.gz'
+ [[ 1 -gt 0 ]]
+ echo '[INFO] Commit new sources from: asset-configbump-x86_64.tar.gz asset-configbump-s390x.tar.gz asset-configbump-ppc64le.tar.gz'
+ field=id
[INFO] Commit new sources from: asset-configbump-x86_64.tar.gz asset-configbump-s390x.tar.gz asset-configbump-ppc64le.tar.gz
++ curl -sSL --insecure 'https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/CRW_CI/job/crw-configbump_2.x/lastSuccessfulBuild/api/xml?xpath=/workflowRun/id'
++ sed -e 's#<id>\(.\+\)</id>#\1#' -e 's#<br/> #\n#g' -e 's#\<a.\+/a\>##g'
+ ID=11
++ echo 11
++ grep -E '404 Not Found|ERROR 404|Application is not available'
+ [[ -n '' ]]
+ COMMIT_MSG='Update from Jenkins :: crw-configbump_2.x :: 11
:: asset-configbump-x86_64.tar.gz asset-configbump-s390x.tar.gz asset-configbump-ppc64le.tar.gz'
++ git commit -s -m '[get sources] Update from Jenkins :: crw-configbump_2.x :: 11
:: asset-configbump-x86_64.tar.gz asset-configbump-s390x.tar.gz asset-configbump-ppc64le.tar.gz' sources Dockerfile .gitignore
+ [[ On branch devspaces-3-rhel-8
Your branch is up to date with 'origin/devspaces-3-rhel-8'.
nothing to commit, working tree clean == *\n\o\t\h\i\n\g\ \t\o\ \c\o\m\m\i\t\,\ \w\o\r\k\i\n\g\ \t\r\e\e\ \c\l\e\a\n* ]]
+ log '[INFO] No new sources, so nothing to build.'
+ [[ 1 -gt 0 ]]
+ echo '[INFO] No new sources, so nothing to build.'
[INFO] No new sources, so nothing to build.
+ [[ 1 -eq 1 ]]
+ echo '[INFO] #1 Trigger container-build in current branch: rhpkg container-build '
+ git status
[INFO] #1 Trigger container-build in current branch: rhpkg container-build
On branch devspaces-3-rhel-8
Your branch is up to date with 'origin/devspaces-3-rhel-8'.
nothing to commit, working tree clean
++ mktemp
+ tmpfile=/tmp/tmp.4mJYKHYM7C
+ rhpkg container-build --nowait
+ tee /tmp/tmp.4mJYKHYM7C
Created task: 36779676
Task info: https://brewweb.engineering.redhat.com/brew/taskinfo?taskID=36779676
++ cat /tmp/tmp.4mJYKHYM7C
++ grep 'Created task:'
++ sed -e 's#Created task:##'
+ taskID=' 36779676'
+ brew watch-logs 36779676
+ tee /tmp/tmp.4mJYKHYM7C
$ git clone -n git://pkgs.devel.redhat.com/containers/codeready-workspaces-configbump /mnt/build/tmp-koji/tasks/9676/36779676/sources/codeready-workspaces-configbump
Cloning into '/mnt/build/tmp-koji/tasks/9676/36779676/sources/codeready-workspaces-configbump'...
$ git reset --hard 0a57479a88c02ef037723a775a7d48f0bb5b4844
HEAD is now at 0a57479 [mid2dwn] Sync from redhat-developer/devspaces-images @ b1fd
2021-05-12 23:18:19,032 platform:- - atomic_reactor.inner - INFO - log encoding: UTF-8
2021-05-12 23:18:19,033 platform:- - atomic_reactor.inner - DEBUG - getting build json from input auto
2021-05-12 23:18:19,033 platform:- - atomic_reactor.plugin - DEBUG - "auto" input used, determining what input plugin to use.
2021-05-12 23:18:19,033 platform:- - atomic_reactor.plugin - DEBUG - loading plugins from dir '/usr/lib/python3.6/site-packages/atomic_reactor/plugins'
2021-05-12 23:18:19,033 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/__init__.py'
2021-05-12 23:18:19,033 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/build_buildah.py'
2021-05-12 23:18:19,033 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/build_docker_api.py'
2021-05-12 23:18:19,034 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/build_imagebuilder.py'
2021-05-12 23:18:19,034 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/build_orchestrate_build.py'
2021-05-12 23:18:19,094 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/build_source_container.py'
2021-05-12 23:18:19,094 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/exit_import_image.py'
2021-05-12 23:18:19,095 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/exit_koji_import.py'
2021-05-12 23:18:19,119 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/exit_koji_tag_build.py'
2021-05-12 23:18:19,120 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/exit_push_floating_tags.py'
2021-05-12 23:18:19,121 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/exit_remove_built_image.py'
2021-05-12 23:18:19,121 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/exit_remove_worker_metadata.py'
2021-05-12 23:18:19,121 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/exit_sendmail.py'
2021-05-12 23:18:19,128 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/exit_store_logs_to_file.py'
2021-05-12 23:18:19,128 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/exit_store_metadata_in_osv3.py'
2021-05-12 23:18:19,128 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/exit_verify_media_types.py'
2021-05-12 23:18:19,129 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/input_env.py'
2021-05-12 23:18:19,129 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/input_osv3.py'
2021-05-12 23:18:19,129 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/input_path.py'
2021-05-12 23:18:19,130 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/post_compare_components.py'
2021-05-12 23:18:19,130 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/post_compress.py'
2021-05-12 23:18:19,130 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/post_export_operator_manifests.py'
2021-05-12 23:18:19,145 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/post_fetch_worker_metadata.py'
2021-05-12 23:18:19,145 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/post_generate_maven_metadata.py'
2021-05-12 23:18:19,146 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/post_group_manifests.py'
2021-05-12 23:18:19,146 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/post_koji_upload.py'
2021-05-12 23:18:19,147 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/post_push_operator_manifest.py'
2021-05-12 23:18:19,148 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/post_rpmqa.py'
2021-05-12 23:18:19,148 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/post_tag_and_push.py'
2021-05-12 23:18:19,148 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/post_tag_from_config.py'
2021-05-12 23:18:19,149 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_add_buildargs_in_df.py'
2021-05-12 23:18:19,149 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_add_dockerfile.py'
2021-05-12 23:18:19,149 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_add_filesystem.py'
2021-05-12 23:18:19,150 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_add_flatpak_labels.py'
2021-05-12 23:18:19,150 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_add_help.py'
2021-05-12 23:18:19,150 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_add_image_content_manifest.py'
2021-05-12 23:18:19,151 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_add_labels_in_df.py'
2021-05-12 23:18:19,151 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_add_yum_repo_by_url.py'
2021-05-12 23:18:19,151 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_bump_release.py'
2021-05-12 23:18:19,152 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_change_from_in_df.py'
2021-05-12 23:18:19,152 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_check_and_set_platforms.py'
2021-05-12 23:18:19,152 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_check_and_set_rebuild.py'
2021-05-12 23:18:19,152 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_check_user_settings.py'
2021-05-12 23:18:19,153 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_distribution_scope.py'
2021-05-12 23:18:19,153 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_download_remote_source.py'
2021-05-12 23:18:19,153 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_fetch_maven_artifacts.py'
2021-05-12 23:18:19,154 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_fetch_sources.py'
2021-05-12 23:18:19,155 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_flatpak_create_dockerfile.py'
2021-05-12 23:18:19,155 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_flatpak_update_dockerfile.py'
2021-05-12 23:18:19,156 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_hide_files.py'
2021-05-12 23:18:19,156 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_inject_parent_image.py'
2021-05-12 23:18:19,157 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_inject_yum_repo.py'
2021-05-12 23:18:19,157 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_koji.py'
2021-05-12 23:18:19,157 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_koji_delegate.py'
2021-05-12 23:18:19,157 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_koji_parent.py'
2021-05-12 23:18:19,158 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_pin_operator_digest.py'
2021-05-12 23:18:19,158 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_pull_base_image.py'
2021-05-12 23:18:19,159 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_pyrpkg_fetch_artefacts.py'
2021-05-12 23:18:19,159 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_reactor_config.py'
2021-05-12 23:18:19,160 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_resolve_composes.py'
2021-05-12 23:18:19,161 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/pre_resolve_remote_source.py'
2021-05-12 23:18:19,161 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/prepub_flatpak_create_oci.py'
2021-05-12 23:18:19,161 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/prepub_squash.py'
2021-05-12 23:18:19,164 platform:- - atomic_reactor.plugin - DEBUG - load file '/usr/lib/python3.6/site-packages/atomic_reactor/plugins/prepub_tests_for_image.py'
2021-05-12 23:18:19,164 platform:- - atomic_reactor.plugin - DEBUG - checking if "env" plugin is autousable ...
2021-05-12 23:18:19,164 platform:- - atomic_reactor.plugin - DEBUG - checking if "osv3" plugin is autousable ...
2021-05-12 23:18:19,164 platform:- - atomic_reactor.plugin - DEBUG - checking if "osv3_source_container" plugin is autousable ...
2021-05-12 23:18:19,164 platform:- - atomic_reactor.plugin - DEBUG - checking if "path" plugin is autousable ...
2021-05-12 23:18:19,164 platform:- - atomic_reactor.plugin - DEBUG - using "osv3" for input
2021-05-12 23:18:19,164 platform:- - atomic_reactor.plugin - DEBUG - loading plugins from dir '/usr/lib/python3.6/site-packages/atomic_reactor/plugins'
2021-05-12 23:18:19,166 platform:- - atomic_reactor.plugin - DEBUG - running plugin 'osv3'
2021-05-12 23:18:19,173 - osbs.core - INFO - Using service account's auth token
2021-05-12 23:18:19,174 - osbs.build.user_params - INFO - Validating params of BuildUserParams
2021-05-12 23:18:19,174 - osbs.build.plugins_configuration - INFO - loading customize conf from path /usr/share/osbs/worker_customize.json
2021-05-12 23:18:19,174 - osbs.build.plugins_configuration - INFO - failed to find customize conf from path /usr/share/osbs/worker_customize.json
2021-05-12 23:18:19,174 - osbs.build.plugins_configuration - DEBUG - No site-user specified plugins to disable
2021-05-12 23:18:19,174 - osbs.build.plugins_configuration - DEBUG - No site-user specified plugins to enable
2021-05-12 23:18:19,174 - osbs.build.plugins_configuration - DEBUG - loading template from path /usr/share/osbs/orchestrator_inner:6.json
2021-05-12 23:18:19,226 platform:- - atomic_reactor.plugins.osv3 - DEBUG - build json: {'source': {'provider': 'git', 'uri': 'git://pkgs.devel.redhat.com/containers/codeready-workspaces-configbump', 'provider_params': {'git_commit': '0a57479a88c02ef037723a775a7d48f0bb5b4844', 'git_commit_depth': 1, 'git_branch': 'devspaces-3-rhel-8'}}, 'openshift_build_selflink': '/apis/build.openshift.io/v1/namespaces/osbs-prod/builds/codeready-workspaces-configbump-devspaces-3-rhel-8-3df2b-1', 'prebuild_plugins': [{'name': 'reactor_config'}, {'name': 'check_user_settings', 'args': {'flatpak': False}}, {'name': 'check_and_set_rebuild', 'args': {'label_key': 'is_autorebuild', 'label_value': 'true'}}, {'name': 'check_and_set_platforms', 'required': False, 'args': {'koji_target': 'devspaces-3-rhel-8-containers-candidate'}}, {'name': 'flatpak_create_dockerfile'}, {'name': 'inject_parent_image'}, {'name': 'pull_base_image', 'args': {'check_platforms': True, 'inspect_only': True}}, {'name': 'koji_parent'}, {'name': 'koji_delegate'}, {'name': 'resolve_composes', 'args': {'koji_target': 'devspaces-3-rhel-8-containers-candidate'}}, {'name': 'add_filesystem', 'args': {'koji_target': 'devspaces-3-rhel-8-containers-candidate'}}, {'name': 'flatpak_update_dockerfile'}, {'name': 'bump_release'}, {'name': 'add_flatpak_labels'}, {'name': 'add_labels_in_dockerfile'}, {'name': 'resolve_remote_source'}, {'name': 'pin_operator_digest'}], 'buildstep_plugins': [{'name': 'orchestrate_build', 'args': {'platforms': ['aarch64', 'x86_64', 's390x', 'ppc64le'], 'build_kwargs': {'component': 'codeready-workspaces-configbump', 'git_branch': 'devspaces-3-rhel-8', 'git_ref': '0a57479a88c02ef037723a775a7d48f0bb5b4844', 'git_uri': 'git://pkgs.devel.redhat.com/containers/codeready-workspaces-configbump', 'koji_task_id': 36779676, 'user': 'crw-build/codeready-workspaces-jenkins.rhev-ci-vms.eng.rdu2.redhat.com', 'arrangement_version': 6, 'reactor_config_map': 'reactor-config-map', 'git_commit_depth': 1, 'target': 'devspaces-3-rhel-8-containers-candidate'}, 'config_kwargs': {}}}], 'postbuild_plugins': [{'name': 'fetch_worker_metadata'}, {'name': 'compare_components'}, {'name': 'tag_from_config', 'args': {'tag_suffixes': {'unique': ['devspaces-3-rhel-8-containers-candidate-15947-20210512231407'], 'primary': ['{version}-{release}'], 'floating': ['latest', '{version}']}}}, {'name': 'group_manifests'}, {'name': 'push_operator_manifests'}, {'name': 'generate_maven_metadata'}], 'prepublish_plugins': [], 'exit_plugins': [{'name': 'verify_media', 'required': False}, {'name': 'koji_import'}, {'name': 'push_floating_tags'}, {'name': 'import_image', 'required': False, 'args': {'imagestream': 'registry-proxy.engineering.redhat.com-rh-osbs-codeready-workspaces-configbump-rhel8'}}, {'name': 'koji_tag_build', 'args': {'target': 'devspaces-3-rhel-8-containers-candidate'}}, {'name': 'store_metadata_in_osv3'}, {'name': 'sendmail'}, {'name': 'remove_built_image'}, {'name': 'remove_worker_metadata'}]}
2021-05-12 23:18:19,240 platform:- - atomic_reactor.plugin - DEBUG - plugin 'osv3' finished in 0s
2021-05-12 23:18:19,240 platform:- - atomic_reactor.inner - DEBUG - build json: {'source': {'provider': 'git', 'uri': 'git://pkgs.devel.redhat.com/containers/codeready-workspaces-configbump', 'provider_params': {'git_commit': '0a57479a88c02ef037723a775a7d48f0bb5b4844', 'git_commit_depth': 1, 'git_branch': 'devspaces-3-rhel-8'}}, 'openshift_build_selflink': '/apis/build.openshift.io/v1/namespaces/osbs-prod/builds/codeready-workspaces-configbump-devspaces-3-rhel-8-3df2b-1', 'prebuild_plugins': [{'name': 'reactor_config'}, {'name': 'check_user_settings', 'args': {'flatpak': False}}, {'name': 'check_and_set_rebuild', 'args': {'label_key': 'is_autorebuild', 'label_value': 'true'}}, {'name': 'check_and_set_platforms', 'required': False, 'args': {'koji_target': 'devspaces-3-rhel-8-containers-candidate'}}, {'name': 'flatpak_create_dockerfile'}, {'name': 'inject_parent_image'}, {'name': 'pull_base_image', 'args': {'check_platforms': True, 'inspect_only': True}}, {'name': 'koji_parent'}, {'name': 'koji_delegate'}, {'name': 'resolve_composes', 'args': {'koji_target': 'devspaces-3-rhel-8-containers-candidate'}}, {'name': 'add_filesystem', 'args': {'koji_target': 'devspaces-3-rhel-8-containers-candidate'}}, {'name': 'flatpak_update_dockerfile'}, {'name': 'bump_release'}, {'name': 'add_flatpak_labels'}, {'name': 'add_labels_in_dockerfile'}, {'name': 'resolve_remote_source'}, {'name': 'pin_operator_digest'}], 'buildstep_plugins': [{'name': 'orchestrate_build', 'args': {'platforms': ['aarch64', 'x86_64', 's390x', 'ppc64le'], 'build_kwargs': {'component': 'codeready-workspaces-configbump', 'git_branch': 'devspaces-3-rhel-8', 'git_ref': '0a57479a88c02ef037723a775a7d48f0bb5b4844', 'git_uri': 'git://pkgs.devel.redhat.com/containers/codeready-workspaces-configbump', 'koji_task_id': 36779676, 'user': 'crw-build/codeready-workspaces-jenkins.rhev-ci-vms.eng.rdu2.redhat.com', 'arrangement_version': 6, 'reactor_config_map': 'reactor-config-map', 'git_commit_depth': 1, 'target': 'devspaces-3-rhel-8-containers-candidate'}, 'config_kwargs': {}}}], 'postbuild_plugins': [{'name': 'fetch_worker_metadata'}, {'name': 'compare_components'}, {'name': 'tag_from_config', 'args': {'tag_suffixes': {'unique': ['devspaces-3-rhel-8-containers-candidate-15947-20210512231407'], 'primary': ['{version}-{release}'], 'floating': ['latest', '{version}']}}}, {'name': 'group_manifests'}, {'name': 'push_operator_manifests'}, {'name': 'generate_maven_metadata'}], 'prepublish_plugins': [], 'exit_plugins': [{'name': 'verify_media', 'required': False}, {'name': 'koji_import'}, {'name': 'push_floating_tags'}, {'name': 'import_image', 'required': False, 'args': {'imagestream': 'registry-proxy.engineering.redhat.com-rh-osbs-codeready-workspaces-configbump-rhel8'}}, {'name': 'koji_tag_build', 'args': {'target': 'devspaces-3-rhel-8-containers-candidate'}}, {'name': 'store_metadata_in_osv3'}, {'name': 'sendmail'}, {'name': 'remove_built_image'}, {'name': 'remove_worker_metadata'}]}
2021-05-12 23:18:19,241 platform:- - atomic_reactor.source - DEBUG - workdir is '/tmp/tmp8no48nwv'
2021-05-12 23:18:19,241 platform:- - atomic_reactor.source - DEBUG - source path is '/tmp/tmp8no48nwv/codeready-workspaces-configbump'
2021-05-12 23:18:19,241 platform:- - atomic_reactor.util - INFO - Using these tools:
2021-05-12 23:18:19,241 platform:- - atomic_reactor.util - INFO - docker-py-3.2.1 at /usr/lib/python3.6/site-packages/docker/__init__.py
2021-05-12 23:18:19,241 platform:- - atomic_reactor.util - INFO - docker_squash-1.0.8 at /usr/lib/python3.6/site-packages/docker_squash/__init__.py
2021-05-12 23:18:19,241 platform:- - atomic_reactor.util - INFO - atomic_reactor-3.5.0 at /usr/lib/python3.6/site-packages/atomic_reactor/__init__.py
2021-05-12 23:18:19,241 platform:- - atomic_reactor.util - INFO - osbs-client-1.9.0 at /usr/lib/python3.6/site-packages/osbs/__init__.py
2021-05-12 23:18:19,242 - osbs.utils - INFO - cloning git repo 'git://pkgs.devel.redhat.com/containers/codeready-workspaces-configbump'
2021-05-12 23:18:19,242 - osbs.utils - DEBUG - url = 'git://pkgs.devel.redhat.com/containers/codeready-workspaces-configbump', dir = '/tmp/tmp8no48nwv/codeready-workspaces-configbump', commit = '0a57479a88c02ef037723a775a7d48f0bb5b4844'
2021-05-12 23:18:19,242 - osbs.utils - DEBUG - cloning '['git', 'clone', '-b', 'devspaces-3-rhel-8', '--single-branch', '--depth', '1', 'git://pkgs.devel.redhat.com/containers/codeready-workspaces-configbump', '/tmp/tmp8no48nwv/codeready-workspaces-configbump']'
2021-05-12 23:18:20,598 - osbs.utils - DEBUG - Resetting current HEAD: '['git', 'reset', '--hard', '0a57479a88c02ef037723a775a7d48f0bb5b4844']'
HEAD is now at 0a57479 [mid2dwn] Sync from redhat-developer/devspaces-images @ b1fd
2021-05-12 23:18:20,614 - osbs.utils - DEBUG - getting SHA-1 of provided ref '0a57479a88c02ef037723a775a7d48f0bb5b4844'
2021-05-12 23:18:20,623 - osbs.utils - INFO - commit ID = 0a57479a88c02ef037723a775a7d48f0bb5b4844
2021-05-12 23:18:20,624 platform:- - atomic_reactor.util - INFO - searching for dockerfile in '/tmp/tmp8no48nwv/codeready-workspaces-configbump' (local path None)
2021-05-12 23:18:20,624 platform:- - atomic_reactor.util - DEBUG - abs path = '/tmp/tmp8no48nwv/codeready-workspaces-configbump', local path = 'None'
2021-05-12 23:18:20,624 platform:- - atomic_reactor.util - DEBUG - Dockerfile found: '/tmp/tmp8no48nwv/codeready-workspaces-configbump/Dockerfile'
2021-05-12 23:18:20,627 platform:- - atomic_reactor.build - DEBUG - base image specified in dockerfile = 'ubi8-minimal:8.3-298.1618432845'
2021-05-12 23:18:20,627 platform:- - atomic_reactor.build - DEBUG - parent images specified in dockerfile = '['ubi8-minimal:8.3-298.1618432845']'
2021-05-12 23:18:20,629 platform:- - atomic_reactor.plugin - INFO - initializing runner of pre-build plugins
2021-05-12 23:18:20,629 platform:- - atomic_reactor.plugin - DEBUG - loading plugins from dir '/usr/lib/python3.6/site-packages/atomic_reactor/plugins'
2021-05-12 23:18:20,632 platform:- - atomic_reactor.plugin - INFO - initializing runner of pre-publish plugins
2021-05-12 23:18:20,632 platform:- - atomic_reactor.plugin - DEBUG - loading plugins from dir '/usr/lib/python3.6/site-packages/atomic_reactor/plugins'
2021-05-12 23:18:20,635 platform:- - atomic_reactor.plugin - INFO - initializing runner of post-build plugins
2021-05-12 23:18:20,635 platform:- - atomic_reactor.plugin - DEBUG - loading plugins from dir '/usr/lib/python3.6/site-packages/atomic_reactor/plugins'
2021-05-12 23:18:20,637 platform:- - atomic_reactor.inner - INFO - running pre-build plugins
2021-05-12 23:18:20,637 platform:- - atomic_reactor.plugin - DEBUG - running plugin 'reactor_config'
2021-05-12 23:18:20,637 platform:- - atomic_reactor.plugin - INFO - running plugin instance with args: '{}'
2021-05-12 23:18:20,638 platform:- - atomic_reactor.plugins.reactor_config - INFO - reading config from REACTOR_CONFIG env variable
2021-05-12 23:18:20,668 platform:- - atomic_reactor.plugins.reactor_config - INFO - reading config content {'artifacts_allowed_domains': ['download.devel.redhat.com/released', 'download.devel.redhat.com/devel/candidates', 'download.devel.redhat.com/brewroot', 'download.engineering.redhat.com/released', 'download.engineering.redhat.com/devel/candidates', 'download.engineering.redhat.com/brewroot', 'indy.psi.redhat.com/api/content/maven/hosted/pnc-builds'], 'build_env_vars': [{'name': 'NO_PROXY', 'value': 'localhost,127.0.0.1,.psi.redhat.com,.engineering.redhat.com,.rdu2.redhat.com,.bos.redhat.com,.cee.redhat.com,.upshift.redhat.com,.devel.redhat.com,.phx2.redhat.com,.osci.redhat.com'}, {'name': 'HTTPS_PROXY', 'value': 'http://osbs-external-proxy.hosts.prod.upshift.rdu2.redhat.com:3128'}], 'builder_ca_bundle': '/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem', 'buildstep_alias': {'buildah_bud': 'imagebuilder'}, 'cachito': {'api_url': 'https://cachito.engineering.redhat.com', 'auth': {'ssl_certs_dir': '/var/run/secrets/atomic-reactor/kojisecret'}, 'timeout': 14400}, 'clusters': {'aarch64': [{'enabled': True, 'max_concurrent_builds': 128, 'name': 'aarch64-1-on-premise'}, {'enabled': False, 'max_concurrent_builds': 12, 'name': 'aarch64-on-premise'}], 'ppc64le': [{'enabled': True, 'max_concurrent_builds': 40, 'name': 'ppc64le-1-on-premise'}, {'enabled': True, 'max_concurrent_builds': 40, 'name': 'ppc64le-2-on-premise'}], 's390x': [{'enabled': True, 'max_concurrent_builds': 16, 'name': 's390x-1-on-premise'}, {'enabled': True, 'max_concurrent_builds': 16, 'name': 's390x-2-on-premise'}], 'x86_64': [{'enabled': True, 'max_concurrent_builds': 80, 'name': 'x86_64-upshift'}]}, 'clusters_client_config_dir': '/var/run/secrets/atomic-reactor/client-config-secret', 'content_versions': ['v2'], 'flatpak': {'base_image': 'registry-proxy.engineering.redhat.com/rh-osbs/rhel8:8.0-833', 'metadata': 'both'}, 'group_manifests': True, 'hide_files': {'files': ['/etc/yum.repos.d/ubi.repo'], 'tmpdir': '/tmp'}, 'image_equal_labels': [['description', 'io.k8s.description']], 'image_label_info_url_format': 'https://access.redhat.com/containers/#/registry.access.redhat.com/{name}/images/{version}-{release}', 'image_labels': {'com.redhat.license_terms': 'https://www.redhat.com/agreements', 'distribution-scope': 'public', 'vendor': 'Red Hat, Inc.'}, 'image_size_limit': {'binary_image': 32212254720}, 'koji': {'auth': {'ssl_certs_dir': '/var/run/secrets/atomic-reactor/kojisecret'}, 'hub_url': 'https://brewhub.engineering.redhat.com/brewhub', 'reserve_build': True, 'root_url': 'http://download.engineering.redhat.com/brewroot', 'task_annotations_whitelist': ['remote_source_url']}, 'odcs': {'api_url': 'https://odcs.engineering.redhat.com/api/1', 'auth': {'ssl_certs_dir': '/var/run/secrets/atomic-reactor/kojisecret'}, 'default_signing_intent': 'release', 'signing_intents': [{'deprecated_keys': ['37017186'], 'keys': ['FD431D51', 'DB42A60E'], 'name': 'release'}, {'deprecated_keys': ['37017186'], 'keys': ['F21541EB', '897DA07A', 'FD431D51', 'DB42A60E'], 'name': 'beta'}, {'deprecated_keys': ['37017186'], 'keys': ['F21541EB', '897DA07A', 'FD431D51', 'DB42A60E', '37036783'], 'name': 'e2e_testing'}, {'keys': [], 'name': 'unsigned'}], 'timeout': 7200}, 'omps': {'appregistry_url': 'https://quay.io/cnr', 'omps_namespace': 'rh-osbs-operators', 'omps_secret_dir': '/var/run/secrets/atomic-reactor/ompssecret', 'omps_url': 'https://omps-prod.cloud.paas.psi.redhat.com'}, 'openshift': {'auth': {'enable': True}, 'build_json_dir': '/usr/share/osbs', 'url': 'https://osbs.psi.redhat.com'}, 'operator_manifests': {'allowed_registries': ['registry-proxy.engineering.redhat.com', 'registry.redhat.io', 'registry.stage.redhat.io'], 'csv_modifications': {'allowed_attributes': [['spec', 'skips'], ['spec', 'version'], ['metadata', 'substitutes-for'], ['metadata', 'name']]}, 'registry_post_replace': [{'new': 'registry.redhat.io', 'old': 'registry-proxy.engineering.redhat.com'}, {'new': 'registry.redhat.io', 'old': 'registry.stage.redhat.io'}], 'repo_replacements': [{'package_mappings_url': 'https://gitlab.cee.redhat.com/osbs/package-mapping-storage/-/raw/master/package_mapping.yaml', 'registry': 'registry-proxy.engineering.redhat.com'}]}, 'package_comparison_exceptions': ['libquadmath'], 'platform_descriptors': [{'architecture': 'amd64', 'platform': 'x86_64'}, {'architecture': 'arm64', 'platform': 'aarch64'}], 'pnc': {'base_api_url': 'http://orch.psi.redhat.com/pnc-rest/v2', 'get_scm_archive_path': 'builds/{}/scm-archive'}, 'prefer_schema1_digest': False, 'pull_registries': [{'auth': {'cfg_path': '/var/run/secrets/atomic-reactor/registries-secret'}, 'insecure': False, 'url': 'https://registry.redhat.io'}, {'auth': {'cfg_path': '/var/run/secrets/atomic-reactor/registries-secret'}, 'insecure': False, 'url': 'https://registry.stage.redhat.io'}, {'auth': {'cfg_path': '/var/run/secrets/atomic-reactor/registries-secret'}, 'insecure': False, 'url': 'https://registry.access.redhat.com'}, {'auth': {'cfg_path': '/var/run/secrets/atomic-reactor/registries-secret'}, 'insecure': False, 'url': 'https://registry.access.stage.redhat.com'}], 'registries': [{'auth': {'cfg_path': '/var/run/secrets/atomic-reactor/registries-secret'}, 'insecure': False, 'url': 'https://registry-proxy.engineering.redhat.com/v2'}], 'registries_organization': 'rh-osbs', 'required_secrets': ['kojisecret', 'registries-secret'], 'smtp': {'domain': 'redhat.com', 'error_addresses': ['[email protected]'], 'from_address': '[email protected]', 'host': 'smtp.corp.redhat.com', 'send_to_pkg_owner': True, 'send_to_submitter': True}, 'source_container': {'cpu_request': '1001m', 'denylist_sources': 'http://git.app.eng.bos.redhat.com/git/rcm/rcm-metadata.git/plain/automation/missing_misplaced_source/container-source-exclusions.yaml', 'denylist_srpms': {'denylist_key': 'blacklist_source', 'denylist_url': 'http://git.app.eng.bos.redhat.com/git/rcm/rcm-metadata.git/plain/automation/missing_misplaced_source/config.json'}, 'limit_media_types': ['application/vnd.docker.distribution.manifest.v2+json'], 'memory_request': '3Gi'}, 'source_registry': {'insecure': False, 'url': 'https://registry-proxy.engineering.redhat.com'}, 'sources_command': 'rhpkg-env sources', 'version': 1, 'worker_token_secrets': ['x86-64-upshift-orchestrator', 'ppc64le-1-on-premise-orchestrator', 'ppc64le-2-on-premise-orchestrator', 's390x-1-on-premise-orchestrator', 's390x-2-on-premise-orchestrator', 'aarch64-on-premise-orchestrator', 'aarch64-1-on-premise-orchestrator', 'client-config-secret', 'ompssecret']}
2021-05-12 23:18:20,674 platform:- - atomic_reactor.plugin - DEBUG - plugin 'reactor_config' finished in 0s
2021-05-12 23:18:20,674 platform:- - atomic_reactor.plugin - DEBUG - running plugin 'check_user_settings'
2021-05-12 23:18:20,674 platform:- - atomic_reactor.plugin - INFO - running plugin instance with args: '{'flatpak': False}'
2021-05-12 23:18:20,674 platform:- - atomic_reactor.plugins.check_user_settings - DEBUG - Running check: only one of labels com.redhat.com.delivery.appregistry and com.redhat.delivery.operator.bundle is allowed
2021-05-12 23:18:20,675 platform:- - atomic_reactor.util - DEBUG - base image unable to be inspected
2021-05-12 23:18:20,676 platform:- - atomic_reactor.plugins.check_user_settings - DEBUG - Running check: Operator bundle build can be only 'FROM scratch' build (single stage)
2021-05-12 23:18:20,677 platform:- - atomic_reactor.util - DEBUG - base image unable to be inspected
2021-05-12 23:18:20,679 platform:- - atomic_reactor.util - INFO - searching for dockerfile in '/tmp/tmp8no48nwv/codeready-workspaces-configbump' (local path None)
2021-05-12 23:18:20,679 platform:- - atomic_reactor.util - DEBUG - abs path = '/tmp/tmp8no48nwv/codeready-workspaces-configbump', local path = 'None'
2021-05-12 23:18:20,679 platform:- - atomic_reactor.util - DEBUG - Dockerfile found: '/tmp/tmp8no48nwv/codeready-workspaces-configbump/Dockerfile'
2021-05-12 23:18:20,679 platform:- - atomic_reactor.util - DEBUG - /tmp/tmp8no48nwv/codeready-workspaces-configbump/fetch-artifacts-koji.yaml not found
2021-05-12 23:18:20,679 platform:- - atomic_reactor.util - INFO - searching for dockerfile in '/tmp/tmp8no48nwv/codeready-workspaces-configbump' (local path None)
2021-05-12 23:18:20,679 platform:- - atomic_reactor.util - DEBUG - abs path = '/tmp/tmp8no48nwv/codeready-workspaces-configbump', local path = 'None'
2021-05-12 23:18:20,679 platform:- - atomic_reactor.util - DEBUG - Dockerfile found: '/tmp/tmp8no48nwv/codeready-workspaces-configbump/Dockerfile'
2021-05-12 23:18:20,679 platform:- - atomic_reactor.util - DEBUG - /tmp/tmp8no48nwv/codeready-workspaces-configbump/fetch-artifacts-url.yaml not found
2021-05-12 23:18:20,679 platform:- - atomic_reactor.util - INFO - searching for dockerfile in '/tmp/tmp8no48nwv/codeready-workspaces-configbump' (local path None)
2021-05-12 23:18:20,679 platform:- - atomic_reactor.util - DEBUG - abs path = '/tmp/tmp8no48nwv/codeready-workspaces-configbump', local path = 'None'
2021-05-12 23:18:20,679 platform:- - atomic_reactor.util - DEBUG - Dockerfile found: '/tmp/tmp8no48nwv/codeready-workspaces-configbump/Dockerfile'
2021-05-12 23:18:20,682 platform:- - atomic_reactor.plugin - DEBUG - plugin 'check_user_settings' finished in 0s
2021-05-12 23:18:20,682 platform:- - atomic_reactor.plugin - DEBUG - running plugin 'check_and_set_rebuild'
2021-05-12 23:18:20,683 platform:- - atomic_reactor.plugin - INFO - running plugin instance with args: '{'label_key': 'is_autorebuild', 'label_value': 'true'}'
2021-05-12 23:18:20,683 platform:- - atomic_reactor.plugins.check_and_set_rebuild - INFO - This is a rebuild? False
2021-05-12 23:18:20,684 - osbs.core - INFO - Using service account's auth token
2021-05-12 23:18:20,721 - osbs.http - DEBUG - cleaning up
2021-05-12 23:18:20,721 - osbs.core - DEBUG - before modification: b'{"kind":"BuildConfig","apiVersion":"build.openshift.io/v1","metadata":{"name":"codeready-workspaces-configbump-devspaces-3-rhel-8-3df2b","namespace":"osbs-prod","selfLink":"/apis/build.openshift.io/v1/namespaces/osbs-prod/buildconfigs/codeready-workspaces-configbump-devspaces-3-rhel-8-3df2b","uid":"528efdfa-b378-11eb-9ccd-fa163e9a66a2","resourceVersion":"237166513","creationTimestamp":"2021-05-12T23:18:12Z","labels":{"git-branch":"devspaces-3-rhel-8","git-full-repo":"gitpkgs.devel.redhat.comcontainerscodeready-workspaces-configb","git-repo-name":"codeready-workspaces-configbump","is_autorebuild":"false","koji-task-id":"36779676","original-koji-task-id":"36779676"}},"spec":{"triggers":[],"runPolicy":"Serial","source":{"type":"Git","git":{"uri":"git://pkgs.devel.redhat.com/containers/codeready-workspaces-configbump","ref":"0a57479a88c02ef037723a775a7d48f0bb5b4844"}},"strategy":{"type":"Custom","customStrategy":{"from":{"kind":"ImageStreamTag","name":"osbs-rcm-buildroot:released"},"env":[{"name":"REACTOR_CONFIG","valueFrom":{"configMapKeyRef":{"name":"reactor-config-map","key":"config.yaml"}}},{"name":"USER_PARAMS","value":"{\\"arrangement_version\\": 6, \\"base_image\\": \\"ubi8-minimal:8.3-298.1618432845\\", \\"build_from\\": \\"imagestream:osbs-rcm-buildroot:released\\", \\"build_image\\": \\"osbs-rcm-buildroot:released\\", \\"build_json_dir\\": \\"/usr/share/osbs/\\", \\"build_type\\": \\"orchestrator\\", \\"buildroot_is_imagestream\\": true, \\"component\\": \\"codeready-workspaces-configbump\\", \\"customize_conf\\": \\"worker_customize.json\\", \\"git_branch\\": \\"devspaces-3-rhel-8\\", \\"git_commit_depth\\": 1, \\"git_ref\\": \\"0a57479a88c02ef037723a775a7d48f0bb5b4844\\", \\"git_uri\\": \\"git://pkgs.devel.redhat.com/containers/codeready-workspaces-configbump\\", \\"image_tag\\": \\"crw-build/codeready-workspaces-jenkins.rhev-ci-vms.eng.rdu2.redhat.com/codeready-workspaces-configbump:devspaces-3-rhel-8-containers-candidate-15947-20210512231407\\", \\"imagestream_name\\": \\"registry-proxy.engineering.redhat.com-rh-osbs-codeready-workspaces-configbump-rhel8\\", \\"kind\\": \\"build_user_params\\", \\"koji_target\\": \\"devspaces-3-rhel-8-containers-candidate\\", \\"koji_task_id\\": 36779676, \\"name\\": \\"codeready-workspaces-configbump-devspaces-3-rhel-8-3df2b\\", \\"orchestrator_deadline\\": 4, \\"platforms\\": [\\"aarch64\\", \\"x86_64\\", \\"s390x\\", \\"ppc64le\\"], \\"reactor_config_map\\": \\"reactor-config-map\\", \\"trigger_imagestreamtag\\": \\"registry-proxy.engineering.redhat.com-rh-osbs-ubi8-minimal:8.3-298.1618432845\\", \\"user\\": \\"crw-build/codeready-workspaces-jenkins.rhev-ci-vms.eng.rdu2.redhat.com\\", \\"worker_deadline\\": 3}"},{"name":"NO_PROXY","value":"localhost,127.0.0.1,.psi.redhat.com,.engineering.redhat.com,.rdu2.redhat.com,.bos.redhat.com,.cee.redhat.com,.upshift.redhat.com,.devel.redhat.com,.phx2.redhat.com,.osci.redhat.com"},{"name":"HTTPS_PROXY","value":"http://osbs-external-proxy.hosts.prod.upshift.rdu2.redhat.com:3128"}],"exposeDockerSocket":true,"secrets":[{"secretSource":{"name":"client-config-secret"},"mountPath":"/var/run/secrets/atomic-reactor/client-config-secret"},{"secretSource":{"name":"ppc64le-2-on-premise-orchestrator"},"mountPath":"/var/run/secrets/atomic-reactor/ppc64le-2-on-premise-orchestrator"},{"secretSource":{"name":"ppc64le-1-on-premise-orchestrator"},"mountPath":"/var/run/secrets/atomic-reactor/ppc64le-1-on-premise-orchestrator"},{"secretSource":{"name":"s390x-1-on-premise-orchestrator"},"mountPath":"/var/run/secrets/atomic-reactor/s390x-1-on-premise-orchestrator"},{"secretSource":{"name":"kojisecret"},"mountPath":"/var/run/secrets/atomic-reactor/kojisecret"},{"secretSource":{"name":"ompssecret"},"mountPath":"/var/run/secrets/atomic-reactor/ompssecret"},{"secretSource":{"name":"s390x-2-on-premise-orchestrator"},"mountPath":"/var/run/secrets/atomic-reactor/s390x-2-on-premise-orchestrator"},{"secretSource":{"name":"aarch64-on-premise-orchestrator"},"mountPath":"/var/run/secrets/atomic-reactor/aarch64-on-premise-orchestrator"},{"secretSource":{"name":"registries-secret"},"mountPath":"/var/run/secrets/atomic-reactor/registries-secret"},{"secretSource":{"name":"aarch64-1-on-premise-orchestrator"},"mountPath":"/var/run/secrets/atomic-reactor/aarch64-1-on-premise-orchestrator"},{"secretSource":{"name":"x86-64-upshift-orchestrator"},"mountPath":"/var/run/secrets/atomic-reactor/x86-64-upshift-orchestrator"}]}},"output":{"to":{"kind":"DockerImage","name":"crw-build/codeready-workspaces-jenkins.rhev-ci-vms.eng.rdu2.redhat.com/codeready-workspaces-configbump:devspaces-3-rhel-8-containers-candidate-15947-20210512231407"}},"resources":{},"postCommit":{},"completionDeadlineSeconds":14400,"nodeSelector":null,"successfulBuildsHistoryLimit":5,"failedBuildsHistoryLimit":5},"status":{"lastVersion":1}}\n'
2021-05-12 23:18:20,760 - osbs.http - DEBUG - cleaning up
2021-05-12 23:18:20,760 platform:- - atomic_reactor.plugin - DEBUG - plugin 'check_and_set_rebuild' finished in 0s
2021-05-12 23:18:20,760 platform:- - atomic_reactor.plugin - DEBUG - running plugin 'check_and_set_platforms'
2021-05-12 23:18:20,761 platform:- - atomic_reactor.plugin - INFO - running plugin instance with args: '{'koji_target': 'devspaces-3-rhel-8-containers-candidate'}'
2021-05-12 23:18:20,761 platform:- - atomic_reactor.utils.koji - INFO - Using SSL certificates for Koji authentication
2021-05-12 23:18:20,931 platform:- - atomic_reactor.plugins.check_and_set_platforms - INFO - Checking koji target for platforms
2021-05-12 23:18:21,214 platform:- - atomic_reactor.plugins.check_and_set_platforms - INFO - Koji platforms are ['aarch64', 'ppc64le', 's390x', 'x86_64']
2021-05-12 23:18:21,214 platform:- - atomic_reactor.util - INFO - container.yaml contains: {'platforms': {'only': ['x86_64', 's390x', 'ppc64le']}, 'compose': {'pulp_repos': True, 'signing_intent': 'release'}, 'image_build_method': 'imagebuilder'}
2021-05-12 23:18:21,215 platform:- - atomic_reactor.plugins.check_and_set_platforms - INFO - platforms in limits : {'x86_64', 's390x', 'ppc64le'}
2021-05-12 23:18:21,248 platform:- - atomic_reactor.plugin - DEBUG - plugin 'check_and_set_platforms' finished in 0s
2021-05-12 23:18:21,249 platform:- - atomic_reactor.plugin - DEBUG - running plugin 'flatpak_create_dockerfile'
2021-05-12 23:18:21,249 platform:- - atomic_reactor.plugin - INFO - running plugin instance with args: '{}'
2021-05-12 23:18:21,249 platform:- - atomic_reactor.plugins.flatpak_create_dockerfile - INFO - not flatpak build, skipping plugin
2021-05-12 23:18:21,249 platform:- - atomic_reactor.plugin - DEBUG - plugin 'flatpak_create_dockerfile' finished in 0s
2021-05-12 23:18:21,249 platform:- - atomic_reactor.plugin - DEBUG - running plugin 'inject_parent_image'
2021-05-12 23:18:21,249 platform:- - atomic_reactor.plugin - INFO - running plugin instance with args: '{}'
2021-05-12 23:18:21,250 platform:- - atomic_reactor.utils.koji - INFO - Using SSL certificates for Koji authentication
2021-05-12 23:18:21,435 platform:- - atomic_reactor.plugins.inject_parent_image - INFO - no koji parent build, skipping plugin
2021-05-12 23:18:21,435 platform:- - atomic_reactor.plugin - DEBUG - plugin 'inject_parent_image' finished in 0s
2021-05-12 23:18:21,435 platform:- - atomic_reactor.plugin - DEBUG - running plugin 'pull_base_image'
2021-05-12 23:18:21,436 platform:- - atomic_reactor.plugin - INFO - running plugin instance with args: '{'check_platforms': True, 'inspect_only': True}'
2021-05-12 23:18:21,474 platform:- - atomic_reactor.plugins.pull_base_image - INFO - using registry-proxy.engineering.redhat.com/rh-osbs/ubi8-minimal:8.3-298.1618432845 as base image.
2021-05-12 23:18:21,475 platform:- - atomic_reactor.util - DEBUG - query_registry: querying /v2/rh-osbs/ubi8-minimal/manifests/8.3-298.1618432845, headers: {'Accept': 'application/vnd.docker.distribution.manifest.list.v2+json'}
2021-05-12 23:18:21,773 platform:- - atomic_reactor.util - DEBUG - query_registry: [401] https://registry-proxy.engineering.redhat.com/v2/rh-osbs/ubi8-minimal/manifests/8.3-298.1618432845
2021-05-12 23:18:21,773 platform:- - atomic_reactor.util - DEBUG - query_registry: [200] https://registry-proxy.engineering.redhat.com/v2/rh-osbs/ubi8-minimal/manifests/8.3-298.1618432845
2021-05-12 23:18:21,773 platform:- - atomic_reactor.util - DEBUG - query_registry: response headers: {'Server': 'nginx/1.18.0', 'Date': 'Wed, 12 May 2021 23:18:21 GMT', 'Content-Type': 'application/vnd.docker.distribution.manifest.list.v2+json', 'Content-Length': '1471', 'Docker-Content-Digest': 'sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324', 'X-Frame-Options': 'DENY', 'Strict-Transport-Security': 'max-age=63072000; preload', 'Docker-Distribution-Api-Version': 'registry/2.0', 'WWW-Authenticate': 'Bearer realm="https://registry-proxy.engineering.redhat.com/v2/auth"'}
2021-05-12 23:18:21,773 platform:- - atomic_reactor.util - DEBUG - content matches expected media type
2021-05-12 23:18:21,774 platform:- - atomic_reactor.plugins.pull_base_image - INFO - Manifest list arches: {'ppc64le', 'amd64', 'arm64', 's390x'}, expected arches: {'ppc64le', 'amd64', 's390x'}
2021-05-12 23:18:21,774 platform:- - atomic_reactor.plugins.pull_base_image - INFO - Base image is a manifest list for all required platforms
2021-05-12 23:18:21,774 platform:- - atomic_reactor.util - DEBUG - sha256sum: 2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324
2021-05-12 23:18:21,774 platform:- - atomic_reactor.plugins.pull_base_image - INFO - Replacing image 'registry-proxy.engineering.redhat.com/rh-osbs/ubi8-minimal:8.3-298.1618432845' with 'registry-proxy.engineering.redhat.com/rh-osbs/ubi8-minimal@sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324'
2021-05-12 23:18:21,774 - osbs.utils - DEBUG - Attempting to parse ImageName registry-proxy.engineering.redhat.com/rh-osbs/ubi8-minimal@sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324 as an ImageName
2021-05-12 23:18:21,774 platform:- - atomic_reactor.util - INFO - set parent image 'registry-proxy.engineering.redhat.com/rh-osbs/ubi8-minimal:8.3-298.1618432845' to 'registry-proxy.engineering.redhat.com/rh-osbs/ubi8-minimal@sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324'
2021-05-12 23:18:21,774 platform:- - atomic_reactor.plugin - DEBUG - plugin 'pull_base_image' finished in 0s
2021-05-12 23:18:21,774 platform:- - atomic_reactor.plugin - DEBUG - running plugin 'koji_parent'
2021-05-12 23:18:21,775 platform:- - atomic_reactor.plugin - INFO - running plugin instance with args: '{}'
2021-05-12 23:18:21,775 platform:- - atomic_reactor.utils.koji - INFO - Using SSL certificates for Koji authentication
2021-05-12 23:18:21,955 platform:- - atomic_reactor.util - DEBUG - query_registry: querying /v2/rh-osbs/ubi8-minimal/manifests/sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324, headers: {'Accept': 'application/vnd.docker.distribution.manifest.v1+json'}
2021-05-12 23:14:05,733 - 22154 - osbs.utils - INFO - cloning git repo 'git://pkgs.devel.redhat.com/containers/codeready-workspaces-configbump'
2021-05-12 23:14:07,308 - 22154 - osbs.utils - INFO - commit ID = 0a57479a88c02ef037723a775a7d48f0bb5b4844
2021-05-12 23:14:07,832 - 22154 - osbs.api - INFO - creating build from build_config
2021-05-12 23:14:07,832 - 22154 - osbs.build.user_params - INFO - Validating params of BuildUserParams
2021-05-12 23:14:07,997 - 22154 - osbs.build.build_requestv2 - INFO - Configuring client-config-secret secret at /var/run/secrets/atomic-reactor/client-config-secret
2021-05-12 23:14:07,997 - 22154 - osbs.build.build_requestv2 - INFO - Configuring ppc64le-2-on-premise-orchestrator secret at /var/run/secrets/atomic-reactor/ppc64le-2-on-premise-orchestrator
2021-05-12 23:14:07,997 - 22154 - osbs.build.build_requestv2 - INFO - Configuring ppc64le-1-on-premise-orchestrator secret at /var/run/secrets/atomic-reactor/ppc64le-1-on-premise-orchestrator
2021-05-12 23:14:07,997 - 22154 - osbs.build.build_requestv2 - INFO - Configuring s390x-1-on-premise-orchestrator secret at /var/run/secrets/atomic-reactor/s390x-1-on-premise-orchestrator
2021-05-12 23:14:07,997 - 22154 - osbs.build.build_requestv2 - INFO - Configuring kojisecret secret at /var/run/secrets/atomic-reactor/kojisecret
2021-05-12 23:14:07,997 - 22154 - osbs.build.build_requestv2 - INFO - Configuring ompssecret secret at /var/run/secrets/atomic-reactor/ompssecret
2021-05-12 23:14:07,997 - 22154 - osbs.build.build_requestv2 - INFO - Configuring s390x-2-on-premise-orchestrator secret at /var/run/secrets/atomic-reactor/s390x-2-on-premise-orchestrator
2021-05-12 23:14:07,997 - 22154 - osbs.build.build_requestv2 - INFO - Configuring aarch64-on-premise-orchestrator secret at /var/run/secrets/atomic-reactor/aarch64-on-premise-orchestrator
2021-05-12 23:14:07,998 - 22154 - osbs.build.build_requestv2 - INFO - Configuring registries-secret secret at /var/run/secrets/atomic-reactor/registries-secret
2021-05-12 23:14:07,998 - 22154 - osbs.build.build_requestv2 - INFO - Configuring aarch64-1-on-premise-orchestrator secret at /var/run/secrets/atomic-reactor/aarch64-1-on-premise-orchestrator
2021-05-12 23:14:07,998 - 22154 - osbs.build.build_requestv2 - INFO - Configuring x86-64-upshift-orchestrator secret at /var/run/secrets/atomic-reactor/x86-64-upshift-orchestrator
2021-05-12 23:14:07,998 - 22154 - osbs.build.build_requestv2 - INFO - Set environment variable from reactor config: NO_PROXY
2021-05-12 23:14:07,998 - 22154 - osbs.build.build_requestv2 - INFO - Set environment variable from reactor config: HTTPS_PROXY
2021-05-12 23:14:07,998 - 22154 - osbs.build.build_requestv2 - INFO - setting completion_deadline to 4 hours (14400 seconds)
2021-05-12 23:14:07,999 - 22154 - osbs.build.build_requestv2 - INFO - autorebuild is disabled in repo configuration, removing triggers
2021-05-12 23:14:08,166 - 22154 - osbs.api - INFO - Build config NOT found via get_build_config_by_labels: Build config not found for labels: [(u'git-repo-name', u'codeready-workspaces-configbump'), (u'git-branch', u'devspaces-3-rhel-8'), (u'git-full-repo', u'gitpkgs.devel.redhat.comcontainerscodeready-workspaces-configb')]
2021-05-12 23:14:08,379 - 22154 - osbs.api - INFO - Build config NOT found via get_build_config_by_labels_filtered: Build config not found for labels: [(u'git-repo-name', u'codeready-workspaces-configbump'), (u'git-branch', u'devspaces-3-rhel-8')]
2021-05-12 23:14:08,500 - 22154 - osbs.api - INFO - Build config NOT found via get_build_config: {"kind":"Status","apiVersion":"v1","metadata":{},"status":"Failure","message":"buildconfigs.build.openshift.io \"codeready-workspaces-configbump-devspaces-3-rhel-8-3df2b\" not found","reason":"NotFound","details":{"name":"codeready-workspaces-configbump-devspaces-3-rhel-8-3df2b","group":"build.openshift.io","kind":"buildconfigs"},"code":404}
2021-05-12 23:14:09,102 - 22154 - osbs.core - INFO - watching build 'codeready-workspaces-configbump-devspaces-3-rhel-8-3df2b-1'
2021-05-12 23:14:10,166 - 22154 - osbs.core - INFO - object has changed: 'None', status: 'Pending', name: 'codeready-workspaces-configbump-devspaces-3-rhel-8-3df2b-1'
2021-05-12 23:14:10,167 - 22154 - osbs.core - INFO - matching build found
2021-05-12 23:14:10,270 - 22154 - osbs.core - INFO - object has changed: 'added', status: 'Pending', name: 'codeready-workspaces-configbump-devspaces-3-rhel-8-3df2b-1'
2021-05-12 23:14:10,270 - 22154 - osbs.core - INFO - matching build found
2021-05-12 23:14:16,308 - 22154 - osbs.core - INFO - object has changed: 'modified', status: 'Running', name: 'codeready-workspaces-configbump-devspaces-3-rhel-8-3df2b-1'
2021-05-12 23:14:16,308 - 22154 - osbs.core - INFO - matching build found
2021-05-12 23:14:16,684 - 22191 - osbs.core - INFO - watching build 'codeready-workspaces-configbump-devspaces-3-rhel-8-3df2b-1'
2021-05-12 23:14:16,911 - 22191 - osbs.core - INFO - object has changed: 'None', status: 'Running', name: 'codeready-workspaces-configbump-devspaces-3-rhel-8-3df2b-1'
2021-05-12 23:14:16,911 - 22191 - osbs.core - INFO - matching build found
2021-05-12 23:18:22,296 platform:- - atomic_reactor.util - DEBUG - query_registry: [401] https://registry-proxy.engineering.redhat.com/v2/rh-osbs/ubi8-minimal/manifests/sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324
2021-05-12 23:18:22,297 platform:- - atomic_reactor.util - DEBUG - query_registry: [200] https://registry-proxy.engineering.redhat.com/v2/rh-osbs/ubi8-minimal/manifests/sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324
2021-05-12 23:18:22,297 platform:- - atomic_reactor.util - DEBUG - query_registry: response headers: {'Server': 'nginx/1.18.0', 'Date': 'Wed, 12 May 2021 23:18:22 GMT', 'Content-Type': 'application/vnd.docker.distribution.manifest.list.v2+json', 'Content-Length': '1471', 'Docker-Content-Digest': 'sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324', 'X-Frame-Options': 'DENY', 'Strict-Transport-Security': 'max-age=63072000; preload', 'Docker-Distribution-Api-Version': 'registry/2.0', 'WWW-Authenticate': 'Bearer realm="https://registry-proxy.engineering.redhat.com/v2/auth"'}
2021-05-12 23:18:22,297 platform:- - atomic_reactor.util - WARNING - content does not match expected media type
2021-05-12 23:18:22,297 platform:- - atomic_reactor.util - DEBUG - query_registry: querying /v2/rh-osbs/ubi8-minimal/manifests/sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324, headers: {'Accept': 'application/vnd.docker.distribution.manifest.v2+json'}
2021-05-12 23:18:22,389 platform:- - atomic_reactor.util - DEBUG - query_registry: [200] https://registry-proxy.engineering.redhat.com/v2/rh-osbs/ubi8-minimal/manifests/sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324
2021-05-12 23:18:22,390 platform:- - atomic_reactor.util - DEBUG - query_registry: response headers: {'Server': 'nginx/1.18.0', 'Date': 'Wed, 12 May 2021 23:18:22 GMT', 'Content-Type': 'application/vnd.docker.distribution.manifest.list.v2+json', 'Content-Length': '1471', 'Docker-Content-Digest': 'sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324', 'X-Frame-Options': 'DENY', 'Strict-Transport-Security': 'max-age=63072000; preload', 'Docker-Distribution-Api-Version': 'registry/2.0', 'WWW-Authenticate': 'Bearer realm="https://registry-proxy.engineering.redhat.com/v2/auth"'}
2021-05-12 23:18:22,390 platform:- - atomic_reactor.util - WARNING - content does not match expected media type
2021-05-12 23:18:22,390 platform:- - atomic_reactor.util - DEBUG - query_registry: querying /v2/rh-osbs/ubi8-minimal/manifests/sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324, headers: {'Accept': 'application/vnd.docker.distribution.manifest.list.v2+json'}
2021-05-12 23:18:22,476 platform:- - atomic_reactor.util - DEBUG - query_registry: [200] https://registry-proxy.engineering.redhat.com/v2/rh-osbs/ubi8-minimal/manifests/sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324
2021-05-12 23:18:22,476 platform:- - atomic_reactor.util - DEBUG - query_registry: response headers: {'Server': 'nginx/1.18.0', 'Date': 'Wed, 12 May 2021 23:18:22 GMT', 'Content-Type': 'application/vnd.docker.distribution.manifest.list.v2+json', 'Content-Length': '1471', 'Docker-Content-Digest': 'sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324', 'X-Frame-Options': 'DENY', 'Strict-Transport-Security': 'max-age=63072000; preload', 'Docker-Distribution-Api-Version': 'registry/2.0', 'WWW-Authenticate': 'Bearer realm="https://registry-proxy.engineering.redhat.com/v2/auth"'}
2021-05-12 23:18:22,476 platform:- - atomic_reactor.util - DEBUG - content matches expected media type
2021-05-12 23:18:22,476 platform:- - atomic_reactor.util - DEBUG - query_registry: querying /v2/rh-osbs/ubi8-minimal/manifests/sha256:a62d408337bb50546019e2334fdd43ec1ecc150d60f5f195fd324c578c25ab3a, headers: {'Accept': 'application/vnd.docker.distribution.manifest.v2+json'}
2021-05-12 23:18:22,575 platform:- - atomic_reactor.util - DEBUG - query_registry: [200] https://registry-proxy.engineering.redhat.com/v2/rh-osbs/ubi8-minimal/manifests/sha256:a62d408337bb50546019e2334fdd43ec1ecc150d60f5f195fd324c578c25ab3a
2021-05-12 23:18:22,575 platform:- - atomic_reactor.util - DEBUG - query_registry: response headers: {'Server': 'nginx/1.18.0', 'Date': 'Wed, 12 May 2021 23:18:22 GMT', 'Content-Type': 'application/vnd.docker.distribution.manifest.v2+json', 'Content-Length': '737', 'Docker-Content-Digest': 'sha256:a62d408337bb50546019e2334fdd43ec1ecc150d60f5f195fd324c578c25ab3a', 'X-Frame-Options': 'DENY', 'Strict-Transport-Security': 'max-age=63072000; preload', 'Docker-Distribution-Api-Version': 'registry/2.0', 'WWW-Authenticate': 'Bearer realm="https://registry-proxy.engineering.redhat.com/v2/auth"'}
2021-05-12 23:18:22,575 platform:- - atomic_reactor.util - DEBUG - query_registry: querying /v2/rh-osbs/ubi8-minimal/blobs/sha256:332744c1854d8e87f41dc67bf3d7e1c08d7a6b1322b5b5bd0b126bf8282ca1f8, headers: {'Accept': 'application/vnd.docker.distribution.manifest.v2+json'}
2021-05-12 23:18:22,705 platform:- - atomic_reactor.util - DEBUG - query_registry: [200] https://registry-proxy.engineering.redhat.com/v2/rh-osbs/ubi8-minimal/blobs/sha256:332744c1854d8e87f41dc67bf3d7e1c08d7a6b1322b5b5bd0b126bf8282ca1f8
2021-05-12 23:18:22,705 platform:- - atomic_reactor.util - DEBUG - query_registry: response headers: {'Server': 'nginx/1.18.0', 'Date': 'Wed, 12 May 2021 23:18:22 GMT', 'Content-Type': 'binary/octet-stream', 'Content-Length': '4328', 'x-amz-replication-status': 'COMPLETED', 'Last-Modified': 'Wed, 14 Apr 2021 21:03:17 GMT', 'ETag': '"3fe471081b4b69fc8d48ae4a837bb85a-1"', 'x-amz-server-side-encryption': 'AES256', 'x-amz-version-id': 'sW9JwCEVFdSLKZSzorx.cElOPPBDyfDD', 'Accept-Ranges': 'bytes', 'X-Cache': 'Hit from cloudfront', 'Via': '1.1 01b868c0b1d24db3b486e98399fd63e1.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'IAD66-C1', 'X-Amz-Cf-Id': 'py6z3SOkSV6_Nlm0ZgJMAlhaonOG0xwHgH--O2xpzwv0fRYs1Vu_WA==', 'Age': '66545'}
2021-05-12 23:18:22,706 platform:- - atomic_reactor.util - DEBUG - Image rh-osbs/ubi8-minimal:sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324 has config:
{'architecture': 'amd64', 'config': {'Hostname': '99f36ca808ee', 'Domainname': '', 'User': '', 'AttachStdin': False, 'AttachStdout': False, 'AttachStderr': False, 'Tty': False, 'OpenStdin': False, 'StdinOnce': False, 'Env': ['PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', 'container=oci'], 'Cmd': ['/bin/bash'], 'ArgsEscaped': True, 'Image': 'd04f24fb978a686fd11edec219a6ecc5148434db67a622cdbdfe85f49f23061e', 'Volumes': None, 'WorkingDir': '', 'Entrypoint': None, 'OnBuild': [], 'Labels': {'architecture': 'x86_64', 'build-date': '2021-04-14T21:02:42.814986', 'com.redhat.build-host': 'cpt-1002.osbs.prod.upshift.rdu2.redhat.com', 'com.redhat.component': 'ubi8-minimal-container', 'com.redhat.license_terms': 'https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI', 'description': 'The Universal Base Image Minimal is a stripped down image that uses microdnf as a package manager. This base image is freely redistributable, but Red Hat only supports Red Hat technologies through subscriptions for Red Hat products. This image is maintained by Red Hat and updated regularly.', 'distribution-scope': 'public', 'io.k8s.description': 'The Universal Base Image Minimal is a stripped down image that uses microdnf as a package manager. This base image is freely redistributable, but Red Hat only supports Red Hat technologies through subscriptions for Red Hat products. This image is maintained by Red Hat and updated regularly.', 'io.k8s.display-name': 'Red Hat Universal Base Image 8 Minimal', 'io.openshift.expose-services': '', 'io.openshift.tags': 'minimal rhel8', 'maintainer': 'Red Hat, Inc.', 'name': 'ubi8-minimal', 'release': '298.1618432845', 'summary': 'Provides the latest release of the minimal Red Hat Universal Base Image 8.', 'url': 'https://access.redhat.com/containers/#/registry.access.redhat.com/ubi8-minimal/images/8.3-298.1618432845', 'vcs-ref': 'f53dab37c7541dd0080f410727c5886e85c09ee7', 'vcs-type': 'git', 'vendor': 'Red Hat, Inc.', 'version': '8.3'}}, 'container_config': {'Hostname': '99f36ca808ee', 'Domainname': '', 'User': '', 'AttachStdin': False, 'AttachStdout': False, 'AttachStderr': False, 'Tty': False, 'OpenStdin': False, 'StdinOnce': False, 'Env': ['PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', 'container=oci'], 'Cmd': ['/bin/sh', '-c', 'mv -fZ /tmp/ubi.repo /etc/yum.repos.d/ubi.repo || :'], 'ArgsEscaped': True, 'Image': 'sha256:2d88dde14260c370f04491712cc9537590826b29708339ef9651f5b2c1fd0adb', 'Volumes': None, 'WorkingDir': '', 'Entrypoint': None, 'OnBuild': [], 'Labels': {'architecture': 'x86_64', 'build-date': '2021-04-14T21:02:42.814986', 'com.redhat.build-host': 'cpt-1002.osbs.prod.upshift.rdu2.redhat.com', 'com.redhat.component': 'ubi8-minimal-container', 'com.redhat.license_terms': 'https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI', 'description': 'The Universal Base Image Minimal is a stripped down image that uses microdnf as a package manager. This base image is freely redistributable, but Red Hat only supports Red Hat technologies through subscriptions for Red Hat products. This image is maintained by Red Hat and updated regularly.', 'distribution-scope': 'public', 'io.k8s.description': 'The Universal Base Image Minimal is a stripped down image that uses microdnf as a package manager. This base image is freely redistributable, but Red Hat only supports Red Hat technologies through subscriptions for Red Hat products. This image is maintained by Red Hat and updated regularly.', 'io.k8s.display-name': 'Red Hat Universal Base Image 8 Minimal', 'io.openshift.expose-services': '', 'io.openshift.tags': 'minimal rhel8', 'maintainer': 'Red Hat, Inc.', 'name': 'ubi8-minimal', 'release': '298.1618432845', 'summary': 'Provides the latest release of the minimal Red Hat Universal Base Image 8.', 'url': 'https://access.redhat.com/containers/#/registry.access.redhat.com/ubi8-minimal/images/8.3-298.1618432845', 'vcs-ref': 'f53dab37c7541dd0080f410727c5886e85c09ee7', 'vcs-type': 'git', 'vendor': 'Red Hat, Inc.', 'version': '8.3'}}, 'created': '2021-04-14T21:03:00.758405Z', 'docker_version': '1.13.1', 'history': [{'created': '2021-04-14T21:02:48.935446051Z', 'comment': 'Imported from -'}, {'comment': '', 'created': '2021-04-14T21:03:00.758405Z'}], 'os': 'linux', 'rootfs': {'type': 'layers', 'diff_ids': ['sha256:4a2bc86056a8dfff6153b98fa9ff55b532584eb7b0d60aaf3ff7850a3df53fef', 'sha256:144a43b910e80389ba56ee3b8d1bf4a4f9a3b95696bf93540f37cb40e47ec339']}}
2021-05-12 23:18:22,712 - osbs.utils - DEBUG - Attempting to parse ImageName registry-proxy.engineering.redhat.com/rh-osbs/ubi8-minimal@sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324 as an ImageName
2021-05-12 23:18:22,712 platform:- - atomic_reactor.util - DEBUG - query_registry: querying /v2/rh-osbs/ubi8-minimal/manifests/sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324, headers: {'Accept': 'application/vnd.docker.distribution.manifest.v1+json'}
2021-05-12 23:18:23,004 platform:- - atomic_reactor.util - DEBUG - query_registry: [401] https://registry-proxy.engineering.redhat.com/v2/rh-osbs/ubi8-minimal/manifests/sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324
2021-05-12 23:18:23,004 platform:- - atomic_reactor.util - DEBUG - query_registry: [200] https://registry-proxy.engineering.redhat.com/v2/rh-osbs/ubi8-minimal/manifests/sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324
2021-05-12 23:18:23,004 platform:- - atomic_reactor.util - DEBUG - query_registry: response headers: {'Server': 'nginx/1.18.0', 'Date': 'Wed, 12 May 2021 23:18:23 GMT', 'Content-Type': 'application/vnd.docker.distribution.manifest.list.v2+json', 'Content-Length': '1471', 'Docker-Content-Digest': 'sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324', 'X-Frame-Options': 'DENY', 'Strict-Transport-Security': 'max-age=63072000; preload', 'Docker-Distribution-Api-Version': 'registry/2.0', 'WWW-Authenticate': 'Bearer realm="https://registry-proxy.engineering.redhat.com/v2/auth"'}
2021-05-12 23:18:23,004 platform:- - atomic_reactor.util - WARNING - content does not match expected media type
2021-05-12 23:18:23,004 platform:- - atomic_reactor.util - DEBUG - query_registry: querying /v2/rh-osbs/ubi8-minimal/manifests/sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324, headers: {'Accept': 'application/vnd.docker.distribution.manifest.v2+json'}
2021-05-12 23:18:23,097 platform:- - atomic_reactor.util - DEBUG - query_registry: [200] https://registry-proxy.engineering.redhat.com/v2/rh-osbs/ubi8-minimal/manifests/sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324
2021-05-12 23:18:23,098 platform:- - atomic_reactor.util - DEBUG - query_registry: response headers: {'Server': 'nginx/1.18.0', 'Date': 'Wed, 12 May 2021 23:18:23 GMT', 'Content-Type': 'application/vnd.docker.distribution.manifest.list.v2+json', 'Content-Length': '1471', 'Docker-Content-Digest': 'sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324', 'X-Frame-Options': 'DENY', 'Strict-Transport-Security': 'max-age=63072000; preload', 'Docker-Distribution-Api-Version': 'registry/2.0', 'WWW-Authenticate': 'Bearer realm="https://registry-proxy.engineering.redhat.com/v2/auth"'}
2021-05-12 23:18:23,098 platform:- - atomic_reactor.util - WARNING - content does not match expected media type
2021-05-12 23:18:23,098 platform:- - atomic_reactor.util - DEBUG - query_registry: querying /v2/rh-osbs/ubi8-minimal/manifests/sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324, headers: {'Accept': 'application/vnd.docker.distribution.manifest.list.v2+json'}
2021-05-12 23:18:23,177 platform:- - atomic_reactor.util - DEBUG - query_registry: [200] https://registry-proxy.engineering.redhat.com/v2/rh-osbs/ubi8-minimal/manifests/sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324
2021-05-12 23:18:23,177 platform:- - atomic_reactor.util - DEBUG - query_registry: response headers: {'Server': 'nginx/1.18.0', 'Date': 'Wed, 12 May 2021 23:18:23 GMT', 'Content-Type': 'application/vnd.docker.distribution.manifest.list.v2+json', 'Content-Length': '1471', 'Docker-Content-Digest': 'sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324', 'X-Frame-Options': 'DENY', 'Strict-Transport-Security': 'max-age=63072000; preload', 'Docker-Distribution-Api-Version': 'registry/2.0', 'WWW-Authenticate': 'Bearer realm="https://registry-proxy.engineering.redhat.com/v2/auth"'}
2021-05-12 23:18:23,177 platform:- - atomic_reactor.util - DEBUG - content matches expected media type
2021-05-12 23:18:23,177 platform:- - atomic_reactor.util - DEBUG - query_registry: querying /v2/rh-osbs/ubi8-minimal/manifests/sha256:a62d408337bb50546019e2334fdd43ec1ecc150d60f5f195fd324c578c25ab3a, headers: {'Accept': 'application/vnd.docker.distribution.manifest.v2+json'}
2021-05-12 23:18:23,276 platform:- - atomic_reactor.util - DEBUG - query_registry: [200] https://registry-proxy.engineering.redhat.com/v2/rh-osbs/ubi8-minimal/manifests/sha256:a62d408337bb50546019e2334fdd43ec1ecc150d60f5f195fd324c578c25ab3a
2021-05-12 23:18:23,276 platform:- - atomic_reactor.util - DEBUG - query_registry: response headers: {'Server': 'nginx/1.18.0', 'Date': 'Wed, 12 May 2021 23:18:23 GMT', 'Content-Type': 'application/vnd.docker.distribution.manifest.v2+json', 'Content-Length': '737', 'Docker-Content-Digest': 'sha256:a62d408337bb50546019e2334fdd43ec1ecc150d60f5f195fd324c578c25ab3a', 'X-Frame-Options': 'DENY', 'Strict-Transport-Security': 'max-age=63072000; preload', 'Docker-Distribution-Api-Version': 'registry/2.0', 'WWW-Authenticate': 'Bearer realm="https://registry-proxy.engineering.redhat.com/v2/auth"'}
2021-05-12 23:18:23,276 platform:- - atomic_reactor.util - DEBUG - query_registry: querying /v2/rh-osbs/ubi8-minimal/blobs/sha256:332744c1854d8e87f41dc67bf3d7e1c08d7a6b1322b5b5bd0b126bf8282ca1f8, headers: {'Accept': 'application/vnd.docker.distribution.manifest.v2+json'}
2021-05-12 23:18:23,390 platform:- - atomic_reactor.util - DEBUG - query_registry: [200] https://registry-proxy.engineering.redhat.com/v2/rh-osbs/ubi8-minimal/blobs/sha256:332744c1854d8e87f41dc67bf3d7e1c08d7a6b1322b5b5bd0b126bf8282ca1f8
2021-05-12 23:18:23,390 platform:- - atomic_reactor.util - DEBUG - query_registry: response headers: {'Server': 'nginx/1.18.0', 'Date': 'Wed, 12 May 2021 23:18:23 GMT', 'Content-Type': 'binary/octet-stream', 'Content-Length': '4328', 'Connection': 'close', 'x-amz-replication-status': 'COMPLETED', 'Last-Modified': 'Wed, 14 Apr 2021 21:03:17 GMT', 'ETag': '"3fe471081b4b69fc8d48ae4a837bb85a-1"', 'x-amz-server-side-encryption': 'AES256', 'x-amz-version-id': 'sW9JwCEVFdSLKZSzorx.cElOPPBDyfDD', 'Accept-Ranges': 'bytes', 'X-Cache': 'Hit from cloudfront', 'Via': '1.1 96bbdd3a7f25156daf49a9ffc457edcc.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'IAD66-C1', 'X-Amz-Cf-Id': 'RvU4lcJCOkKN9x2oGNrJDUidxrW960olgFDWnE88P49Ya7m7KfqkAQ==', 'Age': '66546'}
2021-05-12 23:18:23,391 platform:- - atomic_reactor.util - DEBUG - Image rh-osbs/ubi8-minimal:sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324 has config:
{'architecture': 'amd64', 'config': {'Hostname': '99f36ca808ee', 'Domainname': '', 'User': '', 'AttachStdin': False, 'AttachStdout': False, 'AttachStderr': False, 'Tty': False, 'OpenStdin': False, 'StdinOnce': False, 'Env': ['PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', 'container=oci'], 'Cmd': ['/bin/bash'], 'ArgsEscaped': True, 'Image': 'd04f24fb978a686fd11edec219a6ecc5148434db67a622cdbdfe85f49f23061e', 'Volumes': None, 'WorkingDir': '', 'Entrypoint': None, 'OnBuild': [], 'Labels': {'architecture': 'x86_64', 'build-date': '2021-04-14T21:02:42.814986', 'com.redhat.build-host': 'cpt-1002.osbs.prod.upshift.rdu2.redhat.com', 'com.redhat.component': 'ubi8-minimal-container', 'com.redhat.license_terms': 'https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI', 'description': 'The Universal Base Image Minimal is a stripped down image that uses microdnf as a package manager. This base image is freely redistributable, but Red Hat only supports Red Hat technologies through subscriptions for Red Hat products. This image is maintained by Red Hat and updated regularly.', 'distribution-scope': 'public', 'io.k8s.description': 'The Universal Base Image Minimal is a stripped down image that uses microdnf as a package manager. This base image is freely redistributable, but Red Hat only supports Red Hat technologies through subscriptions for Red Hat products. This image is maintained by Red Hat and updated regularly.', 'io.k8s.display-name': 'Red Hat Universal Base Image 8 Minimal', 'io.openshift.expose-services': '', 'io.openshift.tags': 'minimal rhel8', 'maintainer': 'Red Hat, Inc.', 'name': 'ubi8-minimal', 'release': '298.1618432845', 'summary': 'Provides the latest release of the minimal Red Hat Universal Base Image 8.', 'url': 'https://access.redhat.com/containers/#/registry.access.redhat.com/ubi8-minimal/images/8.3-298.1618432845', 'vcs-ref': 'f53dab37c7541dd0080f410727c5886e85c09ee7', 'vcs-type': 'git', 'vendor': 'Red Hat, Inc.', 'version': '8.3'}}, 'container_config': {'Hostname': '99f36ca808ee', 'Domainname': '', 'User': '', 'AttachStdin': False, 'AttachStdout': False, 'AttachStderr': False, 'Tty': False, 'OpenStdin': False, 'StdinOnce': False, 'Env': ['PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', 'container=oci'], 'Cmd': ['/bin/sh', '-c', 'mv -fZ /tmp/ubi.repo /etc/yum.repos.d/ubi.repo || :'], 'ArgsEscaped': True, 'Image': 'sha256:2d88dde14260c370f04491712cc9537590826b29708339ef9651f5b2c1fd0adb', 'Volumes': None, 'WorkingDir': '', 'Entrypoint': None, 'OnBuild': [], 'Labels': {'architecture': 'x86_64', 'build-date': '2021-04-14T21:02:42.814986', 'com.redhat.build-host': 'cpt-1002.osbs.prod.upshift.rdu2.redhat.com', 'com.redhat.component': 'ubi8-minimal-container', 'com.redhat.license_terms': 'https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI', 'description': 'The Universal Base Image Minimal is a stripped down image that uses microdnf as a package manager. This base image is freely redistributable, but Red Hat only supports Red Hat technologies through subscriptions for Red Hat products. This image is maintained by Red Hat and updated regularly.', 'distribution-scope': 'public', 'io.k8s.description': 'The Universal Base Image Minimal is a stripped down image that uses microdnf as a package manager. This base image is freely redistributable, but Red Hat only supports Red Hat technologies through subscriptions for Red Hat products. This image is maintained by Red Hat and updated regularly.', 'io.k8s.display-name': 'Red Hat Universal Base Image 8 Minimal', 'io.openshift.expose-services': '', 'io.openshift.tags': 'minimal rhel8', 'maintainer': 'Red Hat, Inc.', 'name': 'ubi8-minimal', 'release': '298.1618432845', 'summary': 'Provides the latest release of the minimal Red Hat Universal Base Image 8.', 'url': 'https://access.redhat.com/containers/#/registry.access.redhat.com/ubi8-minimal/images/8.3-298.1618432845', 'vcs-ref': 'f53dab37c7541dd0080f410727c5886e85c09ee7', 'vcs-type': 'git', 'vendor': 'Red Hat, Inc.', 'version': '8.3'}}, 'created': '2021-04-14T21:03:00.758405Z', 'docker_version': '1.13.1', 'history': [{'created': '2021-04-14T21:02:48.935446051Z', 'comment': 'Imported from -'}, {'comment': '', 'created': '2021-04-14T21:03:00.758405Z'}], 'os': 'linux', 'rootfs': {'type': 'layers', 'diff_ids': ['sha256:4a2bc86056a8dfff6153b98fa9ff55b532584eb7b0d60aaf3ff7850a3df53fef', 'sha256:144a43b910e80389ba56ee3b8d1bf4a4f9a3b95696bf93540f37cb40e47ec339']}}
2021-05-12 23:18:23,393 platform:- - atomic_reactor.plugins.koji_parent - INFO - Waiting for Koji build for parent image ubi8-minimal-container-8.3-298.1618432845
2021-05-12 23:18:23,429 platform:- - atomic_reactor.plugins.koji_parent - INFO - Parent image Koji build found with id 1574372
2021-05-12 23:18:23,430 platform:- - atomic_reactor.plugins.koji_parent - INFO - Verifying manifest digest (sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324) for parent registry-proxy.engineering.redhat.com/rh-osbs/ubi8-minimal:8.3-298.1618432845 against its koji reference (sha256:2f6b88c037c0503da7704bccd3fc73cb76324101af39ad28f16460e7bce98324)
2021-05-12 23:18:23,430 platform:- - atomic_reactor.plugin - DEBUG - plugin 'koji_parent' finished in 1s
2021-05-12 23:18:23,430 platform:- - atomic_reactor.plugin - DEBUG - running plugin 'koji_delegate'
2021-05-12 23:18:23,430 platform:- - atomic_reactor.plugin - INFO - running plugin instance with args: '{}'
2021-05-12 23:18:23,431 platform:- - atomic_reactor.utils.koji - INFO - Using SSL certificates for Koji authentication
2021-05-12 23:18:23,686 platform:- - atomic_reactor.plugins.koji_delegate - INFO - not autorebuild, skipping plugin
2021-05-12 23:18:23,687 platform:- - atomic_reactor.plugin - DEBUG - plugin 'koji_delegate' finished in 0s
2021-05-12 23:18:23,687 platform:- - atomic_reactor.plugin - DEBUG - running plugin 'resolve_composes'
2021-05-12 23:18:23,687 platform:- - atomic_reactor.plugin - INFO - running plugin instance with args: '{'koji_target': 'devspaces-3-rhel-8-containers-candidate'}'
2021-05-12 23:18:23,849 platform:- - atomic_reactor.util - INFO - searching for dockerfile in '/tmp/tmp8no48nwv/codeready-workspaces-configbump' (local path None)
2021-05-12 23:18:23,849 platform:- - atomic_reactor.util - DEBUG - abs path = '/tmp/tmp8no48nwv/codeready-workspaces-configbump', local path = 'None'
2021-05-12 23:18:23,850 platform:- - atomic_reactor.util - DEBUG - Dockerfile found: '/tmp/tmp8no48nwv/codeready-workspaces-configbump/Dockerfile'
2021-05-12 23:18:23,853 platform:- - atomic_reactor.utils.koji - INFO - Using SSL certificates for Koji authentication
2021-05-12 23:18:24,090 platform:- - atomic_reactor.utils.odcs - INFO - Starting compose: {'source': {'type': 'pulp', 'source': 'rhel-8-for-x86_64-baseos-rpms rhel-8-for-x86_64-appstream-rpms', 'sigkeys': []}, 'flags': [], 'arches': ['x86_64']}
2021-05-12 23:18:25,375 platform:- - atomic_reactor.utils.odcs - INFO - Starting compose: {'source': {'type': 'pulp', 'source': 'rhel-8-for-s390x-baseos-rpms rhel-8-for-s390x-appstream-rpms', 'sigkeys': []}, 'flags': [], 'arches': ['s390x']}
2021-05-12 23:18:26,382 platform:- - atomic_reactor.utils.odcs - INFO - Starting compose: {'source': {'type': 'pulp', 'source': 'rhel-8-for-ppc64le-baseos-rpms rhel-8-for-ppc64le-appstream-rpms', 'sigkeys': []}, 'flags': [], 'arches': ['ppc64le']}
2021-05-12 23:18:27,341 platform:- - atomic_reactor.plugins.resolve_composes - DEBUG - Waiting for ODCS composes to be available: [702341, 702342, 702343]
2021-05-12 23:18:27,342 platform:- - atomic_reactor.utils.odcs - DEBUG - Getting compose information for information for compose_id=702341
2021-05-12 23:18:27,370 platform:- - atomic_reactor.utils.odcs - DEBUG - Retrieved compose information for compose_id=702341: {
"arches": "x86_64",
"base_module_br_name": null,
"base_module_br_stream": null,
"base_module_br_stream_version_gte": null,
"base_module_br_stream_version_lte": null,
"builds": null,
"compose_type": "test",
"flags": [],
"id": 702341,
"koji_event": null,
"koji_task_id": null,
"label": null,
"lookaside_repos": "",
"modular_koji_tags": null,
"module_defaults_url": null,
"modules": null,
"multilib_arches": "",
"multilib_method": 0,
"owner": "UID=osbs,[email protected],CN=osbs,O=Red Hat\\, Inc.,L=Raleigh,ST=North Carolina,C=US",
"packages": null,
"parent_pungi_compose_ids": null,
"pungi_compose_id": null,
"pungi_config_dump": null,
"removed_by": null,
"respin_of": null,
"result_repo": "http://odcs.engineering.redhat.com/composes/odcs-702341/compose/Temporary",
"result_repofile": "http://odcs.engineering.redhat.com/composes/odcs-702341/compose/Temporary/odcs-702341.repo",
"results": [
"repository"
],
"scratch_build_tasks": null,
"scratch_modules": null,
"sigkeys": "FD431D51",
"source": "rhel-8-for-x86_64-baseos-rpms rhel-8-for-x86_64-appstream-rpms",
"source_type": 4,
"state": 2,
"state_name": "done",
"state_reason": "Compose is generated successfully",
"target_dir": "default",
"time_done": "2021-05-12T23:18:26Z",
"time_removed": null,
"time_started": "2021-05-12T23:18:25Z",
"time_submitted": "2021-05-12T23:18:24Z",
"time_to_expire": "2021-05-13T23:18:26Z",
"toplevel_url": "http://odcs.engineering.redhat.com/composes/odcs-702341"
}
2021-05-12 23:18:27,373 platform:- - atomic_reactor.utils.odcs - DEBUG - Getting compose information for information for compose_id=702342
2021-05-12 23:18:27,402 platform:- - atomic_reactor.utils.odcs - DEBUG - Retrying request compose_id=702342, elapsed_time=0.028697967529296875
2021-05-12 23:18:28,432 platform:- - atomic_reactor.utils.odcs - DEBUG - Retrieved compose information for compose_id=702342: {
"arches": "s390x",
"base_module_br_name": null,
"base_module_br_stream": null,
"base_module_br_stream_version_gte": null,
"base_module_br_stream_version_lte": null,
"builds": null,
"compose_type": "test",
"flags": [],
"id": 702342,
"koji_event": null,
"koji_task_id": null,
"label": null,
"lookaside_repos": "",
"modular_koji_tags": null,
"module_defaults_url": null,
"modules": null,
"multilib_arches": "",
"multilib_method": 0,
"owner": "UID=osbs,[email protected],CN=osbs,O=Red Hat\\, Inc.,L=Raleigh,ST=North Carolina,C=US",
"packages": null,
"parent_pungi_compose_ids": null,
"pungi_compose_id": null,
"pungi_config_dump": null,
"removed_by": null,
"respin_of": null,
"result_repo": "http://odcs.engineering.redhat.com/composes/odcs-702342/compose/Temporary",
"result_repofile": "http://odcs.engineering.redhat.com/composes/odcs-702342/compose/Temporary/odcs-702342.repo",
"results": [
"repository"
],
"scratch_build_tasks": null,
"scratch_modules": null,
"sigkeys": "FD431D51",
"source": "rhel-8-for-s390x-appstream-rpms rhel-8-for-s390x-baseos-rpms",
"source_type": 4,
"state": 2,
"state_name": "done",
"state_reason": "Compose is generated successfully",
"target_dir": "default",
"time_done": "2021-05-12T23:18:27Z",
"time_removed": null,
"time_started": "2021-05-12T23:18:26Z",
"time_submitted": "2021-05-12T23:18:25Z",
"time_to_expire": "2021-05-13T23:18:27Z",
"toplevel_url": "http://odcs.engineering.redhat.com/composes/odcs-702342"
}
2021-05-12 23:18:28,432 platform:- - atomic_reactor.utils.odcs - DEBUG - Getting compose information for information for compose_id=702343
2021-05-12 23:18:28,459 platform:- - atomic_reactor.utils.odcs - DEBUG - Retrying request compose_id=702343, elapsed_time=0.026889562606811523
2021-05-12 23:18:29,490 platform:- - atomic_reactor.utils.odcs - DEBUG - Retrieved compose information for compose_id=702343: {
"arches": "ppc64le",
"base_module_br_name": null,
"base_module_br_stream": null,
"base_module_br_stream_version_gte": null,
"base_module_br_stream_version_lte": null,
"builds": null,
"compose_type": "test",
"flags": [],
"id": 702343,
"koji_event": null,
"koji_task_id": null,
"label": null,
"lookaside_repos": "",
"modular_koji_tags": null,
"module_defaults_url": null,
"modules": null,
"multilib_arches": "",
"multilib_method": 0,
"owner": "UID=osbs,[email protected],CN=osbs,O=Red Hat\\, Inc.,L=Raleigh,ST=North Carolina,C=US",
"packages": null,
"parent_pungi_compose_ids": null,
"pungi_compose_id": null,
"pungi_config_dump": null,
"removed_by": null,
"respin_of": null,
"result_repo": "http://odcs.engineering.redhat.com/composes/odcs-702343/compose/Temporary",
"result_repofile": "http://odcs.engineering.redhat.com/composes/odcs-702343/compose/Temporary/odcs-702343.repo",
"results": [
"repository"
],
"scratch_build_tasks": null,
"scratch_modules": null,
"sigkeys": "FD431D51",
"source": "rhel-8-for-ppc64le-appstream-rpms rhel-8-for-ppc64le-baseos-rpms",
"source_type": 4,
"state": 2,
"state_name": "done",
"state_reason": "Compose is generated successfully",
"target_dir": "default",
"time_done": "2021-05-12T23:18:28Z",
"time_removed": null,
"time_started": "2021-05-12T23:18:27Z",
"time_submitted": "2021-05-12T23:18:26Z",
"time_to_expire": "2021-05-13T23:18:28Z",
"toplevel_url": "http://odcs.engineering.redhat.com/composes/odcs-702343"
}
2021-05-12 23:18:29,490 platform:- - atomic_reactor.plugins.resolve_composes - INFO - Signing intent for build is release
2021-05-12 23:18:29,491 platform:- - atomic_reactor.plugins.resolve_composes - DEBUG - plugin result: {'composes': [{'arches': 'x86_64', 'base_module_br_name': None, 'base_module_br_stream': None, 'base_module_br_stream_version_gte': None, 'base_module_br_stream_version_lte': None, 'builds': None, 'compose_type': 'test', 'flags': [], 'id': 702341, 'koji_event': None, 'koji_task_id': None, 'label': None, 'lookaside_repos': '', 'modular_koji_tags': None, 'module_defaults_url': None, 'modules': None, 'multilib_arches': '', 'multilib_method': 0, 'owner': 'UID=osbs,[email protected],CN=osbs,O=Red Hat\\, Inc.,L=Raleigh,ST=North Carolina,C=US', 'packages': None, 'parent_pungi_compose_ids': None, 'pungi_compose_id': None, 'pungi_config_dump': None, 'removed_by': None, 'respin_of': None, 'result_repo': 'http://odcs.engineering.redhat.com/composes/odcs-702341/compose/Temporary', 'result_repofile': 'http://odcs.engineering.redhat.com/composes/odcs-702341/compose/Temporary/odcs-702341.repo', 'results': ['repository'], 'scratch_build_tasks': None, 'scratch_modules': None, 'sigkeys': 'FD431D51', 'source': 'rhel-8-for-x86_64-baseos-rpms rhel-8-for-x86_64-appstream-rpms', 'source_type': 4, 'state': 2, 'state_name': 'done', 'state_reason': 'Compose is generated successfully', 'target_dir': 'default', 'time_done': '2021-05-12T23:18:26Z', 'time_removed': None, 'time_started': '2021-05-12T23:18:25Z', 'time_submitted': '2021-05-12T23:18:24Z', 'time_to_expire': '2021-05-13T23:18:26Z', 'toplevel_url': 'http://odcs.engineering.redhat.com/composes/odcs-702341'}, {'arches': 's390x', 'base_module_br_name': None, 'base_module_br_stream': None, 'base_module_br_stream_version_gte': None, 'base_module_br_stream_version_lte': None, 'builds': None, 'compose_type': 'test', 'flags': [], 'id': 702342, 'koji_event': None, 'koji_task_id': None, 'label': None, 'lookaside_repos': '', 'modular_koji_tags': None, 'module_defaults_url': None, 'modules': None, 'multilib_arches': '', 'multilib_method': 0, 'owner': 'UID=osbs,[email protected],CN=osbs,O=Red Hat\\, Inc.,L=Raleigh,ST=North Carolina,C=US', 'packages': None, 'parent_pungi_compose_ids': None, 'pungi_compose_id': None, 'pungi_config_dump': None, 'removed_by': None, 'respin_of': None, 'result_repo': 'http://odcs.engineering.redhat.com/composes/odcs-702342/compose/Temporary', 'result_repofile': 'http://odcs.engineering.redhat.com/composes/odcs-702342/compose/Temporary/odcs-702342.repo', 'results': ['repository'], 'scratch_build_tasks': None, 'scratch_modules': None, 'sigkeys': 'FD431D51', 'source': 'rhel-8-for-s390x-appstream-rpms rhel-8-for-s390x-baseos-rpms', 'source_type': 4, 'state': 2, 'state_name': 'done', 'state_reason': 'Compose is generated successfully', 'target_dir': 'default', 'time_done': '2021-05-12T23:18:27Z', 'time_removed': None, 'time_started': '2021-05-12T23:18:26Z', 'time_submitted': '2021-05-12T23:18:25Z', 'time_to_expire': '2021-05-13T23:18:27Z', 'toplevel_url': 'http://odcs.engineering.redhat.com/composes/odcs-702342'}, {'arches': 'ppc64le', 'base_module_br_name': None, 'base_module_br_stream': None, 'base_module_br_stream_version_gte': None, 'base_module_br_stream_version_lte': None, 'builds': None, 'compose_type': 'test', 'flags': [], 'id': 702343, 'koji_event': None, 'koji_task_id': None, 'label': None, 'lookaside_repos': '', 'modular_koji_tags': None, 'module_defaults_url': None, 'modules': None, 'multilib_arches': '', 'multilib_method': 0, 'owner': 'UID=osbs,[email protected],CN=osbs,O=Red Hat\\, Inc.,L=Raleigh,ST=North Carolina,C=US', 'packages': None, 'parent_pungi_compose_ids': None, 'pungi_compose_id': None, 'pungi_config_dump': None, 'removed_by': None, 'respin_of': None, 'result_repo': 'http://odcs.engineering.redhat.com/composes/odcs-702343/compose/Temporary', 'result_repofile': 'http://odcs.engineering.redhat.com/composes/odcs-702343/compose/Temporary/odcs-702343.repo', 'results': ['repository'], 'scratch_build_tasks': None, 'scratch_modules': None, 'sigkeys': 'FD431D51', 'source': 'rhel-8-for-ppc64le-appstream-rpms rhel-8-for-ppc64le-baseos-rpms', 'source_type': 4, 'state': 2, 'state_name': 'done', 'state_reason': 'Compose is generated successfully', 'target_dir': 'default', 'time_done': '2021-05-12T23:18:28Z', 'time_removed': None, 'time_started': '2021-05-12T23:18:27Z', 'time_submitted': '2021-05-12T23:18:26Z', 'time_to_expire': '2021-05-13T23:18:28Z', 'toplevel_url': 'http://odcs.engineering.redhat.com/composes/odcs-702343'}], 'signing_intent': 'release', 'signing_intent_overridden': False}
2021-05-12 23:18:29,491 platform:- - atomic_reactor.plugin - DEBUG - plugin 'resolve_composes' finished in 5s
2021-05-12 23:18:29,491 platform:- - atomic_reactor.plugin - DEBUG - running plugin 'add_filesystem'
2021-05-12 23:18:29,491 platform:- - atomic_reactor.plugin - INFO - running plugin instance with args: '{'koji_target': 'devspaces-3-rhel-8-containers-candidate'}'
2021-05-12 23:18:29,621 platform:- - atomic_reactor.plugins.add_filesystem - INFO - Nothing to do for non-custom base images
2021-05-12 23:18:29,623 platform:- - atomic_reactor.plugin - DEBUG - plugin 'add_filesystem' finished in 0s
2021-05-12 23:18:29,623 platform:- - atomic_reactor.plugin - DEBUG - running plugin 'flatpak_update_dockerfile'
2021-05-12 23:18:29,623 platform:- - atomic_reactor.plugin - INFO - running plugin instance with args: '{}'
2021-05-12 23:18:29,623 platform:- - atomic_reactor.plugins.flatpak_update_dockerfile - INFO - not flatpak build, skipping plugin
2021-05-12 23:18:29,623 platform:- - atomic_reactor.plugin - DEBUG - plugin 'flatpak_update_dockerfile' finished in 0s
2021-05-12 23:18:29,623 platform:- - atomic_reactor.plugin - DEBUG - running plugin 'bump_release'
2021-05-12 23:18:29,623 platform:- - atomic_reactor.plugin - INFO - running plugin instance with args: '{}'
2021-05-12 23:18:29,624 platform:- - atomic_reactor.utils.koji - INFO - Using SSL certificates for Koji authentication
2021-05-12 23:18:29,796 platform:- - atomic_reactor.util - DEBUG - Parent Config ENV: ['PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', 'container=oci']
2021-05-12 23:18:29,800 platform:- - atomic_reactor.plugins.bump_release - DEBUG - getting next release from build info: {'name': 'codeready-workspaces-configbump-rhel8-container', 'version': '2.9'}
2021-05-12 23:18:29,833 platform:- - atomic_reactor.plugins.bump_release - DEBUG - checking that the build does not exist: {'name': 'codeready-workspaces-configbump-rhel8-container', 'version': '2.9', 'release': '3'}
2021-05-12 23:18:29,866 platform:- - atomic_reactor.plugins.bump_release - INFO - setting release=3
2021-05-12 23:18:29,869 platform:- - atomic_reactor.plugins.bump_release - INFO - reserving build in koji: {'name': 'codeready-workspaces-configbump-rhel8-container', 'version': '2.9', 'release': '3'}
2021-05-12 23:18:30,892 platform:- - atomic_reactor.plugin - DEBUG - plugin 'bump_release' finished in 1s
2021-05-12 23:18:30,892 platform:- - atomic_reactor.plugin - DEBUG - running plugin 'add_flatpak_labels'
2021-05-12 23:18:30,892 platform:- - atomic_reactor.plugin - INFO - running plugin instance with args: '{}'
2021-05-12 23:18:30,929 platform:- - atomic_reactor.plugins.add_flatpak_labels - INFO - not flatpak build, skipping plugin
2021-05-12 23:18:30,929 platform:- - atomic_reactor.plugin - DEBUG - plugin 'add_flatpak_labels' finished in 0s
2021-05-12 23:18:30,929 platform:- - atomic_reactor.plugin - DEBUG - running plugin 'add_labels_in_dockerfile'
2021-05-12 23:18:30,930 platform:- - atomic_reactor.plugin - INFO - running plugin instance with args: '{}'
2021-05-12 23:18:30,930 platform:- - atomic_reactor.util - DEBUG - Parent Config ENV: ['PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', 'container=oci']
2021-05-12 23:18:30,933 platform:- - atomic_reactor.core - INFO - ContainerTasker will use DockerTasker
2021-05-12 23:18:30,961 platform:- - atomic_reactor.core - DEBUG - {
"ID": "RYOE:5325:7CMB:7UIE:YHMK:HKOO:SAO6:TBFF:TKPJ:KVDL:VIBX:72LW",
"Containers": 496,
"ContainersRunning": 11,
"ContainersPaused": 0,
"ContainersStopped": 485,
"Images": 32,
"Driver": "overlay2",
"DriverStatus": [
[
"Backing Filesystem",
"xfs"
],
[
"Supports d_type",
"true"
],
[
"Native Overlay Diff",
"true"
]
],
"SystemStatus": null,
"Plugins": {
"Volume": [
"local"
],
"Network": [
"bridge",
"host",
"macvlan",
"null",
"overlay"
],
"Authorization": [
"rhel-push-plugin"
]
},
"MemoryLimit": true,
"SwapLimit": true,
"KernelMemory": true,
"CpuCfsPeriod": true,
"CpuCfsQuota": true,
"CPUShares": true,
"CPUSet": true,
"IPv4Forwarding": true,
"BridgeNfIptables": false,
"BridgeNfIp6tables": false,
"Debug": false,
"NFd": 84,
"OomKillDisable": true,
"NGoroutines": 79,
"SystemTime": "2021-05-12T23:18:30.945742649Z",
"LoggingDriver": "json-file",
"CgroupDriver": "systemd",
"NEventsListener": 0,
"KernelVersion": "3.10.0-1160.21.1.el7.x86_64",
"PkgVersion": "docker-1.13.1-204.git0be3e21.el7_9.x86_64",
"OperatingSystem": "Cloud Suite",
"OSType": "linux",
"Architecture": "x86_64",
"IndexServerAddress": "https://registry.redhat.io/v1/",
"IndexServerName": "registry.redhat.io",
"RegistryConfig": {
"InsecureRegistryCIDRs": [
"172.24.0.0/16",
"172.26.0.0/16",
"127.0.0.0/8"
],
"IndexConfigs": {
"brew-pulp-docker01.web.prod.ext.phx2.redhat.com:8888": {
"Name": "brew-pulp-docker01.web.prod.ext.phx2.redhat.com:8888",
"Mirrors": [],