kdash 0.5.0

A fast and simple dashboard for Kubernetes
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
apiVersion: v1
items:
- apiVersion: v1
  kind: Pod
  metadata:
    creationTimestamp: "2021-04-27T10:13:58Z"
    generateName: adservice-f787c8dcd-
    labels:
      app: adservice
      pod-template-hash: f787c8dcd
    managedFields: []
    name: adservice-f787c8dcd-tb6x2
    namespace: default
    ownerReferences:
    - apiVersion: apps/v1
      blockOwnerDeletion: true
      controller: true
      kind: ReplicaSet
      name: adservice-f787c8dcd
      uid: f6fc8834-8337-438b-8685-1eea2565a128
    resourceVersion: "1145"
    selfLink: /api/v1/namespaces/default/pods/adservice-f787c8dcd-tb6x2
    uid: 9af3486d-dba4-4179-96bc-155f366f75bf
  spec:
    containers:
    - env:
      - name: PORT
        value: "9555"
      image: gcr.io/google-samples/microservices-demo/adservice:v0.2.2
      imagePullPolicy: IfNotPresent
      livenessProbe:
        exec:
          command:
          - /bin/grpc_health_probe
          - -addr=:9555
        failureThreshold: 3
        initialDelaySeconds: 20
        periodSeconds: 15
        successThreshold: 1
        timeoutSeconds: 1
      name: server
      ports:
      - containerPort: 9555
        protocol: TCP
      readinessProbe:
        exec:
          command:
          - /bin/grpc_health_probe
          - -addr=:9555
        failureThreshold: 3
        initialDelaySeconds: 20
        periodSeconds: 15
        successThreshold: 1
        timeoutSeconds: 1
      resources:
        limits:
          cpu: 300m
          memory: 300Mi
        requests:
          cpu: 200m
          memory: 180Mi
      terminationMessagePath: /dev/termination-log
      terminationMessagePolicy: File
      volumeMounts:
      - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
        name: default-token-f72m5
        readOnly: true
    dnsPolicy: ClusterFirst
    enableServiceLinks: true
    preemptionPolicy: PreemptLowerPriority
    priority: 0
    restartPolicy: Always
    schedulerName: default-scheduler
    securityContext: {}
    serviceAccount: default
    serviceAccountName: default
    terminationGracePeriodSeconds: 5
    tolerations:
    - effect: NoExecute
      key: node.kubernetes.io/not-ready
      operator: Exists
      tolerationSeconds: 300
    - effect: NoExecute
      key: node.kubernetes.io/unreachable
      operator: Exists
      tolerationSeconds: 300
    volumes:
    - name: default-token-f72m5
      secret:
        defaultMode: 420
        secretName: default-token-f72m5
  status:
    conditions:
    - lastProbeTime: null
      lastTransitionTime: "2021-04-27T10:13:58Z"
      message: '0/2 nodes are available: 2 Insufficient cpu.'
      reason: Unschedulable
      status: "False"
      type: PodScheduled
    phase: Pending
    qosClass: Burstable
- apiVersion: v1
  kind: Pod
  metadata:
    creationTimestamp: "2021-04-27T10:13:57Z"
    generateName: cartservice-67b89ffc69-
    labels:
      app: cartservice
      pod-template-hash: 67b89ffc69
    name: cartservice-67b89ffc69-s5qp8
    namespace: default
    managedFields: []
    ownerReferences:
    - apiVersion: apps/v1
      blockOwnerDeletion: true
      controller: true
      kind: ReplicaSet
      name: cartservice-67b89ffc69
      uid: 7ff41755-d0ef-4fbb-9e1a-7f56149e33e2
    resourceVersion: "1642976"
    selfLink: /api/v1/namespaces/default/pods/cartservice-67b89ffc69-s5qp8
    uid: 00c2de16-d488-445f-aaf7-0f88a6dccdff
  spec:
    containers:
    - env:
      - name: REDIS_ADDR
        value: redis-cart:6379
      image: gcr.io/google-samples/microservices-demo/cartservice:v0.2.2
      imagePullPolicy: IfNotPresent
      livenessProbe:
        exec:
          command:
          - /bin/grpc_health_probe
          - -addr=:7070
          - -rpc-timeout=5s
        failureThreshold: 3
        initialDelaySeconds: 15
        periodSeconds: 10
        successThreshold: 1
        timeoutSeconds: 1
      name: server
      ports:
      - containerPort: 7070
        protocol: TCP
      readinessProbe:
        exec:
          command:
          - /bin/grpc_health_probe
          - -addr=:7070
          - -rpc-timeout=5s
        failureThreshold: 3
        initialDelaySeconds: 15
        periodSeconds: 10
        successThreshold: 1
        timeoutSeconds: 1
      resources:
        limits:
          cpu: 300m
          memory: 128Mi
        requests:
          cpu: 200m
          memory: 64Mi
      terminationMessagePath: /dev/termination-log
      terminationMessagePolicy: File
      volumeMounts:
      - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
        name: default-token-f72m5
        readOnly: true
    dnsPolicy: ClusterFirst
    enableServiceLinks: true
    nodeName: gke-hello-hipster-default-pool-9e6f6ffb-q16l
    preemptionPolicy: PreemptLowerPriority
    priority: 0
    restartPolicy: Always
    schedulerName: default-scheduler
    securityContext: {}
    serviceAccount: default
    serviceAccountName: default
    terminationGracePeriodSeconds: 5
    tolerations:
    - effect: NoExecute
      key: node.kubernetes.io/not-ready
      operator: Exists
      tolerationSeconds: 300
    - effect: NoExecute
      key: node.kubernetes.io/unreachable
      operator: Exists
      tolerationSeconds: 300
    volumes:
    - name: default-token-f72m5
      secret:
        defaultMode: 420
        secretName: default-token-f72m5
  status:
    conditions:
    - lastProbeTime: null
      lastTransitionTime: "2021-04-27T10:13:57Z"
      status: "True"
      type: Initialized
    - lastProbeTime: null
      lastTransitionTime: "2021-04-27T10:13:57Z"
      message: 'containers with unready status: [server]'
      reason: ContainersNotReady
      status: "False"
      type: Ready
    - lastProbeTime: null
      lastTransitionTime: "2021-04-27T10:13:57Z"
      message: 'containers with unready status: [server]'
      reason: ContainersNotReady
      status: "False"
      type: ContainersReady
    - lastProbeTime: null
      lastTransitionTime: "2021-04-27T10:13:57Z"
      status: "True"
      type: PodScheduled
    containerStatuses:
    - containerID: containerd://2bdff44968a7cc6a3c98cafab883a7e4d5e599b7825e6c0f2ad9491806b9c11a
      image: gcr.io/google-samples/microservices-demo/cartservice:v0.2.2
      imageID: gcr.io/google-samples/microservices-demo/cartservice@sha256:107612e1ddb4a6134441377a048f6b6522916fd9c0dc474b0dad5ae77e02c2d6
      lastState:
        terminated:
          containerID: containerd://2bdff44968a7cc6a3c98cafab883a7e4d5e599b7825e6c0f2ad9491806b9c11a
          exitCode: 139
          finishedAt: "2021-04-30T16:21:27Z"
          reason: Error
          startedAt: "2021-04-30T16:21:18Z"
      name: server
      ready: false
      restartCount: 896
      started: false
      state:
        waiting:
          message: back-off 5m0s restarting failed container=server pod=cartservice-67b89ffc69-s5qp8_default(00c2de16-d488-445f-aaf7-0f88a6dccdff)
          reason: CrashLoopBackOff
    hostIP: 10.132.0.3
    phase: Running
    podIP: 10.24.1.9
    podIPs:
    - ip: 10.24.1.9
    qosClass: Burstable
    startTime: "2021-04-27T10:13:57Z"
- apiVersion: v1
  kind: Pod
  metadata:
    creationTimestamp: "2021-04-27T10:14:02Z"
    generateName: currencyservice-68887d98fd-
    labels:
      app: currencyservice
      pod-template-hash: 68887d98fd
    name: currencyservice-68887d98fd-gc9cn
    namespace: default
    managedFields: []
    ownerReferences:
    - apiVersion: apps/v1
      blockOwnerDeletion: true
      controller: true
      kind: ReplicaSet
      name: currencyservice-68887d98fd
      uid: 1c58bffc-8789-40a9-8342-4db390ca3389
    resourceVersion: "1268"
    selfLink: /api/v1/namespaces/default/pods/currencyservice-68887d98fd-gc9cn
    uid: 7c07c48b-55d7-44a5-8235-730ef9057471
  spec:
    containers:
    - env:
      - name: PORT
        value: "7000"
      image: gcr.io/google-samples/microservices-demo/currencyservice:v0.2.2
      imagePullPolicy: IfNotPresent
      livenessProbe:
        exec:
          command:
          - /bin/grpc_health_probe
          - -addr=:7000
        failureThreshold: 3
        periodSeconds: 10
        successThreshold: 1
        timeoutSeconds: 1
      name: server
      ports:
      - containerPort: 7000
        name: grpc
        protocol: TCP
      readinessProbe:
        exec:
          command:
          - /bin/grpc_health_probe
          - -addr=:7000
        failureThreshold: 3
        periodSeconds: 10
        successThreshold: 1
        timeoutSeconds: 1
      resources:
        limits:
          cpu: 200m
          memory: 128Mi
        requests:
          cpu: 100m
          memory: 64Mi
      terminationMessagePath: /dev/termination-log
      terminationMessagePolicy: File
      volumeMounts:
      - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
        name: default-token-f72m5
        readOnly: true
    dnsPolicy: ClusterFirst
    enableServiceLinks: true
    preemptionPolicy: PreemptLowerPriority
    priority: 0
    restartPolicy: Always
    schedulerName: default-scheduler
    securityContext: {}
    serviceAccount: default
    serviceAccountName: default
    terminationGracePeriodSeconds: 5
    tolerations:
    - effect: NoExecute
      key: node.kubernetes.io/not-ready
      operator: Exists
      tolerationSeconds: 300
    - effect: NoExecute
      key: node.kubernetes.io/unreachable
      operator: Exists
      tolerationSeconds: 300
    volumes:
    - name: default-token-f72m5
      secret:
        defaultMode: 420
        secretName: default-token-f72m5
  status:
    conditions:
    - lastProbeTime: null
      lastTransitionTime: "2021-04-27T10:14:02Z"
      message: '0/2 nodes are available: 2 Insufficient cpu.'
      reason: Unschedulable
      status: "False"
      type: PodScheduled
    phase: Pending
    qosClass: Burstable
- apiVersion: v1
  kind: Pod
  metadata:
    creationTimestamp: "2021-04-27T10:13:56Z"
    generateName: emailservice-5f8fc7dbb4-
    labels:
      app: emailservice
      pod-template-hash: 5f8fc7dbb4
    name: emailservice-5f8fc7dbb4-5lqdb
    namespace: default
    managedFields: []
    ownerReferences:
    - apiVersion: apps/v1
      blockOwnerDeletion: true
      controller: true
      kind: ReplicaSet
      name: emailservice-5f8fc7dbb4
      uid: 3b13016e-0661-4dc8-a542-6c017997d98b
    resourceVersion: "2623"
    selfLink: /api/v1/namespaces/default/pods/emailservice-5f8fc7dbb4-5lqdb
    uid: 100dab1a-e274-4e49-b808-3d97f4ab625e
  spec:
    containers:
    - env:
      - name: PORT
        value: "8080"
      - name: DISABLE_PROFILER
        value: "1"
      image: gcr.io/google-samples/microservices-demo/emailservice:v0.2.2
      imagePullPolicy: IfNotPresent
      livenessProbe:
        exec:
          command:
          - /bin/grpc_health_probe
          - -addr=:8080
        failureThreshold: 3
        periodSeconds: 5
        successThreshold: 1
        timeoutSeconds: 1
      name: server
      ports:
      - containerPort: 8080
        protocol: TCP
      readinessProbe:
        exec:
          command:
          - /bin/grpc_health_probe
          - -addr=:8080
        failureThreshold: 3
        periodSeconds: 5
        successThreshold: 1
        timeoutSeconds: 1
      resources:
        limits:
          cpu: 200m
          memory: 128Mi
        requests:
          cpu: 100m
          memory: 64Mi
      terminationMessagePath: /dev/termination-log
      terminationMessagePolicy: File
      volumeMounts:
      - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
        name: default-token-f72m5
        readOnly: true
    dnsPolicy: ClusterFirst
    enableServiceLinks: true
    nodeName: gke-hello-hipster-default-pool-9e6f6ffb-xzbc
    preemptionPolicy: PreemptLowerPriority
    priority: 0
    restartPolicy: Always
    schedulerName: default-scheduler
    securityContext: {}
    serviceAccount: default
    serviceAccountName: default
    terminationGracePeriodSeconds: 5
    tolerations:
    - effect: NoExecute
      key: node.kubernetes.io/not-ready
      operator: Exists
      tolerationSeconds: 300
    - effect: NoExecute
      key: node.kubernetes.io/unreachable
      operator: Exists
      tolerationSeconds: 300
    volumes:
    - name: default-token-f72m5
      secret:
        defaultMode: 420
        secretName: default-token-f72m5
  status:
    conditions:
    - lastProbeTime: null
      lastTransitionTime: "2021-04-27T10:13:56Z"
      status: "True"
      type: Initialized
    - lastProbeTime: null
      lastTransitionTime: "2021-04-27T10:15:18Z"
      status: "True"
      type: Ready
    - lastProbeTime: null
      lastTransitionTime: "2021-04-27T10:15:18Z"
      status: "True"
      type: ContainersReady
    - lastProbeTime: null
      lastTransitionTime: "2021-04-27T10:13:56Z"
      status: "True"
      type: PodScheduled
    containerStatuses:
    - containerID: containerd://bc783b7c6d78cdfd6a7454b693e57cdbc59cc43c23b2391f8bcacca3eaca64ed
      image: gcr.io/google-samples/microservices-demo/emailservice:v0.2.2
      imageID: gcr.io/google-samples/microservices-demo/emailservice@sha256:96aa2544934f80c81b88aef5f9bb586a6b1f318fd16ef7b62040901dfb75ebf1
      lastState:
        terminated:
          containerID: containerd://6a40d818c5eabd280fc546a02d81e5f9842d58f883cd1ac764d1cdd88affbf1a
          exitCode: 1
          finishedAt: "2021-04-27T10:14:47Z"
          reason: Error
          startedAt: "2021-04-27T10:14:44Z"
      name: server
      ready: true
      restartCount: 3
      started: true
      state:
        running:
          startedAt: "2021-04-27T10:15:15Z"
    hostIP: 10.132.0.2
    phase: Running
    podIP: 10.24.0.3
    podIPs:
    - ip: 10.24.0.3
    qosClass: Burstable
    startTime: "2021-04-27T10:13:56Z"
- apiVersion: v1
  kind: Pod
  metadata:
    annotations:
      sidecar.istio.io/rewriteAppHTTPProbers: "true"
    creationTimestamp: "2021-04-27T10:14:48Z"
    generateName: frontend-5c4745dfdb-
    labels:
      app: frontend
      pod-template-hash: 5c4745dfdb
    name: frontend-5c4745dfdb-6k8wf
    namespace: default
    managedFields: []
    ownerReferences:
    - apiVersion: apps/v1
      blockOwnerDeletion: true
      controller: true
      kind: ReplicaSet
      name: frontend-5c4745dfdb
      uid: 0177c475-1b94-424a-bdee-a2f56b071c19
    resourceVersion: "2362"
    selfLink: /api/v1/namespaces/default/pods/frontend-5c4745dfdb-6k8wf
    uid: 7f6517f6-e0ec-486b-8971-c3a71075f913
  spec:
    containers:
    - env:
      - name: PORT
        value: "8080"
      - name: PRODUCT_CATALOG_SERVICE_ADDR
        value: productcatalogservice:3550
      - name: CURRENCY_SERVICE_ADDR
        value: currencyservice:7000
      - name: CART_SERVICE_ADDR
        value: cartservice:7070
      - name: RECOMMENDATION_SERVICE_ADDR
        value: recommendationservice:8080
      - name: SHIPPING_SERVICE_ADDR
        value: shippingservice:50051
      - name: CHECKOUT_SERVICE_ADDR
        value: checkoutservice:5050
      - name: AD_SERVICE_ADDR
        value: adservice:9555
      - name: ENV_PLATFORM
        value: gcp
      image: gcr.io/google-samples/microservices-demo/frontend:v0.2.2
      imagePullPolicy: IfNotPresent
      livenessProbe:
        failureThreshold: 3
        httpGet:
          httpHeaders:
          - name: Cookie
            value: shop_session-id=x-liveness-probe
          path: /_healthz
          port: 8080
          scheme: HTTP
        initialDelaySeconds: 10
        periodSeconds: 10
        successThreshold: 1
        timeoutSeconds: 1
      name: server
      ports:
      - containerPort: 8080
        protocol: TCP
      readinessProbe:
        failureThreshold: 3
        httpGet:
          httpHeaders:
          - name: Cookie
            value: shop_session-id=x-readiness-probe
          path: /_healthz
          port: 8080
          scheme: HTTP
        initialDelaySeconds: 10
        periodSeconds: 10
        successThreshold: 1
        timeoutSeconds: 1
      resources:
        limits:
          cpu: 200m
          memory: 128Mi
        requests:
          cpu: 100m
          memory: 64Mi
      terminationMessagePath: /dev/termination-log
      terminationMessagePolicy: File
      volumeMounts:
      - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
        name: default-token-f72m5
        readOnly: true
    dnsPolicy: ClusterFirst
    enableServiceLinks: true
    nodeName: gke-hello-hipster-default-pool-9e6f6ffb-q16l
    preemptionPolicy: PreemptLowerPriority
    priority: 0
    restartPolicy: Always
    schedulerName: default-scheduler
    securityContext: {}
    serviceAccount: default
    serviceAccountName: default
    terminationGracePeriodSeconds: 30
    tolerations:
    - effect: NoExecute
      key: node.kubernetes.io/not-ready
      operator: Exists
      tolerationSeconds: 300
    - effect: NoExecute
      key: node.kubernetes.io/unreachable
      operator: Exists
      tolerationSeconds: 300
    volumes:
    - name: default-token-f72m5
      secret:
        defaultMode: 420
        secretName: default-token-f72m5
  status:
    message: 'Pod Node didn''t have enough resource: cpu, requested: 100, used: 931,
      capacity: 940'
    phase: Failed
    reason: OutOfcpu
    startTime: "2021-04-27T10:14:48Z"
