generated from nyu-devops/project-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpods.txt
12292 lines (12139 loc) · 607 KB
/
pods.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
Name: inventory-68f49b6f5f-6wb5b
Namespace: jessie-jy2728-dev
Priority: -3
Priority Class Name: sandbox-users-pods
Service Account: default
Node: ip-10-0-141-54.us-east-2.compute.internal/10.0.141.54
Start Time: Sun, 10 Dec 2023 02:45:02 +0000
Labels: app=inventory
pod-template-hash=68f49b6f5f
Annotations: k8s.v1.cni.cncf.io/network-status:
[{
"name": "openshift-sdn",
"interface": "eth0",
"ips": [
"10.131.10.253"
],
"default": true,
"dns": {}
}]
kubernetes.io/limit-ranger:
LimitRanger plugin set: cpu, memory request for init container check-postgres; cpu, memory limit for init container check-postgres
openshift.io/scc: restricted-v2
seccomp.security.alpha.kubernetes.io/pod: runtime/default
Status: Pending
SeccompProfile: RuntimeDefault
IP: 10.131.10.253
IPs:
IP: 10.131.10.253
Controlled By: ReplicaSet/inventory-68f49b6f5f
Init Containers:
check-postgres:
Container ID: cri-o://8337bfb418c6f46b431270b275127b9928cf375886837ba65f744ded542f40b3
Image: busybox
Image ID: docker.io/library/busybox@sha256:1780cb47b7dfbcbf1e511be1cdb62722bd0ce208b996ea199689b56892e15af9
Port: <none>
Host Port: <none>
Command:
sh
-c
until nc -z postgres 5432; do echo waiting for postgres; sleep 2; done;
State: Terminated
Reason: Completed
Exit Code: 0
Started: Sun, 10 Dec 2023 02:45:04 +0000
Finished: Sun, 10 Dec 2023 02:45:04 +0000
Ready: True
Restart Count: 0
Limits:
cpu: 1
memory: 1000Mi
Requests:
cpu: 10m
memory: 64Mi
Environment: <none>
Mounts:
/var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-b4d77 (ro)
Containers:
inventory:
Container ID:
Image: cluster-registry:32000/inventory:1.0
Image ID:
Port: 8080/TCP
Host Port: 0/TCP
State: Waiting
Reason: ImagePullBackOff
Ready: False
Restart Count: 0
Limits:
cpu: 500m
memory: 128Mi
Requests:
cpu: 250m
memory: 64Mi
Readiness: http-get http://:8080/health delay=5s timeout=1s period=30s #success=1 #failure=3
Environment:
RETRY_COUNT: 10
DATABASE_URI: <set to the key 'database_uri' in secret 'postgres-creds'> Optional: false
Mounts:
/var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-b4d77 (ro)
Conditions:
Type Status
Initialized True
Ready False
ContainersReady False
PodScheduled True
Volumes:
kube-api-access-b4d77:
Type: Projected (a volume that contains injected data from multiple sources)
TokenExpirationSeconds: 3607
ConfigMapName: kube-root-ca.crt
ConfigMapOptional: <nil>
DownwardAPI: true
ConfigMapName: openshift-service-ca.crt
ConfigMapOptional: <nil>
QoS Class: Burstable
Node-Selectors: <none>
Tolerations: node.kubernetes.io/memory-pressure:NoSchedule op=Exists
node.kubernetes.io/not-ready:NoExecute op=Exists for 300s
node.kubernetes.io/unreachable:NoExecute op=Exists for 300s
Events:
Type Reason Age From Message
---- ------ ---- ---- -------
Normal Scheduled 59m default-scheduler Successfully assigned jessie-jy2728-dev/inventory-68f49b6f5f-6wb5b to ip-10-0-141-54.us-east-2.compute.internal
Normal AddedInterface 59m multus Add eth0 [10.131.10.253/23] from openshift-sdn
Normal Pulling 59m kubelet Pulling image "busybox"
Normal Pulled 59m kubelet Successfully pulled image "busybox" in 207.145809ms (207.161748ms including waiting)
Normal Created 59m kubelet Created container check-postgres
Normal Started 59m kubelet Started container check-postgres
Warning Failed 58m (x3 over 59m) kubelet Error: ErrImagePull
Warning Failed 58m (x5 over 59m) kubelet Error: ImagePullBackOff
Normal Pulling 57m (x4 over 59m) kubelet Pulling image "cluster-registry:32000/inventory:1.0"
Warning Failed 57m (x4 over 59m) kubelet Failed to pull image "cluster-registry:32000/inventory:1.0": rpc error: code = Unknown desc = pinging container registry cluster-registry:32000: Get "https://cluster-registry:32000/v2/": dial tcp: lookup cluster-registry on 10.0.0.2:53: no such host
Normal BackOff 4m7s (x244 over 59m) kubelet Back-off pulling image "cluster-registry:32000/inventory:1.0"
Name: inventory-758d8756c-fb6kw
Namespace: jessie-jy2728-dev
Priority: -3
Priority Class Name: sandbox-users-pods
Service Account: default
Node: ip-10-0-157-42.us-east-2.compute.internal/10.0.157.42
Start Time: Sun, 10 Dec 2023 02:01:35 +0000
Labels: app=inventory
pod-template-hash=758d8756c
Annotations: k8s.v1.cni.cncf.io/network-status:
[{
"name": "openshift-sdn",
"interface": "eth0",
"ips": [
"10.131.2.157"
],
"default": true,
"dns": {}
}]
kubernetes.io/limit-ranger:
LimitRanger plugin set: cpu, memory request for init container check-postgres; cpu, memory limit for init container check-postgres
openshift.io/scc: restricted-v2
seccomp.security.alpha.kubernetes.io/pod: runtime/default
Status: Pending
SeccompProfile: RuntimeDefault
IP: 10.131.2.157
IPs:
IP: 10.131.2.157
Controlled By: ReplicaSet/inventory-758d8756c
Init Containers:
check-postgres:
Container ID: cri-o://97b33027426de5a99b517045074b2617c768314aef3b2f527d709883e01bdf34
Image: busybox
Image ID: docker.io/library/busybox@sha256:1780cb47b7dfbcbf1e511be1cdb62722bd0ce208b996ea199689b56892e15af9
Port: <none>
Host Port: <none>
Command:
sh
-c
until nc -z postgres 5432; do echo waiting for postgres; sleep 2; done;
State: Terminated
Reason: Completed
Exit Code: 0
Started: Sun, 10 Dec 2023 02:01:37 +0000
Finished: Sun, 10 Dec 2023 02:01:37 +0000
Ready: True
Restart Count: 0
Limits:
cpu: 1
memory: 1000Mi
Requests:
cpu: 10m
memory: 64Mi
Environment: <none>
Mounts:
/var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-w8gm5 (ro)
Containers:
inventory:
Container ID:
Image: image-registry.openshift-image-registry.svc:5000/jessie-jy2728-dev/inventory:latest
Image ID:
Port: 8080/TCP
Host Port: 0/TCP
State: Waiting
Reason: ImagePullBackOff
Ready: False
Restart Count: 0
Limits:
cpu: 500m
memory: 128Mi
Requests:
cpu: 250m
memory: 64Mi
Readiness: http-get http://:8080/health delay=5s timeout=1s period=30s #success=1 #failure=3
Environment:
RETRY_COUNT: 10
DATABASE_URI: <set to the key 'database_uri' in secret 'postgres-creds'> Optional: false
Mounts:
/var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-w8gm5 (ro)
Conditions:
Type Status
Initialized True
Ready False
ContainersReady False
PodScheduled True
Volumes:
kube-api-access-w8gm5:
Type: Projected (a volume that contains injected data from multiple sources)
TokenExpirationSeconds: 3607
ConfigMapName: kube-root-ca.crt
ConfigMapOptional: <nil>
DownwardAPI: true
ConfigMapName: openshift-service-ca.crt
ConfigMapOptional: <nil>
QoS Class: Burstable
Node-Selectors: <none>
Tolerations: node.kubernetes.io/memory-pressure:NoSchedule op=Exists
node.kubernetes.io/not-ready:NoExecute op=Exists for 300s
node.kubernetes.io/unreachable:NoExecute op=Exists for 300s
Events:
Type Reason Age From Message
---- ------ ---- ---- -------
Normal Scheduled 102m default-scheduler Successfully assigned jessie-jy2728-dev/inventory-758d8756c-fb6kw to ip-10-0-157-42.us-east-2.compute.internal
Normal AddedInterface 102m multus Add eth0 [10.131.2.157/23] from openshift-sdn
Normal Pulling 102m kubelet Pulling image "busybox"
Normal Pulled 102m kubelet Successfully pulled image "busybox" in 475.793185ms (475.806811ms including waiting)
Normal Created 102m kubelet Created container check-postgres
Normal Started 102m kubelet Started container check-postgres
Warning Failed 102m (x3 over 102m) kubelet Error: ErrImagePull
Warning Failed 101m (x5 over 102m) kubelet Error: ImagePullBackOff
Normal Pulling 101m (x4 over 102m) kubelet Pulling image "image-registry.openshift-image-registry.svc:5000/jessie-jy2728-dev/inventory:latest"
Warning Failed 101m (x4 over 102m) kubelet Failed to pull image "image-registry.openshift-image-registry.svc:5000/jessie-jy2728-dev/inventory:latest": rpc error: code = Unknown desc = reading manifest latest in image-registry.openshift-image-registry.svc:5000/jessie-jy2728-dev/inventory: authentication required
Normal BackOff 2m34s (x441 over 102m) kubelet Back-off pulling image "image-registry.openshift-image-registry.svc:5000/jessie-jy2728-dev/inventory:latest"
Name: inventory-cd-1135y2-buildah-pod
Namespace: jessie-jy2728-dev
Priority: -3
Priority Class Name: sandbox-users-pods
Service Account: pipeline
Node: ip-10-0-141-54.us-east-2.compute.internal/10.0.141.54
Start Time: Sun, 10 Dec 2023 02:59:48 +0000
Labels: app.kubernetes.io/managed-by=tekton-pipelines
tekton.dev/clusterTask=buildah
tekton.dev/memberOf=tasks
tekton.dev/pipeline=inventory-cd
tekton.dev/pipelineRun=inventory-cd-1135y2
tekton.dev/pipelineTask=buildah
tekton.dev/taskRun=inventory-cd-1135y2-buildah
Annotations: k8s.v1.cni.cncf.io/network-status:
[{
"name": "openshift-sdn",
"interface": "eth0",
"ips": [
"10.131.11.44"
],
"default": true,
"dns": {}
}]
kubernetes.io/limit-ranger:
LimitRanger plugin set: cpu, memory limit for container step-build-and-push; cpu, memory request for init container prepare; cpu, memory l...
openshift.io/scc: pipelines-scc
pipeline.openshift.io/started-by: jessie-jy2728
pipeline.tekton.dev/release: a2f17f6
tekton.dev/ready: READY
Status: Succeeded
IP: 10.131.11.44
IPs:
IP: 10.131.11.44
Controlled By: TaskRun/inventory-cd-1135y2-buildah
Init Containers:
prepare:
Container ID: cri-o://8f2aee6c54e8ea858a3b4ffb5ab8a81220dacb62a04132993cec8f148017389e
Image: registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel8@sha256:ef8307e5a9bd928fed9f62effc6a90154ff31557645b0d5c512954b896b3c073
Image ID: registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel8@sha256:eb344aaea3a273533b9a0548ae4cf0a5cf492d28f83aa9d83eb69d5aa418f3a5
Port: <none>
Host Port: <none>
Command:
/ko-app/entrypoint
init
/ko-app/entrypoint
/tekton/bin/entrypoint
step-build-and-push
State: Terminated
Reason: Completed
Exit Code: 0
Started: Sun, 10 Dec 2023 02:59:51 +0000
Finished: Sun, 10 Dec 2023 02:59:51 +0000
Ready: True
Restart Count: 0
Limits:
cpu: 1
memory: 1000Mi
Requests:
cpu: 10m
memory: 64Mi
Environment: <none>
Mounts:
/tekton/bin from tekton-internal-bin (rw)
/tekton/steps from tekton-internal-steps (rw)
/var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-zj7mn (ro)
place-scripts:
Container ID: cri-o://5f73e27770d40a5db6782de2c8b6151d66212dba0c18fc81e0b12215e9bc5418
Image: registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel8@sha256:ef8307e5a9bd928fed9f62effc6a90154ff31557645b0d5c512954b896b3c073
Image ID: registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel8@sha256:eb344aaea3a273533b9a0548ae4cf0a5cf492d28f83aa9d83eb69d5aa418f3a5
Port: <none>
Host Port: <none>
Command:
sh
Args:
-c
scriptfile="/tekton/scripts/script-0-227fk"
touch ${scriptfile} && chmod +x ${scriptfile}
cat > ${scriptfile} << '_EOF_'
IyEvYmluL3NoCnNldCAtZQpidWlsZGFoIC0tc3RvcmFnZS1kcml2ZXI9dmZzIGJ1ZCBcCiAgIC0tZm9ybWF0PW9jaSBcCiAgLS10bHMtdmVyaWZ5PXRydWUgLS1uby1jYWNoZSBcCiAgLWYgLi9Eb2NrZXJmaWxlIC10IGltYWdlLXJlZ2lzdHJ5Lm9wZW5zaGlmdC1pbWFnZS1yZWdpc3RyeS5zdmM6NTAwMC9qZXNzaWUtankyNzI4LWRldi9pbnZlbnRvcnk6bGF0ZXN0IC4KCltbICJmYWxzZSIgPT0gInRydWUiIF1dICYmIGVjaG8gIlB1c2ggc2tpcHBlZCIgJiYgZXhpdCAwCgppZiBbWyAiZmFsc2UiID09ICJ0cnVlIiBdXTsgdGhlbgoKICAjIGlmIGNvbmZpZy5qc29uIGV4aXN0cyBhdCB3b3Jrc3BhY2Ugcm9vdCwgd2UgdXNlIHRoYXQKICBpZiB0ZXN0IC1mICIvY29uZmlnLmpzb24iOyB0aGVuCiAgICBleHBvcnQgRE9DS0VSX0NPTkZJRz0iIgoKICAjIGVsc2Ugd2UgbG9vayBmb3IgLmRvY2tlcmNvbmZpZ2pzb24gYXQgdGhlIHJvb3QKICBlbGlmIHRlc3QgLWYgIi8uZG9ja2VyY29uZmlnanNvbiI7IHRoZW4KICAgIGNwICIvLmRvY2tlcmNvbmZpZ2pzb24iICIkSE9NRS8uZG9ja2VyL2NvbmZpZy5qc29uIgogICAgZXhwb3J0IERPQ0tFUl9DT05GSUc9IiRIT01FLy5kb2NrZXIiCgogICMgbmVlZCB0byBlcnJvciBvdXQgaWYgbmVpdGhlciBmaWxlcyBhcmUgcHJlc2VudAogIGVsc2UKICAgIGVjaG8gIm5laXRoZXIgJ2NvbmZpZy5qc29uJyBub3IgJy5kb2NrZXJjb25maWdqc29uJyBmb3VuZCBhdCB3b3Jrc3BhY2Ugcm9vdCIKICAgIGV4aXQgMQogIGZpCmZpCgpidWlsZGFoIC0tc3RvcmFnZS1kcml2ZXI9dmZzIHB1c2ggXAogICAtLXRscy12ZXJpZnk9dHJ1ZSBcCiAgLS1kaWdlc3RmaWxlIC90bXAvaW1hZ2UtZGlnZXN0IGltYWdlLXJlZ2lzdHJ5Lm9wZW5zaGlmdC1pbWFnZS1yZWdpc3RyeS5zdmM6NTAwMC9qZXNzaWUtankyNzI4LWRldi9pbnZlbnRvcnk6bGF0ZXN0IFwKICBkb2NrZXI6Ly9pbWFnZS1yZWdpc3RyeS5vcGVuc2hpZnQtaW1hZ2UtcmVnaXN0cnkuc3ZjOjUwMDAvamVzc2llLWp5MjcyOC1kZXYvaW52ZW50b3J5OmxhdGVzdApjYXQgL3RtcC9pbWFnZS1kaWdlc3QgfCB0ZWUgL3Rla3Rvbi9yZXN1bHRzL0lNQUdFX0RJR0VTVAplY2hvICJpbWFnZS1yZWdpc3RyeS5vcGVuc2hpZnQtaW1hZ2UtcmVnaXN0cnkuc3ZjOjUwMDAvamVzc2llLWp5MjcyOC1kZXYvaW52ZW50b3J5OmxhdGVzdCIgfCB0ZWUgL3Rla3Rvbi9yZXN1bHRzL0lNQUdFX1VSTAo=
_EOF_
/tekton/bin/entrypoint decode-script "${scriptfile}"
State: Terminated
Reason: Completed
Exit Code: 0
Started: Sun, 10 Dec 2023 02:59:51 +0000
Finished: Sun, 10 Dec 2023 02:59:51 +0000
Ready: True
Restart Count: 0
Limits:
cpu: 1
memory: 1000Mi
Requests:
cpu: 10m
memory: 64Mi
Environment: <none>
Mounts:
/tekton/bin from tekton-internal-bin (rw)
/tekton/scripts from tekton-internal-scripts (rw)
/var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-zj7mn (ro)
working-dir-initializer:
Container ID: cri-o://9f6fb57d741e09748d6bad88b4a03127ef04a4c6900540f8a2a2a39c79e08fe8
Image: registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:d78c7fcf3ec06131e076ce93dd59874efcb996e780eccd9314ca90f8f8d7d3f2
Image ID: registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:176e56e24348014d1d6432bdc5919c42ef6ca8d2221316dda3707fcd096ff0f5
Port: <none>
Host Port: <none>
Command:
/ko-app/workingdirinit
Args:
/workspace/source
State: Terminated
Reason: Completed
Exit Code: 0
Started: Sun, 10 Dec 2023 02:59:52 +0000
Finished: Sun, 10 Dec 2023 02:59:52 +0000
Ready: True
Restart Count: 0
Limits:
cpu: 1
memory: 1000Mi
Requests:
cpu: 10m
memory: 64Mi
Environment: <none>
Mounts:
/tekton/home from tekton-internal-home (rw)
/tekton/results from tekton-internal-results (rw)
/tekton/steps from tekton-internal-steps (ro)
/var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-zj7mn (ro)
/workspace from tekton-internal-workspace (rw)
Containers:
step-build-and-push:
Container ID: cri-o://c9afe19090f5ff4504a6ff6d42c0a4960b23f67a5a3fdfa56c858734bfd03e2a
Image: registry.redhat.io/rhel8/buildah@sha256:55f5c7d88c77e1ab5a2ab8e877172b2b66cb196e21f10dc45148470d0ee8bbae
Image ID: registry.redhat.io/rhel8/buildah@sha256:1c89cc3cab0ac0fc7387c1fe5e63443468219aab6fd531c8dad6d22fd999819e
Port: <none>
Host Port: <none>
Command:
/tekton/bin/entrypoint
Args:
-wait_file
/tekton/downward/ready
-wait_file_content
-post_file
/tekton/run/0/out
-termination_path
/tekton/termination
-step_metadata_dir
/tekton/run/0/status
-docker-cfg=pipeline-dockercfg-qm59m
-results
IMAGE_DIGEST,IMAGE_URL
-entrypoint
/tekton/scripts/script-0-227fk
--
State: Terminated
Reason: Completed
Message: [{"key":"IMAGE_DIGEST","value":"sha256:8d73689f05beb336aff340fda4a491fba418392118aee42bf4ae6d288a0f5f7e","type":1},{"key":"IMAGE_URL","value":"image-registry.openshift-image-registry.svc:5000/jessie-jy2728-dev/inventory:latest\n","type":1},{"key":"StartedAt","value":"2023-12-10T03:00:06.291Z","type":3}]
Exit Code: 0
Started: Sun, 10 Dec 2023 03:00:05 +0000
Finished: Sun, 10 Dec 2023 03:01:49 +0000
Ready: False
Restart Count: 0
Limits:
cpu: 1
memory: 1000Mi
Requests:
cpu: 10m
memory: 64Mi
Environment:
SSL_CERT_DIR: /tekton-custom-certs:/etc/ssl/certs:/etc/pki/tls/certs:/system/etc/security/cacerts
Mounts:
/tekton-custom-certs/ca-bundle.crt from config-trusted-cabundle-volume (ro,path="ca-bundle.crt")
/tekton-custom-certs/service-ca.crt from config-service-cabundle-volume (ro,path="service-ca.crt")
/tekton/bin from tekton-internal-bin (ro)
/tekton/creds from tekton-creds-init-home-0 (rw)
/tekton/creds-secrets/pipeline-dockercfg-qm59m from tekton-internal-secret-volume-pipeline-dockercfg-qm59m-kcjgq (rw)
/tekton/downward from tekton-internal-downward (ro)
/tekton/home from tekton-internal-home (rw)
/tekton/results from tekton-internal-results (rw)
/tekton/run/0 from tekton-internal-run-0 (rw)
/tekton/scripts from tekton-internal-scripts (ro)
/tekton/steps from tekton-internal-steps (ro)
/var/lib/containers from varlibcontainers (rw)
/var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-zj7mn (ro)
/workspace from tekton-internal-workspace (rw)
/workspace/source from ws-rfxlt (rw)
Conditions:
Type Status
Initialized True
Ready False
ContainersReady False
PodScheduled True
Volumes:
tekton-internal-workspace:
Type: EmptyDir (a temporary directory that shares a pod's lifetime)
Medium:
SizeLimit: <unset>
tekton-internal-home:
Type: EmptyDir (a temporary directory that shares a pod's lifetime)
Medium:
SizeLimit: <unset>
tekton-internal-results:
Type: EmptyDir (a temporary directory that shares a pod's lifetime)
Medium:
SizeLimit: <unset>
tekton-internal-steps:
Type: EmptyDir (a temporary directory that shares a pod's lifetime)
Medium:
SizeLimit: <unset>
tekton-internal-secret-volume-pipeline-dockercfg-qm59m-kcjgq:
Type: Secret (a volume populated by a Secret)
SecretName: pipeline-dockercfg-qm59m
Optional: false
tekton-internal-scripts:
Type: EmptyDir (a temporary directory that shares a pod's lifetime)
Medium:
SizeLimit: <unset>
tekton-internal-bin:
Type: EmptyDir (a temporary directory that shares a pod's lifetime)
Medium:
SizeLimit: <unset>
tekton-internal-downward:
Type: DownwardAPI (a volume populated by information about the pod)
Items:
metadata.annotations['tekton.dev/ready'] -> ready
tekton-creds-init-home-0:
Type: EmptyDir (a temporary directory that shares a pod's lifetime)
Medium: Memory
SizeLimit: <unset>
tekton-internal-run-0:
Type: EmptyDir (a temporary directory that shares a pod's lifetime)
Medium:
SizeLimit: <unset>
varlibcontainers:
Type: EmptyDir (a temporary directory that shares a pod's lifetime)
Medium:
SizeLimit: <unset>
ws-rfxlt:
Type: PersistentVolumeClaim (a reference to a PersistentVolumeClaim in the same namespace)
ClaimName: inventory-pvc
ReadOnly: false
kube-api-access-zj7mn:
Type: Projected (a volume that contains injected data from multiple sources)
TokenExpirationSeconds: 3607
ConfigMapName: kube-root-ca.crt
ConfigMapOptional: <nil>
DownwardAPI: true
ConfigMapName: openshift-service-ca.crt
ConfigMapOptional: <nil>
config-trusted-cabundle-volume:
Type: ConfigMap (a volume populated by a ConfigMap)
Name: config-trusted-cabundle
Optional: false
config-service-cabundle-volume:
Type: ConfigMap (a volume populated by a ConfigMap)
Name: config-service-cabundle
Optional: false
QoS Class: Burstable
Node-Selectors: <none>
Tolerations: node.kubernetes.io/memory-pressure:NoSchedule op=Exists
node.kubernetes.io/not-ready:NoExecute op=Exists for 300s
node.kubernetes.io/unreachable:NoExecute op=Exists for 300s
Events:
Type Reason Age From Message
---- ------ ---- ---- -------
Normal Scheduled 44m default-scheduler Successfully assigned jessie-jy2728-dev/inventory-cd-1135y2-buildah-pod to ip-10-0-141-54.us-east-2.compute.internal
Normal AddedInterface 44m multus Add eth0 [10.131.11.44/23] from openshift-sdn
Normal Pulled 44m kubelet Container image "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel8@sha256:ef8307e5a9bd928fed9f62effc6a90154ff31557645b0d5c512954b896b3c073" already present on machine
Normal Created 44m kubelet Created container prepare
Normal Started 44m kubelet Started container prepare
Normal Pulled 44m kubelet Container image "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel8@sha256:ef8307e5a9bd928fed9f62effc6a90154ff31557645b0d5c512954b896b3c073" already present on machine
Normal Created 44m kubelet Created container place-scripts
Normal Started 44m kubelet Started container place-scripts
Normal Pulled 44m kubelet Container image "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:d78c7fcf3ec06131e076ce93dd59874efcb996e780eccd9314ca90f8f8d7d3f2" already present on machine
Normal Created 44m kubelet Created container working-dir-initializer
Normal Started 44m kubelet Started container working-dir-initializer
Normal Pulling 44m kubelet Pulling image "registry.redhat.io/rhel8/buildah@sha256:55f5c7d88c77e1ab5a2ab8e877172b2b66cb196e21f10dc45148470d0ee8bbae"
Normal Pulled 44m kubelet Successfully pulled image "registry.redhat.io/rhel8/buildah@sha256:55f5c7d88c77e1ab5a2ab8e877172b2b66cb196e21f10dc45148470d0ee8bbae" in 11.678729712s (11.67873978s including waiting)
Normal Created 44m kubelet Created container step-build-and-push
Normal Started 44m kubelet Started container step-build-and-push
Name: inventory-cd-1135y2-deploy-image-pod
Namespace: jessie-jy2728-dev
Priority: -3
Priority Class Name: sandbox-users-pods
Service Account: pipeline
Node: ip-10-0-141-54.us-east-2.compute.internal/10.0.141.54
Start Time: Sun, 10 Dec 2023 03:01:50 +0000
Labels: app.kubernetes.io/managed-by=tekton-pipelines
app.kubernetes.io/version=0.1
tekton.dev/memberOf=tasks
tekton.dev/pipeline=inventory-cd
tekton.dev/pipelineRun=inventory-cd-1135y2
tekton.dev/pipelineTask=deploy-image
tekton.dev/task=deploy-image
tekton.dev/taskRun=inventory-cd-1135y2-deploy-image
Annotations: k8s.v1.cni.cncf.io/network-status:
[{
"name": "openshift-sdn",
"interface": "eth0",
"ips": [
"10.131.11.55"
],
"default": true,
"dns": {}
}]
kubernetes.io/limit-ranger:
LimitRanger plugin set: cpu, memory limit for container step-deploy; cpu, memory request for init container prepare; cpu, memory limit for...
openshift.io/scc: pipelines-scc
pipeline.openshift.io/started-by: jessie-jy2728
pipeline.tekton.dev/release: a2f17f6
tekton.dev/categories: Deployment
tekton.dev/displayName: deploy image
tekton.dev/pipelines.minVersion: 0.17.0
tekton.dev/platforms: linux/amd64
tekton.dev/ready: READY
tekton.dev/tags: openshift, deploy
Status: Succeeded
IP: 10.131.11.55
IPs:
IP: 10.131.11.55
Controlled By: TaskRun/inventory-cd-1135y2-deploy-image
Init Containers:
prepare:
Container ID: cri-o://29c2fb69fec376b8a1c453368bc988e4ecb737d7c613e9734e94ea1f582b93a8
Image: registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel8@sha256:ef8307e5a9bd928fed9f62effc6a90154ff31557645b0d5c512954b896b3c073
Image ID: registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel8@sha256:eb344aaea3a273533b9a0548ae4cf0a5cf492d28f83aa9d83eb69d5aa418f3a5
Port: <none>
Host Port: <none>
Command:
/ko-app/entrypoint
init
/ko-app/entrypoint
/tekton/bin/entrypoint
step-deploy
State: Terminated
Reason: Completed
Exit Code: 0
Started: Sun, 10 Dec 2023 03:01:52 +0000
Finished: Sun, 10 Dec 2023 03:01:52 +0000
Ready: True
Restart Count: 0
Limits:
cpu: 1
memory: 1000Mi
Requests:
cpu: 10m
memory: 64Mi
Environment: <none>
Mounts:
/tekton/bin from tekton-internal-bin (rw)
/tekton/steps from tekton-internal-steps (rw)
/var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-68sqq (ro)
working-dir-initializer:
Container ID: cri-o://43f1e54def8516a7c4044236ce72d1b6fda00f858f35ba7a571ce5eee2af74db
Image: registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:d78c7fcf3ec06131e076ce93dd59874efcb996e780eccd9314ca90f8f8d7d3f2
Image ID: registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:176e56e24348014d1d6432bdc5919c42ef6ca8d2221316dda3707fcd096ff0f5
Port: <none>
Host Port: <none>
Command:
/ko-app/workingdirinit
Args:
/workspace/source
State: Terminated
Reason: Completed
Exit Code: 0
Started: Sun, 10 Dec 2023 03:01:53 +0000
Finished: Sun, 10 Dec 2023 03:01:53 +0000
Ready: True
Restart Count: 0
Limits:
cpu: 1
memory: 1000Mi
Requests:
cpu: 10m
memory: 64Mi
Environment: <none>
Mounts:
/tekton/home from tekton-internal-home (rw)
/tekton/results from tekton-internal-results (rw)
/tekton/steps from tekton-internal-steps (ro)
/var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-68sqq (ro)
/workspace from tekton-internal-workspace (rw)
Containers:
step-deploy:
Container ID: cri-o://bf63c6899c2f6bddb340e1b23c1b168bf43ab0a039f2630f4b27791ea634062e
Image: quay.io/openshift/origin-cli:latest
Image ID: quay.io/openshift/origin-cli@sha256:7cabf960c302ace75078bc8b9708f4631c555d19fdc8d0f0b482003f5f32b419
Port: <none>
Host Port: <none>
Command:
/tekton/bin/entrypoint
Args:
-wait_file
/tekton/downward/ready
-wait_file_content
-post_file
/tekton/run/0/out
-termination_path
/tekton/termination
-step_metadata_dir
/tekton/run/0/status
-docker-cfg=pipeline-dockercfg-qm59m
-entrypoint
/bin/bash
--
-c
#!/bin/bash
set -e
echo Applying manifests in k8s directory
echo "********************* DEPLOYMENT ***********************"
echo "Deploying image-registry.openshift-image-registry.svc:5000/jessie-jy2728-dev/inventory:latest ..."
sed -i 's|'"cluster-registry:32000/inventory:latest"'|'"image-registry.openshift-image-registry.svc:5000/jessie-jy2728-dev/inventory:latest"'|g' k8s/deployment.yaml
cat k8s/deployment.yaml
echo "************************************************************"
echo "OC APPLY..."
oc apply -f k8s/deployment.yaml
oc apply -f k8s/service.yaml
echo "************************************************************"
sleep 3
echo "Pods:"
oc get pods
echo ""
State: Terminated
Reason: Completed
Message: [{"key":"StartedAt","value":"2023-12-10T03:01:55.489Z","type":3}]
Exit Code: 0
Started: Sun, 10 Dec 2023 03:01:54 +0000
Finished: Sun, 10 Dec 2023 03:02:01 +0000
Ready: False
Restart Count: 0
Limits:
cpu: 1
memory: 1000Mi
Requests:
cpu: 10m
memory: 64Mi
Environment:
SSL_CERT_DIR: /tekton-custom-certs:/etc/ssl/certs:/etc/pki/tls/certs:/system/etc/security/cacerts
Mounts:
/tekton-custom-certs/ca-bundle.crt from config-trusted-cabundle-volume (ro,path="ca-bundle.crt")
/tekton-custom-certs/service-ca.crt from config-service-cabundle-volume (ro,path="service-ca.crt")
/tekton/bin from tekton-internal-bin (ro)
/tekton/creds from tekton-creds-init-home-0 (rw)
/tekton/creds-secrets/pipeline-dockercfg-qm59m from tekton-internal-secret-volume-pipeline-dockercfg-qm59m-v8d6s (rw)
/tekton/downward from tekton-internal-downward (ro)
/tekton/home from tekton-internal-home (rw)
/tekton/results from tekton-internal-results (rw)
/tekton/run/0 from tekton-internal-run-0 (rw)
/tekton/steps from tekton-internal-steps (ro)
/var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-68sqq (ro)
/workspace from tekton-internal-workspace (rw)
/workspace/source from ws-5nn8x (rw)
Conditions:
Type Status
Initialized True
Ready False
ContainersReady False
PodScheduled True
Volumes:
tekton-internal-workspace:
Type: EmptyDir (a temporary directory that shares a pod's lifetime)
Medium:
SizeLimit: <unset>
tekton-internal-home:
Type: EmptyDir (a temporary directory that shares a pod's lifetime)
Medium:
SizeLimit: <unset>
tekton-internal-results:
Type: EmptyDir (a temporary directory that shares a pod's lifetime)
Medium:
SizeLimit: <unset>
tekton-internal-steps:
Type: EmptyDir (a temporary directory that shares a pod's lifetime)
Medium:
SizeLimit: <unset>
tekton-internal-secret-volume-pipeline-dockercfg-qm59m-v8d6s:
Type: Secret (a volume populated by a Secret)
SecretName: pipeline-dockercfg-qm59m
Optional: false
tekton-internal-bin:
Type: EmptyDir (a temporary directory that shares a pod's lifetime)
Medium:
SizeLimit: <unset>
tekton-internal-downward:
Type: DownwardAPI (a volume populated by information about the pod)
Items:
metadata.annotations['tekton.dev/ready'] -> ready
tekton-creds-init-home-0:
Type: EmptyDir (a temporary directory that shares a pod's lifetime)
Medium: Memory
SizeLimit: <unset>
tekton-internal-run-0:
Type: EmptyDir (a temporary directory that shares a pod's lifetime)
Medium:
SizeLimit: <unset>
ws-5nn8x:
Type: PersistentVolumeClaim (a reference to a PersistentVolumeClaim in the same namespace)
ClaimName: inventory-pvc
ReadOnly: false
kube-api-access-68sqq:
Type: Projected (a volume that contains injected data from multiple sources)
TokenExpirationSeconds: 3607
ConfigMapName: kube-root-ca.crt
ConfigMapOptional: <nil>
DownwardAPI: true
ConfigMapName: openshift-service-ca.crt
ConfigMapOptional: <nil>
config-trusted-cabundle-volume:
Type: ConfigMap (a volume populated by a ConfigMap)
Name: config-trusted-cabundle
Optional: false
config-service-cabundle-volume:
Type: ConfigMap (a volume populated by a ConfigMap)
Name: config-service-cabundle
Optional: false
QoS Class: Burstable
Node-Selectors: <none>
Tolerations: node.kubernetes.io/memory-pressure:NoSchedule op=Exists
node.kubernetes.io/not-ready:NoExecute op=Exists for 300s
node.kubernetes.io/unreachable:NoExecute op=Exists for 300s
Events:
Type Reason Age From Message
---- ------ ---- ---- -------
Normal Scheduled 42m default-scheduler Successfully assigned jessie-jy2728-dev/inventory-cd-1135y2-deploy-image-pod to ip-10-0-141-54.us-east-2.compute.internal
Normal AddedInterface 42m multus Add eth0 [10.131.11.55/23] from openshift-sdn
Normal Pulled 42m kubelet Container image "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel8@sha256:ef8307e5a9bd928fed9f62effc6a90154ff31557645b0d5c512954b896b3c073" already present on machine
Normal Created 42m kubelet Created container prepare
Normal Started 42m kubelet Started container prepare
Normal Pulled 42m kubelet Container image "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:d78c7fcf3ec06131e076ce93dd59874efcb996e780eccd9314ca90f8f8d7d3f2" already present on machine
Normal Created 42m kubelet Created container working-dir-initializer
Normal Started 42m kubelet Started container working-dir-initializer
Normal Pulling 42m kubelet Pulling image "quay.io/openshift/origin-cli:latest"
Normal Pulled 42m kubelet Successfully pulled image "quay.io/openshift/origin-cli:latest" in 320.744051ms (320.758158ms including waiting)
Normal Created 42m kubelet Created container step-deploy
Normal Started 42m kubelet Started container step-deploy
Name: inventory-cd-1135y2-git-clone-pod
Namespace: jessie-jy2728-dev
Priority: -3
Priority Class Name: sandbox-users-pods
Service Account: pipeline
Node: ip-10-0-141-54.us-east-2.compute.internal/10.0.141.54
Start Time: Sun, 10 Dec 2023 02:58:41 +0000
Labels: app.kubernetes.io/managed-by=tekton-pipelines
tekton.dev/clusterTask=git-clone
tekton.dev/memberOf=tasks
tekton.dev/pipeline=inventory-cd
tekton.dev/pipelineRun=inventory-cd-1135y2
tekton.dev/pipelineTask=git-clone
tekton.dev/taskRun=inventory-cd-1135y2-git-clone
Annotations: k8s.v1.cni.cncf.io/network-status:
[{
"name": "openshift-sdn",
"interface": "eth0",
"ips": [
"10.131.11.37"
],
"default": true,
"dns": {}
}]
kubernetes.io/limit-ranger:
LimitRanger plugin set: cpu, memory limit for container step-clone; cpu, memory request for init container prepare; cpu, memory limit for ...
openshift.io/scc: pipelines-scc
pipeline.openshift.io/started-by: jessie-jy2728
pipeline.tekton.dev/release: a2f17f6
tekton.dev/ready: READY
Status: Succeeded
IP: 10.131.11.37
IPs:
IP: 10.131.11.37
Controlled By: TaskRun/inventory-cd-1135y2-git-clone
Init Containers:
prepare:
Container ID: cri-o://9280d8e68fb2ad59df368919ba4bfb9532de5cab82994bc5565c3b45637310a0
Image: registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel8@sha256:ef8307e5a9bd928fed9f62effc6a90154ff31557645b0d5c512954b896b3c073
Image ID: registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel8@sha256:eb344aaea3a273533b9a0548ae4cf0a5cf492d28f83aa9d83eb69d5aa418f3a5
Port: <none>
Host Port: <none>
Command:
/ko-app/entrypoint
init
/ko-app/entrypoint
/tekton/bin/entrypoint
step-clone
State: Terminated
Reason: Completed
Exit Code: 0
Started: Sun, 10 Dec 2023 02:58:46 +0000
Finished: Sun, 10 Dec 2023 02:58:46 +0000
Ready: True
Restart Count: 0
Limits:
cpu: 1
memory: 1000Mi
Requests:
cpu: 10m
memory: 64Mi
Environment: <none>
Mounts:
/tekton/bin from tekton-internal-bin (rw)
/tekton/steps from tekton-internal-steps (rw)
/var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-s949t (ro)
place-scripts:
Container ID: cri-o://352eeec8294039a442b0c35920a0a459cc9791247b450b04f3f90a08e035bbf3
Image: registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel8@sha256:ef8307e5a9bd928fed9f62effc6a90154ff31557645b0d5c512954b896b3c073
Image ID: registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel8@sha256:eb344aaea3a273533b9a0548ae4cf0a5cf492d28f83aa9d83eb69d5aa418f3a5
Port: <none>
Host Port: <none>
Command:
sh
Args:
-c
scriptfile="/tekton/scripts/script-0-s58n4"
touch ${scriptfile} && chmod +x ${scriptfile}
cat > ${scriptfile} << '_EOF_'
IyEvdXNyL2Jpbi9lbnYgc2gKc2V0IC1ldQoKaWYgWyAiJHtQQVJBTV9WRVJCT1NFfSIgPSAidHJ1ZSIgXSA7IHRoZW4KICBzZXQgLXgKZmkKCmlmIFsgIiR7V09SS1NQQUNFX0JBU0lDX0FVVEhfRElSRUNUT1JZX0JPVU5EfSIgPSAidHJ1ZSIgXSA7IHRoZW4KICBjcCAiJHtXT1JLU1BBQ0VfQkFTSUNfQVVUSF9ESVJFQ1RPUllfUEFUSH0vLmdpdC1jcmVkZW50aWFscyIgIiR7UEFSQU1fVVNFUl9IT01FfS8uZ2l0LWNyZWRlbnRpYWxzIgogIGNwICIke1dPUktTUEFDRV9CQVNJQ19BVVRIX0RJUkVDVE9SWV9QQVRIfS8uZ2l0Y29uZmlnIiAiJHtQQVJBTV9VU0VSX0hPTUV9Ly5naXRjb25maWciCiAgY2htb2QgNDAwICIke1BBUkFNX1VTRVJfSE9NRX0vLmdpdC1jcmVkZW50aWFscyIKICBjaG1vZCA0MDAgIiR7UEFSQU1fVVNFUl9IT01FfS8uZ2l0Y29uZmlnIgpmaQoKaWYgWyAiJHtXT1JLU1BBQ0VfU1NIX0RJUkVDVE9SWV9CT1VORH0iID0gInRydWUiIF0gOyB0aGVuCiAgY3AgLVIgIiR7V09SS1NQQUNFX1NTSF9ESVJFQ1RPUllfUEFUSH0iICIke1BBUkFNX1VTRVJfSE9NRX0iLy5zc2gKICBjaG1vZCA3MDAgIiR7UEFSQU1fVVNFUl9IT01FfSIvLnNzaAogIGNobW9kIC1SIDQwMCAiJHtQQVJBTV9VU0VSX0hPTUV9Ii8uc3NoLyoKZmkKCmlmIFsgIiR7V09SS1NQQUNFX1NTTF9DQV9ESVJFQ1RPUllfQk9VTkR9IiA9ICJ0cnVlIiBdIDsgdGhlbgogICBleHBvcnQgR0lUX1NTTF9DQVBBVEg9IiR7V09SS1NQQUNFX1NTTF9DQV9ESVJFQ1RPUllfUEFUSH0iCiAgIGlmIFsgIiR7UEFSQU1fQ1JUX0ZJTEVOQU1FfSIgIT0gIiIgXSA7IHRoZW4KICAgICAgZXhwb3J0IEdJVF9TU0xfQ0FJTkZPPSIke1dPUktTUEFDRV9TU0xfQ0FfRElSRUNUT1JZX1BBVEh9LyR7UEFSQU1fQ1JUX0ZJTEVOQU1FfSIKICAgZmkKZmkKQ0hFQ0tPVVRfRElSPSIke1dPUktTUEFDRV9PVVRQVVRfUEFUSH0vJHtQQVJBTV9TVUJESVJFQ1RPUll9IgoKY2xlYW5kaXIoKSB7CiAgIyBEZWxldGUgYW55IGV4aXN0aW5nIGNvbnRlbnRzIG9mIHRoZSByZXBvIGRpcmVjdG9yeSBpZiBpdCBleGlzdHMuCiAgIwogICMgV2UgZG9uJ3QganVzdCAicm0gLXJmICR7Q0hFQ0tPVVRfRElSfSIgYmVjYXVzZSAke0NIRUNLT1VUX0RJUn0gbWlnaHQgYmUgIi8iCiAgIyBvciB0aGUgcm9vdCBvZiBhIG1vdW50ZWQgdm9sdW1lLgogIGlmIFsgLWQgIiR7Q0hFQ0tPVVRfRElSfSIgXSA7IHRoZW4KICAgICMgRGVsZXRlIG5vbi1oaWRkZW4gZmlsZXMgYW5kIGRpcmVjdG9yaWVzCiAgICBybSAtcmYgIiR7Q0hFQ0tPVVRfRElSOj99Ii8qCiAgICAjIERlbGV0ZSBmaWxlcyBhbmQgZGlyZWN0b3JpZXMgc3RhcnRpbmcgd2l0aCAuIGJ1dCBleGNsdWRpbmcgLi4KICAgIHJtIC1yZiAiJHtDSEVDS09VVF9ESVJ9Ii8uWyEuXSoKICAgICMgRGVsZXRlIGZpbGVzIGFuZCBkaXJlY3RvcmllcyBzdGFydGluZyB3aXRoIC4uIHBsdXMgYW55IG90aGVyIGNoYXJhY3RlcgogICAgcm0gLXJmICIke0NIRUNLT1VUX0RJUn0iLy4uPyoKICBmaQp9CgppZiBbICIke1BBUkFNX0RFTEVURV9FWElTVElOR30iID0gInRydWUiIF0gOyB0aGVuCiAgY2xlYW5kaXIgfHwgdHJ1ZQpmaQoKdGVzdCAteiAiJHtQQVJBTV9IVFRQX1BST1hZfSIgfHwgZXhwb3J0IEhUVFBfUFJPWFk9IiR7UEFSQU1fSFRUUF9QUk9YWX0iCnRlc3QgLXogIiR7UEFSQU1fSFRUUFNfUFJPWFl9IiB8fCBleHBvcnQgSFRUUFNfUFJPWFk9IiR7UEFSQU1fSFRUUFNfUFJPWFl9Igp0ZXN0IC16ICIke1BBUkFNX05PX1BST1hZfSIgfHwgZXhwb3J0IE5PX1BST1hZPSIke1BBUkFNX05PX1BST1hZfSIKCmdpdCBjb25maWcgLS1nbG9iYWwgLS1hZGQgc2FmZS5kaXJlY3RvcnkgIiR7V09SS1NQQUNFX09VVFBVVF9QQVRIfSIKL2tvLWFwcC9naXQtaW5pdCBcCiAgLXVybD0iJHtQQVJBTV9VUkx9IiBcCiAgLXJldmlzaW9uPSIke1BBUkFNX1JFVklTSU9OfSIgXAogIC1yZWZzcGVjPSIke1BBUkFNX1JFRlNQRUN9IiBcCiAgLXBhdGg9IiR7Q0hFQ0tPVVRfRElSfSIgXAogIC1zc2xWZXJpZnk9IiR7UEFSQU1fU1NMX1ZFUklGWX0iIFwKICAtc3VibW9kdWxlcz0iJHtQQVJBTV9TVUJNT0RVTEVTfSIgXAogIC1kZXB0aD0iJHtQQVJBTV9ERVBUSH0iIFwKICAtc3BhcnNlQ2hlY2tvdXREaXJlY3Rvcmllcz0iJHtQQVJBTV9TUEFSU0VfQ0hFQ0tPVVRfRElSRUNUT1JJRVN9IgpjZCAiJHtDSEVDS09VVF9ESVJ9IgpSRVNVTFRfU0hBPSIkKGdpdCByZXYtcGFyc2UgSEVBRCkiCkVYSVRfQ09ERT0iJD8iCmlmIFsgIiR7RVhJVF9DT0RFfSIgIT0gMCBdIDsgdGhlbgogIGV4aXQgIiR7RVhJVF9DT0RFfSIKZmkKUkVTVUxUX0NPTU1JVFRFUl9EQVRFPSIkKGdpdCBsb2cgLTEgLS1wcmV0dHk9JWN0KSIKcHJpbnRmICIlcyIgIiR7UkVTVUxUX0NPTU1JVFRFUl9EQVRFfSIgPiAiL3Rla3Rvbi9yZXN1bHRzL2NvbW1pdHRlci1kYXRlIgpwcmludGYgIiVzIiAiJHtSRVNVTFRfU0hBfSIgPiAiL3Rla3Rvbi9yZXN1bHRzL2NvbW1pdCIKcHJpbnRmICIlcyIgIiR7UEFSQU1fVVJMfSIgPiAiL3Rla3Rvbi9yZXN1bHRzL3VybCIK
_EOF_
/tekton/bin/entrypoint decode-script "${scriptfile}"
State: Terminated
Reason: Completed
Exit Code: 0
Started: Sun, 10 Dec 2023 02:58:47 +0000
Finished: Sun, 10 Dec 2023 02:58:47 +0000
Ready: True
Restart Count: 0
Limits:
cpu: 1
memory: 1000Mi
Requests:
cpu: 10m
memory: 64Mi
Environment: <none>
Mounts:
/tekton/bin from tekton-internal-bin (rw)
/tekton/scripts from tekton-internal-scripts (rw)
/var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-s949t (ro)
Containers:
step-clone:
Container ID: cri-o://e4125f73351919a9f5df92f337ff87d6b02cc04dae9a4a30d7ffa28df6646657
Image: registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel8@sha256:c4b2183f7c7997bd401d86b33eefb637b3ef2fa90618e875106292cd69a15c14
Image ID: registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel8@sha256:0406dbf147f929411fe59c3185311c8fd147cefc1010ab4f67fa062cb9f320c6
Port: <none>
Host Port: <none>
Command:
/tekton/bin/entrypoint
Args:
-wait_file
/tekton/downward/ready
-wait_file_content
-post_file
/tekton/run/0/out
-termination_path
/tekton/termination
-step_metadata_dir
/tekton/run/0/status
-docker-cfg=pipeline-dockercfg-qm59m
-results
commit,url,committer-date
-entrypoint
/tekton/scripts/script-0-s58n4
--
State: Terminated
Reason: Completed
Message: [{"key":"commit","value":"e3d91e15d2182ac44a5f6922bd8898c028cfd041"},{"key":"url","value":"https://github.com/CSCI-GA-2820-FA23-001/inventory.git"},{"key":"commit","value":"e3d91e15d2182ac44a5f6922bd8898c028cfd041","type":1},{"key":"url","value":"https://github.com/CSCI-GA-2820-FA23-001/inventory.git","type":1},{"key":"committer-date","value":"1702174652","type":1},{"key":"StartedAt","value":"2023-12-10T02:58:49.290Z","type":3}]
Exit Code: 0
Started: Sun, 10 Dec 2023 02:58:48 +0000
Finished: Sun, 10 Dec 2023 02:58:52 +0000
Ready: False
Restart Count: 0
Limits:
cpu: 1
memory: 1000Mi
Requests:
cpu: 10m
memory: 64Mi
Environment:
HOME: /home/git
PARAM_URL: https://github.com/CSCI-GA-2820-FA23-001/inventory.git
PARAM_REVISION: master
PARAM_REFSPEC:
PARAM_SUBMODULES: true
PARAM_DEPTH: 1
PARAM_SSL_VERIFY: true
PARAM_CRT_FILENAME: ca-bundle.crt
PARAM_SUBDIRECTORY:
PARAM_DELETE_EXISTING: true
PARAM_HTTP_PROXY:
PARAM_HTTPS_PROXY:
PARAM_NO_PROXY:
PARAM_VERBOSE: true
PARAM_SPARSE_CHECKOUT_DIRECTORIES:
PARAM_USER_HOME: /home/git
WORKSPACE_OUTPUT_PATH: /workspace/output
WORKSPACE_SSH_DIRECTORY_BOUND: false
WORKSPACE_SSH_DIRECTORY_PATH:
WORKSPACE_BASIC_AUTH_DIRECTORY_BOUND: false
WORKSPACE_BASIC_AUTH_DIRECTORY_PATH:
WORKSPACE_SSL_CA_DIRECTORY_BOUND: false
WORKSPACE_SSL_CA_DIRECTORY_PATH:
SSL_CERT_DIR: /tekton-custom-certs:/etc/ssl/certs:/etc/pki/tls/certs:/system/etc/security/cacerts
Mounts:
/tekton-custom-certs/ca-bundle.crt from config-trusted-cabundle-volume (ro,path="ca-bundle.crt")
/tekton-custom-certs/service-ca.crt from config-service-cabundle-volume (ro,path="service-ca.crt")
/tekton/bin from tekton-internal-bin (ro)
/tekton/creds from tekton-creds-init-home-0 (rw)
/tekton/creds-secrets/pipeline-dockercfg-qm59m from tekton-internal-secret-volume-pipeline-dockercfg-qm59m-fn2qn (rw)
/tekton/downward from tekton-internal-downward (ro)
/tekton/home from tekton-internal-home (rw)
/tekton/results from tekton-internal-results (rw)
/tekton/run/0 from tekton-internal-run-0 (rw)
/tekton/scripts from tekton-internal-scripts (ro)
/tekton/steps from tekton-internal-steps (ro)
/var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-s949t (ro)
/workspace from tekton-internal-workspace (rw)
/workspace/output from ws-vzwc9 (rw)
Conditions:
Type Status
Initialized True
Ready False
ContainersReady False
PodScheduled True
Volumes:
tekton-internal-workspace:
Type: EmptyDir (a temporary directory that shares a pod's lifetime)
Medium:
SizeLimit: <unset>
tekton-internal-home:
Type: EmptyDir (a temporary directory that shares a pod's lifetime)
Medium:
SizeLimit: <unset>
tekton-internal-results:
Type: EmptyDir (a temporary directory that shares a pod's lifetime)
Medium:
SizeLimit: <unset>
tekton-internal-steps:
Type: EmptyDir (a temporary directory that shares a pod's lifetime)
Medium:
SizeLimit: <unset>
tekton-internal-secret-volume-pipeline-dockercfg-qm59m-fn2qn:
Type: Secret (a volume populated by a Secret)
SecretName: pipeline-dockercfg-qm59m
Optional: false
tekton-internal-scripts:
Type: EmptyDir (a temporary directory that shares a pod's lifetime)
Medium:
SizeLimit: <unset>
tekton-internal-bin:
Type: EmptyDir (a temporary directory that shares a pod's lifetime)
Medium:
SizeLimit: <unset>
tekton-internal-downward:
Type: DownwardAPI (a volume populated by information about the pod)
Items:
metadata.annotations['tekton.dev/ready'] -> ready
tekton-creds-init-home-0:
Type: EmptyDir (a temporary directory that shares a pod's lifetime)
Medium: Memory
SizeLimit: <unset>
tekton-internal-run-0: