generated from layer5io/layer5-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathlist-all.yaml
14225 lines (14225 loc) · 435 KB
/
list-all.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
apiVersion: v1
items:
- apiVersion: v1
kind: Pod
metadata:
annotations:
prometheus.io/path: /metrics
prometheus.io/port: "9402"
prometheus.io/scrape: "true"
creationTimestamp: "2024-04-01T04:29:32Z"
generateName: cert-manager-6dc66985d4-
labels:
app: cert-manager
app.kubernetes.io/component: controller
app.kubernetes.io/instance: cert-manager
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: cert-manager
app.kubernetes.io/version: v1.14.4
helm.sh/chart: cert-manager-v1.14.4
pod-template-hash: 6dc66985d4
name: cert-manager-6dc66985d4-8t6l8
namespace: cert-manager
ownerReferences:
- apiVersion: apps/v1
blockOwnerDeletion: true
controller: true
kind: ReplicaSet
name: cert-manager-6dc66985d4
uid: fee7d62e-8d38-490c-a0b5-8fa8f5656674
resourceVersion: "46089022"
uid: 4e4f1aa9-a8d4-4c25-abda-3980fdba71ee
spec:
containers:
- args:
- --v=2
- --cluster-resource-namespace=$(POD_NAMESPACE)
- --leader-election-namespace=kube-system
- --acme-http01-solver-image=quay.io/jetstack/cert-manager-acmesolver:v1.14.4
- --max-concurrent-challenges=60
env:
- name: POD_NAMESPACE
valueFrom:
fieldRef:
apiVersion: v1
fieldPath: metadata.namespace
image: quay.io/jetstack/cert-manager-controller:v1.14.4
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 8
httpGet:
path: /livez
port: http-healthz
scheme: HTTP
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 15
name: cert-manager-controller
ports:
- containerPort: 9402
name: http-metrics
protocol: TCP
- containerPort: 9403
name: http-healthz
protocol: TCP
resources: {}
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /var/run/secrets/kubernetes.io/serviceaccount
name: kube-api-access-689d6
readOnly: true
dnsPolicy: ClusterFirst
enableServiceLinks: false
nodeName: c3-medium-x86-03-meshery
nodeSelector:
kubernetes.io/os: linux
preemptionPolicy: PreemptLowerPriority
priority: 0
restartPolicy: Always
schedulerName: default-scheduler
securityContext:
runAsNonRoot: true
seccompProfile:
type: RuntimeDefault
serviceAccount: cert-manager
serviceAccountName: cert-manager
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: kube-api-access-689d6
projected:
defaultMode: 420
sources:
- serviceAccountToken:
expirationSeconds: 3607
path: token
- configMap:
items:
- key: ca.crt
path: ca.crt
name: kube-root-ca.crt
- downwardAPI:
items:
- fieldRef:
apiVersion: v1
fieldPath: metadata.namespace
path: namespace
status:
conditions:
- lastProbeTime: null
lastTransitionTime: "2024-04-01T04:29:34Z"
status: "True"
type: PodReadyToStartContainers
- lastProbeTime: null
lastTransitionTime: "2024-04-01T04:29:32Z"
status: "True"
type: Initialized
- lastProbeTime: null
lastTransitionTime: "2024-04-01T04:29:34Z"
status: "True"
type: Ready
- lastProbeTime: null
lastTransitionTime: "2024-04-01T04:29:34Z"
status: "True"
type: ContainersReady
- lastProbeTime: null
lastTransitionTime: "2024-04-01T04:29:32Z"
status: "True"
type: PodScheduled
containerStatuses:
- containerID: containerd://6ff3f7117716e55827c182a8e23743a27703fcf9c0df6ff7921d9ef7ce506869
image: quay.io/jetstack/cert-manager-controller:v1.14.4
imageID: quay.io/jetstack/cert-manager-controller@sha256:5cffa969fd30ce6a760994d30e7cccb3626abc8015d813de52f8cfa9ff862de9
lastState: {}
name: cert-manager-controller
ready: true
restartCount: 0
started: true
state:
running:
startedAt: "2024-04-01T04:29:33Z"
hostIP: 139.178.83.85
hostIPs:
- ip: 139.178.83.85
phase: Running
podIP: 192.168.0.16
podIPs:
- ip: 192.168.0.16
qosClass: BestEffort
startTime: "2024-04-01T04:29:32Z"
- apiVersion: v1
kind: Pod
metadata:
creationTimestamp: "2024-04-01T04:29:32Z"
generateName: cert-manager-cainjector-c7d4dbdd9-
labels:
app: cainjector
app.kubernetes.io/component: cainjector
app.kubernetes.io/instance: cert-manager
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: cainjector
app.kubernetes.io/version: v1.14.4
helm.sh/chart: cert-manager-v1.14.4
pod-template-hash: c7d4dbdd9
name: cert-manager-cainjector-c7d4dbdd9-jlstt
namespace: cert-manager
ownerReferences:
- apiVersion: apps/v1
blockOwnerDeletion: true
controller: true
kind: ReplicaSet
name: cert-manager-cainjector-c7d4dbdd9
uid: 4ad5f4b4-6ddc-4bad-8208-418435b3b8d7
resourceVersion: "4476"
uid: b905aeb8-3633-4ca9-b350-df3a87cdd60e
spec:
containers:
- args:
- --v=2
- --leader-election-namespace=kube-system
env:
- name: POD_NAMESPACE
valueFrom:
fieldRef:
apiVersion: v1
fieldPath: metadata.namespace
image: quay.io/jetstack/cert-manager-cainjector:v1.14.4
imagePullPolicy: IfNotPresent
name: cert-manager-cainjector
resources: {}
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /var/run/secrets/kubernetes.io/serviceaccount
name: kube-api-access-sktmn
readOnly: true
dnsPolicy: ClusterFirst
enableServiceLinks: false
nodeName: c3-medium-x86-03-meshery
nodeSelector:
kubernetes.io/os: linux
preemptionPolicy: PreemptLowerPriority
priority: 0
restartPolicy: Always
schedulerName: default-scheduler
securityContext:
runAsNonRoot: true
seccompProfile:
type: RuntimeDefault
serviceAccount: cert-manager-cainjector
serviceAccountName: cert-manager-cainjector
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: kube-api-access-sktmn
projected:
defaultMode: 420
sources:
- serviceAccountToken:
expirationSeconds: 3607
path: token
- configMap:
items:
- key: ca.crt
path: ca.crt
name: kube-root-ca.crt
- downwardAPI:
items:
- fieldRef:
apiVersion: v1
fieldPath: metadata.namespace
path: namespace
status:
conditions:
- lastProbeTime: null
lastTransitionTime: "2024-04-01T04:29:34Z"
status: "True"
type: PodReadyToStartContainers
- lastProbeTime: null
lastTransitionTime: "2024-04-01T04:29:32Z"
status: "True"
type: Initialized
- lastProbeTime: null
lastTransitionTime: "2024-04-01T04:29:34Z"
status: "True"
type: Ready
- lastProbeTime: null
lastTransitionTime: "2024-04-01T04:29:34Z"
status: "True"
type: ContainersReady
- lastProbeTime: null
lastTransitionTime: "2024-04-01T04:29:32Z"
status: "True"
type: PodScheduled
containerStatuses:
- containerID: containerd://1c7b0a11d4c38a0fce9c3abf2b69358eae486bf383344a18b730db6bf5e135a4
image: quay.io/jetstack/cert-manager-cainjector:v1.14.4
imageID: quay.io/jetstack/cert-manager-cainjector@sha256:30286297e5b4b71a86759d297a8109c6a1649fdc68d28f618d87edf12a2da417
lastState: {}
name: cert-manager-cainjector
ready: true
restartCount: 0
started: true
state:
running:
startedAt: "2024-04-01T04:29:33Z"
hostIP: 139.178.83.85
hostIPs:
- ip: 139.178.83.85
phase: Running
podIP: 192.168.0.14
podIPs:
- ip: 192.168.0.14
qosClass: BestEffort
startTime: "2024-04-01T04:29:32Z"
- apiVersion: v1
kind: Pod
metadata:
creationTimestamp: "2024-04-01T04:29:32Z"
generateName: cert-manager-webhook-847d7676c9-
labels:
app: webhook
app.kubernetes.io/component: webhook
app.kubernetes.io/instance: cert-manager
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: webhook
app.kubernetes.io/version: v1.14.4
helm.sh/chart: cert-manager-v1.14.4
pod-template-hash: 847d7676c9
name: cert-manager-webhook-847d7676c9-89rtq
namespace: cert-manager
ownerReferences:
- apiVersion: apps/v1
blockOwnerDeletion: true
controller: true
kind: ReplicaSet
name: cert-manager-webhook-847d7676c9
uid: 9ca18977-52e3-474e-93e7-cbcaba9a13fa
resourceVersion: "47870864"
uid: 4b127dff-feeb-4962-81b2-27b87d2a1418
spec:
containers:
- args:
- --v=2
- --secure-port=10250
- --dynamic-serving-ca-secret-namespace=$(POD_NAMESPACE)
- --dynamic-serving-ca-secret-name=cert-manager-webhook-ca
- --dynamic-serving-dns-names=cert-manager-webhook
- --dynamic-serving-dns-names=cert-manager-webhook.$(POD_NAMESPACE)
- --dynamic-serving-dns-names=cert-manager-webhook.$(POD_NAMESPACE).svc
env:
- name: POD_NAMESPACE
valueFrom:
fieldRef:
apiVersion: v1
fieldPath: metadata.namespace
image: quay.io/jetstack/cert-manager-webhook:v1.14.4
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 3
httpGet:
path: /livez
port: 6080
scheme: HTTP
initialDelaySeconds: 60
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
name: cert-manager-webhook
ports:
- containerPort: 10250
name: https
protocol: TCP
- containerPort: 6080
name: healthcheck
protocol: TCP
readinessProbe:
failureThreshold: 3
httpGet:
path: /healthz
port: 6080
scheme: HTTP
initialDelaySeconds: 5
periodSeconds: 5
successThreshold: 1
timeoutSeconds: 1
resources: {}
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /var/run/secrets/kubernetes.io/serviceaccount
name: kube-api-access-9657m
readOnly: true
dnsPolicy: ClusterFirst
enableServiceLinks: false
nodeName: c3-medium-x86-03-meshery
nodeSelector:
kubernetes.io/os: linux
preemptionPolicy: PreemptLowerPriority
priority: 0
restartPolicy: Always
schedulerName: default-scheduler
securityContext:
runAsNonRoot: true
seccompProfile:
type: RuntimeDefault
serviceAccount: cert-manager-webhook
serviceAccountName: cert-manager-webhook
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: kube-api-access-9657m
projected:
defaultMode: 420
sources:
- serviceAccountToken:
expirationSeconds: 3607
path: token
- configMap:
items:
- key: ca.crt
path: ca.crt
name: kube-root-ca.crt
- downwardAPI:
items:
- fieldRef:
apiVersion: v1
fieldPath: metadata.namespace
path: namespace
status:
conditions:
- lastProbeTime: null
lastTransitionTime: "2024-04-01T04:29:34Z"
status: "True"
type: PodReadyToStartContainers
- lastProbeTime: null
lastTransitionTime: "2024-04-01T04:29:32Z"
status: "True"
type: Initialized
- lastProbeTime: null
lastTransitionTime: "2024-11-06T05:50:58Z"
status: "True"
type: Ready
- lastProbeTime: null
lastTransitionTime: "2024-11-06T05:50:58Z"
status: "True"
type: ContainersReady
- lastProbeTime: null
lastTransitionTime: "2024-04-01T04:29:32Z"
status: "True"
type: PodScheduled
containerStatuses:
- containerID: containerd://f60e25f3ca9dddc430ade42179a757868cf2264e52682a003fb2fd52df7b8efc
image: quay.io/jetstack/cert-manager-webhook:v1.14.4
imageID: quay.io/jetstack/cert-manager-webhook@sha256:11f7e7c462da3c0329e0a1e695a7bd37d6b3c28312d4edd4cc8d36f70ecbfa63
lastState: {}
name: cert-manager-webhook
ready: true
restartCount: 0
started: true
state:
running:
startedAt: "2024-04-01T04:29:33Z"
hostIP: 139.178.83.85
hostIPs:
- ip: 139.178.83.85
phase: Running
podIP: 192.168.0.15
podIPs:
- ip: 192.168.0.15
qosClass: BestEffort
startTime: "2024-04-01T04:29:32Z"
- apiVersion: v1
kind: Pod
metadata:
annotations:
component.meshery.io/id: 0253ba12-434a-4eae-9080-460d1d7894b6
design.meshery.io/version: 0.0.1
creationTimestamp: "2025-01-10T16:29:21Z"
labels:
design.meshery.io/id: c80a3f4e-e764-40b5-84ab-2c9aa0776ffb
name: pod-es
namespace: default
resourceVersion: "63500379"
uid: be0469ef-d5b1-422d-b489-901f12f3d1b4
spec:
containers:
- image: nginx/nginx
imagePullPolicy: Always
name: test
resources: {}
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /var/run/secrets/kubernetes.io/serviceaccount
name: kube-api-access-dd4bf
readOnly: true
- image: nginx.io
imagePullPolicy: Always
name: nginx
resources: {}
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /var/run/secrets/kubernetes.io/serviceaccount
name: kube-api-access-dd4bf
readOnly: true
dnsPolicy: ClusterFirst
enableServiceLinks: true
nodeName: c3-medium-x86-03-meshery
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: kube-api-access-dd4bf
projected:
defaultMode: 420
sources:
- serviceAccountToken:
expirationSeconds: 3607
path: token
- configMap:
items:
- key: ca.crt
path: ca.crt
name: kube-root-ca.crt
- downwardAPI:
items:
- fieldRef:
apiVersion: v1
fieldPath: metadata.namespace
path: namespace
status:
conditions:
- lastProbeTime: null
lastTransitionTime: "2025-01-10T16:29:22Z"
status: "True"
type: PodReadyToStartContainers
- lastProbeTime: null
lastTransitionTime: "2025-01-10T16:29:21Z"
status: "True"
type: Initialized
- lastProbeTime: null
lastTransitionTime: "2025-01-10T16:29:21Z"
message: 'containers with unready status: [test nginx]'
reason: ContainersNotReady
status: "False"
type: Ready
- lastProbeTime: null
lastTransitionTime: "2025-01-10T16:29:21Z"
message: 'containers with unready status: [test nginx]'
reason: ContainersNotReady
status: "False"
type: ContainersReady
- lastProbeTime: null
lastTransitionTime: "2025-01-10T16:29:21Z"
status: "True"
type: PodScheduled
containerStatuses:
- image: nginx.io
imageID: ""
lastState: {}
name: nginx
ready: false
restartCount: 0
started: false
state:
waiting:
message: Back-off pulling image "nginx.io"
reason: ImagePullBackOff
- image: nginx/nginx
imageID: ""
lastState: {}
name: test
ready: false
restartCount: 0
started: false
state:
waiting:
message: Back-off pulling image "nginx/nginx"
reason: ImagePullBackOff
hostIP: 139.178.83.85
hostIPs:
- ip: 139.178.83.85
phase: Pending
podIP: 192.168.0.27
podIPs:
- ip: 192.168.0.27
qosClass: BestEffort
startTime: "2025-01-10T16:29:21Z"
- apiVersion: v1
kind: Pod
metadata:
creationTimestamp: "2024-10-01T15:29:56Z"
generateName: emissary-apiext-7d468cdc87-
labels:
app.kubernetes.io/instance: emissary-apiext
app.kubernetes.io/managed-by: kubectl_apply_-f_aes-apiext.yaml
app.kubernetes.io/name: emissary-apiext
app.kubernetes.io/part-of: emissary-apiext
pod-template-hash: 7d468cdc87
name: emissary-apiext-7d468cdc87-ghrvn
namespace: emissary-system
ownerReferences:
- apiVersion: apps/v1
blockOwnerDeletion: true
controller: true
kind: ReplicaSet
name: emissary-apiext-7d468cdc87
uid: f02169bb-21b6-4395-bebe-002b8cf4509c
resourceVersion: "47870822"
uid: d224ba3a-7783-4906-a1ef-3c54e4599d49
spec:
containers:
- args:
- --crd-label-selector
- app.kubernetes.io/part-of=emissary-apiext
command:
- apiext
- emissary-apiext
image: docker.io/datawire/aes:3.11.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 3
httpGet:
path: /probes/live
port: 8080
scheme: HTTP
periodSeconds: 3
successThreshold: 1
timeoutSeconds: 1
name: emissary-apiext
ports:
- containerPort: 8080
name: http
protocol: TCP
- containerPort: 8443
name: https
protocol: TCP
readinessProbe:
failureThreshold: 3
httpGet:
path: /probes/ready
port: 8080
scheme: HTTP
periodSeconds: 3
successThreshold: 1
timeoutSeconds: 1
resources: {}
startupProbe:
failureThreshold: 10
httpGet:
path: /probes/live
port: 8080
scheme: HTTP
periodSeconds: 3
successThreshold: 1
timeoutSeconds: 1
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /var/run/secrets/kubernetes.io/serviceaccount
name: kube-api-access-zxzgm
readOnly: true
dnsPolicy: ClusterFirst
enableServiceLinks: true
nodeName: c3-medium-x86-03-meshery
preemptionPolicy: PreemptLowerPriority
priority: 0
restartPolicy: Always
schedulerName: default-scheduler
securityContext: {}
serviceAccount: emissary-apiext
serviceAccountName: emissary-apiext
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: kube-api-access-zxzgm
projected:
defaultMode: 420
sources:
- serviceAccountToken:
expirationSeconds: 3607
path: token
- configMap:
items:
- key: ca.crt
path: ca.crt
name: kube-root-ca.crt
- downwardAPI:
items:
- fieldRef:
apiVersion: v1
fieldPath: metadata.namespace
path: namespace
status:
conditions:
- lastProbeTime: null
lastTransitionTime: "2024-10-01T15:29:57Z"
status: "True"
type: PodReadyToStartContainers
- lastProbeTime: null
lastTransitionTime: "2024-10-01T15:29:56Z"
status: "True"
type: Initialized
- lastProbeTime: null
lastTransitionTime: "2024-11-06T05:50:56Z"
status: "True"
type: Ready
- lastProbeTime: null
lastTransitionTime: "2024-11-06T05:50:56Z"
status: "True"
type: ContainersReady
- lastProbeTime: null
lastTransitionTime: "2024-10-01T15:29:56Z"
status: "True"
type: PodScheduled
containerStatuses:
- containerID: containerd://4d6abc6d01e36706ad17263657daf6d3eea7afe31d26501d392db74316aac9c9
image: docker.io/datawire/aes:3.11.1
imageID: docker.io/datawire/aes@sha256:95ec30b3c73256006896daa426d3cb0a21ca08e8cbb84244145140006242bbdb
lastState: {}
name: emissary-apiext
ready: true
restartCount: 0
started: true
state:
running:
startedAt: "2024-10-01T15:29:57Z"
hostIP: 139.178.83.85
hostIPs:
- ip: 139.178.83.85
phase: Running
podIP: 192.168.0.20
podIPs:
- ip: 192.168.0.20
qosClass: BestEffort
startTime: "2024-10-01T15:29:56Z"
- apiVersion: v1
kind: Pod
metadata:
annotations:
cluster-autoscaler.kubernetes.io/safe-to-evict: "true"
sidecar.istio.io/inject: "false"
creationTimestamp: "2024-11-27T01:51:52Z"
generateName: cm-acme-http-solver-
labels:
acme.cert-manager.io/http-domain: "2939030417"
acme.cert-manager.io/http-token: "1249119978"
acme.cert-manager.io/http01-solver: "true"
name: cm-acme-http-solver-s4qmc
namespace: emissary
ownerReferences:
- apiVersion: acme.cert-manager.io/v1
blockOwnerDeletion: true
controller: true
kind: Challenge
name: certs-staging-playground-5-1341959213-421573756
uid: dc39fecd-c983-4f45-9aec-a7803811d7e4
resourceVersion: "53251993"
uid: c8bb28bf-0b8a-4cd2-aa46-a3df14ce2cf7
spec:
automountServiceAccountToken: false
containers:
- args:
- --listen-port=8089
- --domain=staging-playground.meshery.io
- --token=Ipel2z0u4V_IALhnKzhhYv_Ko3L_amacLTDL_CyLQKY
- --key=Ipel2z0u4V_IALhnKzhhYv_Ko3L_amacLTDL_CyLQKY.ODvwH1EwJZU7B64Id9Z2YiGVrUEUhMJcCTqROrNpUrk
image: quay.io/jetstack/cert-manager-acmesolver:v1.14.4
imagePullPolicy: IfNotPresent
name: acmesolver
ports:
- containerPort: 8089
name: http
protocol: TCP
resources:
limits:
cpu: 100m
memory: 64Mi
requests:
cpu: 10m
memory: 64Mi
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
dnsPolicy: ClusterFirst
enableServiceLinks: false
nodeName: c3-medium-x86-03-meshery
nodeSelector:
kubernetes.io/os: linux
preemptionPolicy: PreemptLowerPriority
priority: 0
restartPolicy: OnFailure
schedulerName: default-scheduler
securityContext:
runAsNonRoot: true
seccompProfile:
type: RuntimeDefault
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
status:
conditions:
- lastProbeTime: null
lastTransitionTime: "2024-11-27T01:51:54Z"
status: "True"
type: PodReadyToStartContainers
- lastProbeTime: null
lastTransitionTime: "2024-11-27T01:51:52Z"
status: "True"
type: Initialized
- lastProbeTime: null
lastTransitionTime: "2024-11-27T01:51:54Z"
status: "True"
type: Ready
- lastProbeTime: null
lastTransitionTime: "2024-11-27T01:51:54Z"
status: "True"
type: ContainersReady
- lastProbeTime: null
lastTransitionTime: "2024-11-27T01:51:52Z"
status: "True"
type: PodScheduled
containerStatuses:
- containerID: containerd://eb8096544a8a78b71ae3287ae11252fa7ea1025ec418692934ef89ef6943a27b
image: quay.io/jetstack/cert-manager-acmesolver:v1.14.4
imageID: quay.io/jetstack/cert-manager-acmesolver@sha256:83aade427ff5d338380aa0b5d0e65a9f1ef9db09215311eb64b94f833e75b864
lastState: {}
name: acmesolver
ready: true
restartCount: 0
started: true
state:
running:
startedAt: "2024-11-27T01:51:53Z"
hostIP: 139.178.83.85
hostIPs:
- ip: 139.178.83.85
phase: Running
podIP: 192.168.0.6
podIPs:
- ip: 192.168.0.6
qosClass: Burstable
startTime: "2024-11-27T01:51:52Z"
- apiVersion: v1
kind: Pod
metadata:
annotations:
checksum/config: 01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b
creationTimestamp: "2024-04-01T04:11:02Z"
generateName: emissary-ingress-5fccb6758d-
labels:
app.kubernetes.io/instance: emissary-ingress
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: emissary-ingress
app.kubernetes.io/part-of: emissary-ingress
helm.sh/chart: emissary-ingress-8.9.1
pod-template-hash: 5fccb6758d
product: aes
profile: main
name: emissary-ingress-5fccb6758d-2t6sh
namespace: emissary
ownerReferences:
- apiVersion: apps/v1
blockOwnerDeletion: true
controller: true
kind: ReplicaSet
name: emissary-ingress-5fccb6758d
uid: d56ae810-81d2-43b7-a8f8-422777cfaf9d
resourceVersion: "47870709"
uid: e7d3efdf-0853-49dc-9a1a-f45e92f0e3aa
spec:
containers:
- env:
- name: AMBASSADOR_NAMESPACE
valueFrom:
fieldRef:
apiVersion: v1
fieldPath: metadata.namespace
- name: AGENT_CONFIG_RESOURCE_NAME
value: emissary-ingress-agent-cloud-token
image: docker.io/emissaryingress/emissary:3.9.1
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 3
httpGet:
path: /ambassador/v0/check_alive
port: admin
scheme: HTTP
initialDelaySeconds: 30
periodSeconds: 3
successThreshold: 1
timeoutSeconds: 1
name: emissary-ingress
ports:
- containerPort: 8080
name: http
protocol: TCP
- containerPort: 8443
name: https
protocol: TCP
- containerPort: 8877
name: admin
protocol: TCP
readinessProbe:
failureThreshold: 3
httpGet:
path: /ambassador/v0/check_ready
port: admin
scheme: HTTP
initialDelaySeconds: 30
periodSeconds: 3
successThreshold: 1
timeoutSeconds: 1
resources:
limits:
cpu: "1"
memory: 600Mi
requests:
cpu: 200m
memory: 300Mi
securityContext:
allowPrivilegeEscalation: false
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /tmp/ambassador-pod-info
name: ambassador-pod-info
readOnly: true
- mountPath: /var/run/secrets/kubernetes.io/serviceaccount
name: kube-api-access-frqqj
readOnly: true
dnsPolicy: ClusterFirst
enableServiceLinks: true
initContainers:
- args:
- |
deployment_name="emissary-apiext"
deployment_namespace="emissary-system"
while true; do
echo "checking if deployment/$deployment_name in namespace: $deployment_namespace exists."
if kubectl get deployment "$deployment_name" -n $deployment_namespace > /dev/null 2>&1; then
echo "$deployment_name.$deployment_namespace exists."
echo "checking if $deployment_name.$deployment_namespace is fully available..."
kubectl wait --for=condition=available deployment/"$deployment_name" -n $deployment_namespace --timeout=5m
if [ $? -eq 0 ]; then
echo "$deployment_name.$deployment_namespace is available"
while true; do
desired_replicas=$(kubectl get deployment $deployment_name -n $deployment_namespace -o jsonpath='{.spec.replicas}')
current_replicas=$(kubectl get deployment $deployment_name -n $deployment_namespace -o jsonpath='{.status.replicas}')
if [[ $current_replicas != $desired_replicas ]]; then
echo "$deployment_name.$deployment_namespace is in the process of restarting. Have: $current_replicas, want $desired_replicas"
sleep 3
else
echo "$deployment_name.$deployment_namespace is fully ready and not currently restarting. Have: $current_replicas, want $desired_replicas"
break
fi
done
break
else