- apiVersion: v1
  kind: Pod
  metadata:
    annotations:
      sidecar.istio.io/rewriteAppHTTPProbers: "true"
    creationTimestamp: "2021-04-27T10:13:57Z"
    generateName: frontend-5c4745dfdb-
    labels:
      app: frontend
      pod-template-hash: 5c4745dfdb
    name: frontend-5c4745dfdb-qz7fg
    namespace: default
    managedFields: []
    ownerReferences:
    - apiVersion: apps/v1
      blockOwnerDeletion: true
      controller: true
      kind: ReplicaSet
      name: frontend-5c4745dfdb
      uid: 0177c475-1b94-424a-bdee-a2f56b071c19
    resourceVersion: "2154"
    selfLink: /api/v1/namespaces/default/pods/frontend-5c4745dfdb-qz7fg
    uid: 52a730ab-ebf4-44d0-a711-514df8fb4dbb
  spec:
    containers:
    - env:
      - name: PORT
        value: "8080"
      - name: PRODUCT_CATALOG_SERVICE_ADDR
        value: productcatalogservice:3550
      - name: CURRENCY_SERVICE_ADDR
        value: currencyservice:7000
      - name: CART_SERVICE_ADDR
        value: cartservice:7070
      - name: RECOMMENDATION_SERVICE_ADDR
        value: recommendationservice:8080
      - name: SHIPPING_SERVICE_ADDR
        value: shippingservice:50051
      - name: CHECKOUT_SERVICE_ADDR
        value: checkoutservice:5050
      - name: AD_SERVICE_ADDR
        value: adservice:9555
      - name: ENV_PLATFORM
        value: gcp
      image: gcr.io/google-samples/microservices-demo/frontend:v0.2.2
      imagePullPolicy: IfNotPresent
      name: server
      ports:
      - containerPort: 8080
        protocol: HTTP
      readinessProbe:
        failureThreshold: 3
        httpGet:
          httpHeaders:
          - name: Cookie
            value: shop_session-id=x-readiness-probe
          path: /_healthz
          port: 8080
          scheme: HTTP
        initialDelaySeconds: 10
        periodSeconds: 10
        successThreshold: 1
        timeoutSeconds: 1
      resources:
        limits:
          cpu: 200m
          memory: 128Mi
        requests:
          cpu: 100m
          memory: 64Mi
      terminationMessagePath: /dev/termination-log
      terminationMessagePolicy: File
      volumeMounts:
      - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
        name: default-token-f72m5
        readOnly: true
    dnsPolicy: ClusterFirst
    enableServiceLinks: true
    nodeName: gke-hello-hipster-default-pool-9e6f6ffb-q16l
    preemptionPolicy: PreemptLowerPriority
    priority: 0
    restartPolicy: Always
    schedulerName: default-scheduler
    securityContext: {}
    serviceAccount: default
    serviceAccountName: default
    terminationGracePeriodSeconds: 30
    tolerations:
    - effect: NoExecute
      key: node.kubernetes.io/not-ready
      operator: Exists
      tolerationSeconds: 300
    - effect: NoExecute
      key: node.kubernetes.io/unreachable
      operator: Exists
      tolerationSeconds: 300
    volumes:
    - name: default-token-f72m5
      secret:
        defaultMode: 420
        secretName: default-token-f72m5
  status:
    message: Preempted in order to admit critical pod
    phase: Failed
    reason: Preempting
    startTime: "2021-04-27T10:13:57Z"
- apiVersion: v1
  kind: Pod
  metadata:
    annotations:
      sidecar.istio.io/rewriteAppHTTPProbers: "true"
    creationTimestamp: "2021-04-27T10:14:48Z"
    generateName: frontend-5c4745dfdb-
    labels:
      app: frontend
      pod-template-hash: 5c4745dfdb
    name: frontend-5c4745dfdb-6k8wf
    namespace: default
    managedFields: []
    ownerReferences:
    - apiVersion: apps/v1
      blockOwnerDeletion: true
      controller: true
      kind: ReplicaSet
      name: frontend-5c4745dfdb
      uid: 0177c475-1b94-424a-bdee-a2f56b071c19
    resourceVersion: "2362"
    selfLink: /api/v1/namespaces/default/pods/frontend-5c4745dfdb-6k8wf
    uid: 7f6517f6-e0ec-486b-8971-c3a71075f913
  spec:
    containers:
    - env:
      - name: PORT
        value: "8080"
      - name: PRODUCT_CATALOG_SERVICE_ADDR
        value: productcatalogservice:3550
      - name: CURRENCY_SERVICE_ADDR
        value: currencyservice:7000
      - name: CART_SERVICE_ADDR
        value: cartservice:7070
      - name: RECOMMENDATION_SERVICE_ADDR
        value: recommendationservice:8080
      - name: SHIPPING_SERVICE_ADDR
        value: shippingservice:50051
      - name: CHECKOUT_SERVICE_ADDR
        value: checkoutservice:5050
      - name: AD_SERVICE_ADDR
        value: adservice:9555
      - name: ENV_PLATFORM
        value: gcp
      image: gcr.io/google-samples/microservices-demo/frontend:v0.2.2
      imagePullPolicy: IfNotPresent
      livenessProbe:
        failureThreshold: 3
        httpGet:
          httpHeaders:
          - name: Cookie
            value: shop_session-id=x-liveness-probe
          path: /_healthz
          port: 8080
          scheme: HTTP
        initialDelaySeconds: 10
        periodSeconds: 10
        successThreshold: 1
        timeoutSeconds: 1
      name: server
      ports:
      - containerPort: 8080
        protocol: TCP
      - containerPort: 8081
        protocol: UDP
      - containerPort: 8082
        name: Foo
        protocol: UDP
      - containerPort: 8083
      readinessProbe:
        failureThreshold: 3
        httpGet:
          httpHeaders:
          - name: Cookie
            value: shop_session-id=x-readiness-probe
          path: /_healthz
          port: 8080
          scheme: HTTP
        initialDelaySeconds: 10
        periodSeconds: 10
        successThreshold: 1
        timeoutSeconds: 1
      resources:
        limits:
          cpu: 200m
          memory: 128Mi
        requests:
          cpu: 100m
          memory: 64Mi
      terminationMessagePath: /dev/termination-log
      terminationMessagePolicy: File
      volumeMounts:
      - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
        name: default-token-f72m5
        readOnly: true
    dnsPolicy: ClusterFirst
    enableServiceLinks: true
    nodeName: gke-hello-hipster-default-pool-9e6f6ffb-q16l
    preemptionPolicy: PreemptLowerPriority
    priority: 0
    restartPolicy: Always
    schedulerName: default-scheduler
    securityContext: {}
    serviceAccount: default
    serviceAccountName: default
    terminationGracePeriodSeconds: 30
    tolerations:
    - effect: NoExecute
      key: node.kubernetes.io/not-ready
      operator: Exists
      tolerationSeconds: 300
    - effect: NoExecute
      key: node.kubernetes.io/unreachable
      operator: Exists
      tolerationSeconds: 300
    volumes:
    - name: default-token-f72m5
      secret:
        defaultMode: 420
        secretName: default-token-f72m5
  status:
    message: 'Pod Node didn''t have enough resource: cpu, requested: 100, used: 931,
      capacity: 940'
    phase: Failed
    startTime: "2021-04-27T10:14:48Z"
- apiVersion: v1
  kind: Pod
  metadata:
    annotations:
      sidecar.istio.io/rewriteAppHTTPProbers: "true"
    creationTimestamp: "2021-04-27T10:13:57Z"
    generateName: loadgenerator-86f46dcb88-
    labels:
      app: loadgenerator
      pod-template-hash: 86f46dcb88
    name: loadgenerator-86f46dcb88-62vzw
    namespace: default
    managedFields: []
    ownerReferences:
    - apiVersion: apps/v1
      blockOwnerDeletion: true
      controller: true
      kind: ReplicaSet
      name: loadgenerator-86f46dcb88
      uid: deaac054-36ad-470f-ad46-77791cc1f5c2
    resourceVersion: "1076"
    selfLink: /api/v1/namespaces/default/pods/loadgenerator-86f46dcb88-62vzw
    uid: 4de0a258-488c-48ec-89c6-9c3294260aa9
  spec:
    containers:
    - env:
      - name: FRONTEND_ADDR
        value: frontend:80
      - name: USERS
        value: "10"
      image: gcr.io/google-samples/microservices-demo/loadgenerator:v0.2.2
      imagePullPolicy: IfNotPresent
      name: main
      resources:
        limits:
          cpu: 500m
          memory: 512Mi
        requests:
          cpu: 300m
          memory: 256Mi
      terminationMessagePath: /dev/termination-log
      terminationMessagePolicy: File
      volumeMounts:
      - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
        name: default-token-f72m5
        readOnly: true
    dnsPolicy: ClusterFirst
    enableServiceLinks: true
    preemptionPolicy: PreemptLowerPriority
    priority: 0
    restartPolicy: Always
    schedulerName: default-scheduler
    securityContext: {}
    serviceAccount: default
    serviceAccountName: default
    terminationGracePeriodSeconds: 5
    tolerations:
    - effect: NoExecute
      key: node.kubernetes.io/not-ready
      operator: Exists
      tolerationSeconds: 300
    - effect: NoExecute
      key: node.kubernetes.io/unreachable
      operator: Exists
      tolerationSeconds: 300
    volumes:
    - name: default-token-f72m5
      secret:
        defaultMode: 420
        secretName: default-token-f72m5
  status:
    conditions:
    - lastProbeTime: null
      lastTransitionTime: "2021-04-27T10:13:57Z"
      message: '0/2 nodes are available: 2 Insufficient cpu.'
      reason: Unschedulable
      status: "False"
      type: PodScheduled
    phase: Pending
    qosClass: Burstable
- apiVersion: v1
  kind: Pod
  metadata:
    creationTimestamp: "2021-04-27T10:13:57Z"
    generateName: paymentservice-6658569876-
    labels:
      app: paymentservice
      pod-template-hash: "6658569876"
    name: paymentservice-6658569876-d6r72
    namespace: default
    managedFields: []
    ownerReferences:
    - apiVersion: apps/v1
      blockOwnerDeletion: true
      controller: true
      kind: ReplicaSet
      name: paymentservice-6658569876
      uid: 4887b6a9-cd7b-4246-9547-b80766f43c06
    resourceVersion: "1921"
    selfLink: /api/v1/namespaces/default/pods/paymentservice-6658569876-d6r72
    uid: 863a2bdc-c47b-43ab-abe5-3c8ec7c9ec7a
  spec:
    containers:
    - env:
      - name: PORT
        value: "50051"
      image: gcr.io/google-samples/microservices-demo/paymentservice:v0.2.2
      imagePullPolicy: IfNotPresent
      livenessProbe:
        exec:
          command:
          - /bin/grpc_health_probe
          - -addr=:50051
        failureThreshold: 3
        periodSeconds: 10
        successThreshold: 1
        timeoutSeconds: 1
      name: server
      ports:
      - containerPort: 50051
        protocol: TCP
      readinessProbe:
        exec:
          command:
          - /bin/grpc_health_probe
          - -addr=:50051
        failureThreshold: 3
        periodSeconds: 10
        successThreshold: 1
        timeoutSeconds: 1
      resources:
        limits:
          cpu: 200m
          memory: 128Mi
        requests:
          cpu: 100m
          memory: 64Mi
      terminationMessagePath: /dev/termination-log
      terminationMessagePolicy: File
      volumeMounts:
      - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
        name: default-token-f72m5
        readOnly: true
    dnsPolicy: ClusterFirst
    enableServiceLinks: true
    nodeName: gke-hello-hipster-default-pool-9e6f6ffb-q16l
    preemptionPolicy: PreemptLowerPriority
    priority: 0
    restartPolicy: Always
    schedulerName: default-scheduler
    securityContext: {}
    serviceAccount: default
    serviceAccountName: default
    terminationGracePeriodSeconds: 5
    tolerations:
    - effect: NoExecute
      key: node.kubernetes.io/not-ready
      operator: Exists
      tolerationSeconds: 300
    - effect: NoExecute
      key: node.kubernetes.io/unreachable
      operator: Exists
      tolerationSeconds: 300
    volumes:
    - name: default-token-f72m5
      secret:
        defaultMode: 420
        secretName: default-token-f72m5
  status:
    conditions:
    - lastProbeTime: null
      lastTransitionTime: "2021-04-27T10:13:57Z"
      status: "True"
      type: Initialized
    - lastProbeTime: null
      lastTransitionTime: "2021-04-27T10:14:32Z"
      status: "True"
      type: Ready
    - lastProbeTime: null
      lastTransitionTime: "2021-04-27T10:14:32Z"
      status: "True"
      type: ContainersReady
    - lastProbeTime: null
      lastTransitionTime: "2021-04-27T10:13:57Z"
      status: "True"
      type: PodScheduled
    containerStatuses:
    - containerID: containerd://45bb0b0668694a4132b32ba5410ad7d10c9db3754ee0fd6a4cbd15bf889c5942
      image: gcr.io/google-samples/microservices-demo/paymentservice:v0.2.2
      imageID: gcr.io/google-samples/microservices-demo/paymentservice@sha256:3ba32e07834811542dd05a39cb1942b35f762834bddfd6f4daa221c1ef9f495f
      lastState: {}
      name: server
      ready: true
      restartCount: 0
      started: true
      state:
        running:
          startedAt: "2021-04-27T10:14:24Z"
    hostIP: 10.132.0.3
    phase: Running
    podIP: 10.24.1.8
    podIPs:
    - ip: 10.24.1.8
    qosClass: Burstable
    startTime: "2021-04-27T10:13:57Z"
- apiVersion: v1
  kind: Pod
  metadata:
    creationTimestamp: "2021-04-27T10:13:57Z"
    generateName: recommendationservice-78965f984b-
    labels:
      app: recommendationservice
      pod-template-hash: 78965f984b
    name: recommendationservice-78965f984b-z9x79
    namespace: default
    managedFields: []
    ownerReferences:
    - apiVersion: apps/v1
      blockOwnerDeletion: true
      controller: true
      kind: ReplicaSet
      name: recommendationservice-78965f984b
      uid: e8c68c70-7d17-45cd-88e4-80f61b91d76e
    resourceVersion: "2413"
    selfLink: /api/v1/namespaces/default/pods/recommendationservice-78965f984b-z9x79
    uid: 9227d0d7-8831-4e50-8df1-38663475635d
  spec:
    containers:
    - env:
      - name: PORT
        value: "8080"
      - name: PRODUCT_CATALOG_SERVICE_ADDR
        value: productcatalogservice:3550
      image: gcr.io/google-samples/microservices-demo/recommendationservice:v0.2.2
      imagePullPolicy: IfNotPresent
      livenessProbe:
        exec:
          command:
          - /bin/grpc_health_probe
          - -addr=:8080
        failureThreshold: 3
        periodSeconds: 5
        successThreshold: 1
        timeoutSeconds: 1
      name: server
      ports:
      - containerPort: 8080
        protocol: TCP
      readinessProbe:
        exec:
          command:
          - /bin/grpc_health_probe
          - -addr=:8080
        failureThreshold: 3
        periodSeconds: 5
        successThreshold: 1
        timeoutSeconds: 1
      resources:
        limits:
          cpu: 200m
          memory: 450Mi
        requests:
          cpu: 100m
          memory: 220Mi
      terminationMessagePath: /dev/termination-log
      terminationMessagePolicy: File
      volumeMounts:
      - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
        name: default-token-f72m5
        readOnly: true
    dnsPolicy: ClusterFirst
    enableServiceLinks: true
    nodeName: gke-hello-hipster-default-pool-9e6f6ffb-xzbc
    preemptionPolicy: PreemptLowerPriority
    priority: 0
    restartPolicy: Always
    schedulerName: default-scheduler
    securityContext: {}
    serviceAccount: default
    serviceAccountName: default
    terminationGracePeriodSeconds: 5
    tolerations:
    - effect: NoExecute
      key: node.kubernetes.io/not-ready
      operator: Exists
      tolerationSeconds: 300
    - effect: NoExecute
      key: node.kubernetes.io/unreachable
      operator: Exists
      tolerationSeconds: 300
    volumes:
    - name: default-token-f72m5
      secret:
        defaultMode: 420
        secretName: default-token-f72m5
  status:
    conditions:
    - lastProbeTime: null
      lastTransitionTime: "2021-04-27T10:13:57Z"
      status: "True"
      type: Initialized
    - lastProbeTime: null
      lastTransitionTime: "2021-04-27T10:14:54Z"
      status: "True"
      type: Ready
    - lastProbeTime: null
      lastTransitionTime: "2021-04-27T10:14:54Z"
      status: "True"
      type: ContainersReady
    - lastProbeTime: null
      lastTransitionTime: "2021-04-27T10:13:57Z"
      status: "True"
      type: PodScheduled
    containerStatuses:
    - containerID: containerd://7fba65e81d6f41c82acb3fc2f31a309b25be2ca4be8da872edc9cd69decdcd5d
      image: gcr.io/google-samples/microservices-demo/recommendationservice:v0.2.2
      imageID: gcr.io/google-samples/microservices-demo/recommendationservice@sha256:ffc4bc50561db6137a2ae917155ad3568cc8a815a4b031b59a241993602bc285
      lastState:
        terminated:
          containerID: containerd://2c2ead0cb91d1a3bb312ddab0529d4928266843d048a3d770b32febbdaeea434
          exitCode: 137
          finishedAt: "2021-04-27T10:14:50Z"
          reason: Error
          startedAt: "2021-04-27T10:14:32Z"
      name: server
      ready: true
      restartCount: 1
      started: true
      state:
        running:
          startedAt: "2021-04-27T10:14:50Z"
    hostIP: 10.132.0.2
    phase: Running
    podIP: 10.24.0.7
    podIPs:
    - ip: 10.24.0.7
    qosClass: Burstable
    startTime: "2021-04-27T10:13:57Z"
- apiVersion: v1
  kind: Pod
  metadata:
    creationTimestamp: "2021-04-27T10:13:58Z"
    generateName: shippingservice-6998959488-
    labels:
      app: shippingservice
      pod-template-hash: "6998959488"
    name: shippingservice-6998959488-tvhph
    namespace: default
    managedFields: []
    ownerReferences:
    - apiVersion: apps/v1
      blockOwnerDeletion: true
      controller: true
      kind: ReplicaSet
      name: shippingservice-6998959488
      uid: eda69dc9-cfbf-4e08-828c-e85e414a0b60
    resourceVersion: "2096"
    selfLink: /api/v1/namespaces/default/pods/shippingservice-6998959488-tvhph
    uid: 348e01fa-8b6d-4e6a-a975-c6d53ccf4f29
  spec:
    containers:
    - env:
      - name: PORT
        value: "50051"
      image: gcr.io/google-samples/microservices-demo/shippingservice:v0.2.2
      imagePullPolicy: IfNotPresent
      livenessProbe:
        exec:
          command:
          - /bin/grpc_health_probe
          - -addr=:50051
        failureThreshold: 3
        periodSeconds: 10
        successThreshold: 1
        timeoutSeconds: 1
      name: server
      ports:
      - containerPort: 50051
        protocol: TCP
      readinessProbe:
        exec:
          command:
          - /bin/grpc_health_probe
          - -addr=:50051
        failureThreshold: 3
        periodSeconds: 5
        successThreshold: 1
        timeoutSeconds: 1
      resources:
        limits:
          cpu: 200m
          memory: 128Mi
        requests:
          cpu: 100m
          memory: 64Mi
      terminationMessagePath: /dev/termination-log
      terminationMessagePolicy: File
      volumeMounts:
      - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
        name: default-token-f72m5
        readOnly: true
    dnsPolicy: ClusterFirst
    enableServiceLinks: true
    nodeName: gke-hello-hipster-default-pool-9e6f6ffb-xzbc
    preemptionPolicy: PreemptLowerPriority
    priority: 0
    restartPolicy: Always
    schedulerName: default-scheduler
    securityContext: {}
    serviceAccount: default
    serviceAccountName: default
    terminationGracePeriodSeconds: 30
    tolerations:
    - effect: NoExecute
      key: node.kubernetes.io/not-ready
      operator: Exists
      tolerationSeconds: 300
    - effect: NoExecute
      key: node.kubernetes.io/unreachable
      operator: Exists
      tolerationSeconds: 300
    volumes:
    - name: default-token-f72m5
      secret:
        defaultMode: 420
        secretName: default-token-f72m5
  status:
    conditions:
    - lastProbeTime: null
      lastTransitionTime: "2021-04-27T10:13:58Z"
      status: "True"
      type: Initialized
    - lastProbeTime: null
      lastTransitionTime: "2021-04-27T10:14:38Z"
      status: "True"
      type: Ready
    - lastProbeTime: null
      lastTransitionTime: "2021-04-27T10:14:38Z"
      status: "True"
      type: ContainersReady
    - lastProbeTime: null
      lastTransitionTime: "2021-04-27T10:13:58Z"
      status: "True"
      type: PodScheduled
    containerStatuses:
    - containerID: containerd://f15d40e08156046cb19f1d65dbd7c3bc510928544aeb080d994c30e33f2161a5
      image: gcr.io/google-samples/microservices-demo/shippingservice:v0.2.2
      imageID: gcr.io/google-samples/microservices-demo/shippingservice@sha256:8aa2972493ad330cfae6948129a17013e5e01a7e8ab7198a5a8ce72226f4f913
      lastState: {}
      name: server
      ready: true
      restartCount: 0
      started: true
      state:
        running:
          startedAt: "2021-04-27T10:14:37Z"
    hostIP: 10.132.0.2
    phase: Running
    podIP: 10.24.0.9
    podIPs:
    - ip: 10.24.0.9
    qosClass: Burstable
    startTime: "2021-04-27T10:13:58Z"
- apiVersion: v1
  kind: Pod
  metadata:
    annotations:
      kubectl.kubernetes.io/last-applied-configuration: |
        {"apiVersion":"v1","kind":"Pod","metadata":{"annotations":{},"labels":{"purpose":"initContainers-demo"},"name":"pod-init-container","namespace":"default"},"spec":{"containers":[{"command":["echo","Hello main container"],"image":"busybox","name":"main-busybox"}],"initContainers":[{"command":["echo","I am init-conatiner"],"image":"busybox","name":"init-busybox1"},{"command":["sleep","30"],"image":"busybox","name":"init-busybox2"}],"restartPolicy":"Never"}}
    creationTimestamp: "2021-06-18T08:57:56Z"
    managedFields: []
    labels:
      purpose: initContainers-demo
    name: pod-init-container
    namespace: default
    resourceVersion: "178777"
    uid: ef6d1039-3d83-44dc-9a84-456205ecb757
  spec:
    containers:
    - command:
      - echo
      - Hello main container
      image: busybox
      imagePullPolicy: Always
      name: main-busybox
      resources: {}
      terminationMessagePath: /dev/termination-log
      terminationMessagePolicy: File
      volumeMounts:
      - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
        name: default-token-b7z5m
        readOnly: true
    dnsPolicy: ClusterFirst
    enableServiceLinks: true
    initContainers:
    - command:
      - echo
      - I am init-conatiner
      image: busybox
      imagePullPolicy: Always
      name: init-busybox1
      resources: {}
      terminationMessagePath: /dev/termination-log
      terminationMessagePolicy: File
      volumeMounts:
      - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
        name: default-token-b7z5m
        readOnly: true
    - command:
      - sleep
      - "30"
      image: busybox
      imagePullPolicy: Always
      name: init-busybox2
      resources: {}
      terminationMessagePath: /dev/termination-log
      terminationMessagePolicy: File
      volumeMounts:
      - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
        name: default-token-b7z5m
        readOnly: true
    nodeName: k3d-my-kdash-cluster-server-0
    preemptionPolicy: PreemptLowerPriority
    priority: 0
    restartPolicy: Never
    schedulerName: default-scheduler
    securityContext: {}
    serviceAccount: default
    serviceAccountName: default
    terminationGracePeriodSeconds: 30
    tolerations:
    - effect: NoExecute
      key: node.kubernetes.io/not-ready
      operator: Exists
      tolerationSeconds: 300
    - effect: NoExecute
      key: node.kubernetes.io/unreachable
      operator: Exists
      tolerationSeconds: 300
    volumes:
    - name: default-token-b7z5m
      secret:
        defaultMode: 420
        secretName: default-token-b7z5m
  status:
    conditions:
    - lastProbeTime: null
      lastTransitionTime: "2021-06-18T08:57:56Z"
      message: 'containers with incomplete status: [init-busybox2]'
      reason: ContainersNotInitialized
      status: "False"
      type: Initialized
    - lastProbeTime: null
      lastTransitionTime: "2021-06-18T08:57:56Z"
      message: 'containers with unready status: [main-busybox]'
      reason: ContainersNotReady
      status: "False"
      type: Ready
    - lastProbeTime: null
      lastTransitionTime: "2021-06-18T08:57:56Z"
      message: 'containers with unready status: [main-busybox]'
      reason: ContainersNotReady
      status: "False"
      type: ContainersReady
    - lastProbeTime: null
      lastTransitionTime: "2021-06-18T08:57:56Z"
      status: "True"
      type: PodScheduled
    containerStatuses:
    - image: busybox
      imageID: ""
      lastState: {}
      name: main-busybox
      ready: false
      restartCount: 0
      started: false
      state:
        waiting:
          reason: PodInitializing
    hostIP: 172.18.0.3
    initContainerStatuses:
    - containerID: containerd://a391f8d2b76c7fa71ad81f5ef610bdcf5cf3a27eabedafa291cdb485eaaac71a
      image: docker.io/library/busybox:latest
      imageID: docker.io/library/busybox@sha256:930490f97e5b921535c153e0e7110d251134cc4b72bbb8133c6a5065cc68580d
      lastState: {}
      name: init-busybox1
      ready: true
      restartCount: 0
      state:
        terminated:
          containerID: containerd://a391f8d2b76c7fa71ad81f5ef610bdcf5cf3a27eabedafa291cdb485eaaac71a
          exitCode: 0
          finishedAt: "2021-06-18T08:58:01Z"
          reason: Completed
          startedAt: "2021-06-18T08:58:01Z"
    - containerID: containerd://060df52ecee63c7c973b5ccc8384db6af66af166d694f45e370919d15f7d9efa
      image: docker.io/library/busybox:latest
      imageID: docker.io/library/busybox@sha256:930490f97e5b921535c153e0e7110d251134cc4b72bbb8133c6a5065cc68580d
      lastState: {}
      name: init-busybox2
      ready: false
      restartCount: 0
      state:
        running:
          startedAt: "2021-06-18T08:58:03Z"
    phase: Pending
    podIP: 10.42.0.20
    podIPs:
    - ip: 10.42.0.20
    qosClass: BestEffort
    startTime: "2021-06-18T08:57:56Z"
- apiVersion: v1
  kind: Pod
  metadata:
    annotations:
      kubectl.kubernetes.io/last-applied-configuration: |
        {"apiVersion":"v1","kind":"Pod","metadata":{"annotations":{},"labels":{"purpose":"initContainers-demo"},"name":"pod-init-container-2","namespace":"default"},"spec":{"containers":[{"command":["echo","Hello main container"],"image":"busybox","name":"main-busybox"}],"initContainers":[{"command":["echo","I am init-conatiner"],"image":"busybox","name":"init-busybox1"},{"command":["sleep","30"],"image":"busybox","name":"init-busybox2"}],"restartPolicy":"Never"}}
    creationTimestamp: "2021-06-18T09:26:11Z"
    managedFields: []
    labels:
      purpose: initContainers-demo
    name: pod-init-container-2
    namespace: default
    resourceVersion: "180004"
    uid: a93a4df6-e02e-4986-b8c8-6195e4d0de62
  spec:
    containers:
    - command:
      - echo
      - Hello main container
      image: busybox
      imagePullPolicy: Always
      name: main-busybox
      resources: {}
      terminationMessagePath: /dev/termination-log
      terminationMessagePolicy: File
      volumeMounts:
      - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
        name: default-token-b7z5m
        readOnly: true
    dnsPolicy: ClusterFirst
    enableServiceLinks: true
    initContainers:
    - command:
      - echo
      - I am init-conatiner
      image: busybox
      imagePullPolicy: Always
      name: init-busybox1
      resources: {}
      terminationMessagePath: /dev/termination-log
      terminationMessagePolicy: File
      volumeMounts:
      - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
        name: default-token-b7z5m
        readOnly: true
    - command:
      - sleep
      - "30"
      image: busybox
      imagePullPolicy: Always
      name: init-busybox2
      resources: {}
      terminationMessagePath: /dev/termination-log
      terminationMessagePolicy: File
      volumeMounts:
      - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
        name: default-token-b7z5m
        readOnly: true
    nodeName: k3d-my-kdash-cluster-server-0
    preemptionPolicy: PreemptLowerPriority
    priority: 0
    restartPolicy: Never
    schedulerName: default-scheduler
    securityContext: {}
    serviceAccount: default
    serviceAccountName: default
    terminationGracePeriodSeconds: 30
    tolerations:
    - effect: NoExecute
      key: node.kubernetes.io/not-ready
      operator: Exists
      tolerationSeconds: 300
    - effect: NoExecute
      key: node.kubernetes.io/unreachable
      operator: Exists
      tolerationSeconds: 300
    volumes:
    - name: default-token-b7z5m
      secret:
        defaultMode: 420
        secretName: default-token-b7z5m
  status:
    conditions:
    - lastProbeTime: null
      lastTransitionTime: "2021-06-18T09:26:45Z"
      reason: PodCompleted
      status: "True"
      type: Initialized
    - lastProbeTime: null
      lastTransitionTime: "2021-06-18T09:26:11Z"
      reason: PodCompleted
      status: "False"
      type: Ready
    - lastProbeTime: null
      lastTransitionTime: "2021-06-18T09:26:11Z"
      reason: PodCompleted
      status: "False"
      type: ContainersReady
    - lastProbeTime: null
      lastTransitionTime: "2021-06-18T09:26:11Z"
      status: "True"
      type: PodScheduled
    containerStatuses:
    - containerID: containerd://91d3b603162bdc401fbd8f379f2c88e8f579b58aba63af73f87b62161d04fc6e
      image: docker.io/library/busybox:latest
      imageID: docker.io/library/busybox@sha256:930490f97e5b921535c153e0e7110d251134cc4b72bbb8133c6a5065cc68580d
      lastState: {}
      name: main-busybox
      ready: false
      restartCount: 0
      started: false
      state:
        terminated:
          containerID: containerd://91d3b603162bdc401fbd8f379f2c88e8f579b58aba63af73f87b62161d04fc6e
          exitCode: 0
          finishedAt: "2021-06-18T09:26:46Z"
          reason: Completed
          startedAt: "2021-06-18T09:26:46Z"
    hostIP: 172.18.0.3
    initContainerStatuses:
    - containerID: containerd://21826ac45998a9d297bfdcc944dfc4f9e61c33b3866280c8bdf75e0cc01bdebd
      image: docker.io/library/busybox:latest
      imageID: docker.io/library/busybox@sha256:930490f97e5b921535c153e0e7110d251134cc4b72bbb8133c6a5065cc68580d
      lastState: {}
      name: init-busybox1
      ready: true
      restartCount: 0
      state:
        terminated:
          containerID: containerd://21826ac45998a9d297bfdcc944dfc4f9e61c33b3866280c8bdf75e0cc01bdebd
          exitCode: 0
          finishedAt: "2021-06-18T09:26:13Z"
          reason: Completed
          startedAt: "2021-06-18T09:26:13Z"
    - containerID: containerd://4815f0c7d0f250c77c7c1ada50e6bbc1f366a07553347c77e8ee53d620ad2d5c
      image: docker.io/library/busybox:latest
      imageID: docker.io/library/busybox@sha256:930490f97e5b921535c153e0e7110d251134cc4b72bbb8133c6a5065cc68580d
      lastState: {}
      name: init-busybox2
      ready: true
      restartCount: 0
      state:
        terminated:
          containerID: containerd://4815f0c7d0f250c77c7c1ada50e6bbc1f366a07553347c77e8ee53d620ad2d5c
          exitCode: 0
          finishedAt: "2021-06-18T09:26:45Z"
          reason: Completed
          startedAt: "2021-06-18T09:26:15Z"
    phase: Succeeded
    podIP: 10.42.0.21
    podIPs:
    - ip: 10.42.0.21
    qosClass: BestEffort
    startTime: "2021-06-18T09:26:11Z"
kind: List
metadata:
  resourceVersion: ""
  selfLink: ""