-
Notifications
You must be signed in to change notification settings - Fork 1
/
config-all.yaml
3352 lines (3352 loc) · 106 KB
/
config-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:
creationTimestamp: "2020-01-21T04:34:42Z"
generateName: backend-deployment-747dd8744-
labels:
pod-template-hash: 747dd8744
tier: backend
name: backend-deployment-747dd8744-m874j
namespace: default
ownerReferences:
- apiVersion: apps/v1
blockOwnerDeletion: true
controller: true
kind: ReplicaSet
name: backend-deployment-747dd8744
uid: 512badd1-104a-4b00-951d-2404464e2d16
resourceVersion: "180123"
selfLink: /api/v1/namespaces/default/pods/backend-deployment-747dd8744-m874j
uid: 728e3eab-19d9-4514-84f7-2c40047c7e1d
spec:
containers:
- image: nginx
imagePullPolicy: Always
name: backend-nginx
resources: {}
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /var/run/secrets/kubernetes.io/serviceaccount
name: default-token-p5lj4
readOnly: true
dnsPolicy: ClusterFirst
enableServiceLinks: true
nodeName: minikube
priority: 0
restartPolicy: Always
schedulerName: default-scheduler
securityContext: {}
serviceAccount: default
serviceAccountName: default
terminationGracePeriodSeconds: 30
tolerations:
- effect: NoSchedule
key: dedicated
operator: Equal
value: special-user
- 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-p5lj4
secret:
defaultMode: 420
secretName: default-token-p5lj4
status:
conditions:
- lastProbeTime: null
lastTransitionTime: "2020-01-21T04:39:58Z"
status: "True"
type: Initialized
- lastProbeTime: null
lastTransitionTime: "2020-01-21T04:40:04Z"
status: "True"
type: Ready
- lastProbeTime: null
lastTransitionTime: "2020-01-21T04:40:04Z"
status: "True"
type: ContainersReady
- lastProbeTime: null
lastTransitionTime: "2020-01-21T04:39:58Z"
status: "True"
type: PodScheduled
containerStatuses:
- containerID: docker://b956a8d2f24b4f2731815d6788dd4d1d5fdcfdbab5d4e827563ae1065cfda58b
image: nginx:latest
imageID: docker-pullable://nginx@sha256:8aa7f6a9585d908a63e5e418dc5d14ae7467d2e36e1ab4f0d8f9d059a3d071ce
lastState: {}
name: backend-nginx
ready: true
restartCount: 0
started: true
state:
running:
startedAt: "2020-01-21T04:40:04Z"
hostIP: 192.168.64.31
phase: Running
podIP: 172.17.0.2
podIPs:
- ip: 172.17.0.2
qosClass: BestEffort
startTime: "2020-01-21T04:39:58Z"
- apiVersion: v1
kind: Pod
metadata:
creationTimestamp: "2020-01-21T04:34:41Z"
generateName: backend-deployment-747dd8744-
labels:
pod-template-hash: 747dd8744
tier: backend
name: backend-deployment-747dd8744-mgf7f
namespace: default
ownerReferences:
- apiVersion: apps/v1
blockOwnerDeletion: true
controller: true
kind: ReplicaSet
name: backend-deployment-747dd8744
uid: 512badd1-104a-4b00-951d-2404464e2d16
resourceVersion: "180138"
selfLink: /api/v1/namespaces/default/pods/backend-deployment-747dd8744-mgf7f
uid: 52a2f859-be7f-4d46-b374-f7ded6a28c6f
spec:
containers:
- image: nginx
imagePullPolicy: Always
name: backend-nginx
resources: {}
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /var/run/secrets/kubernetes.io/serviceaccount
name: default-token-p5lj4
readOnly: true
dnsPolicy: ClusterFirst
enableServiceLinks: true
nodeName: minikube
priority: 0
restartPolicy: Always
schedulerName: default-scheduler
securityContext: {}
serviceAccount: default
serviceAccountName: default
terminationGracePeriodSeconds: 30
tolerations:
- effect: NoSchedule
key: dedicated
operator: Equal
value: special-user
- 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-p5lj4
secret:
defaultMode: 420
secretName: default-token-p5lj4
status:
conditions:
- lastProbeTime: null
lastTransitionTime: "2020-01-21T04:39:58Z"
status: "True"
type: Initialized
- lastProbeTime: null
lastTransitionTime: "2020-01-21T04:40:09Z"
status: "True"
type: Ready
- lastProbeTime: null
lastTransitionTime: "2020-01-21T04:40:09Z"
status: "True"
type: ContainersReady
- lastProbeTime: null
lastTransitionTime: "2020-01-21T04:39:58Z"
status: "True"
type: PodScheduled
containerStatuses:
- containerID: docker://9be281ac42d4f092aa37b413decc93705aafa9c818097efa9d3f6c16ed27691e
image: nginx:latest
imageID: docker-pullable://nginx@sha256:8aa7f6a9585d908a63e5e418dc5d14ae7467d2e36e1ab4f0d8f9d059a3d071ce
lastState: {}
name: backend-nginx
ready: true
restartCount: 0
started: true
state:
running:
startedAt: "2020-01-21T04:40:08Z"
hostIP: 192.168.64.31
phase: Running
podIP: 172.17.0.3
podIPs:
- ip: 172.17.0.3
qosClass: BestEffort
startTime: "2020-01-21T04:39:58Z"
- apiVersion: v1
kind: Pod
metadata:
creationTimestamp: "2020-01-19T17:36:56Z"
labels:
run: nginx
name: nginx
namespace: default
resourceVersion: "27545"
selfLink: /api/v1/namespaces/default/pods/nginx
uid: a7feab3d-d7f3-42cb-9538-1840cf3129dd
spec:
containers:
- image: nginx
imagePullPolicy: Always
name: nginx
resources: {}
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /var/run/secrets/kubernetes.io/serviceaccount
name: default-token-p5lj4
readOnly: true
dnsPolicy: ClusterFirst
enableServiceLinks: true
nodeName: minikube
priority: 0
restartPolicy: Never
schedulerName: default-scheduler
securityContext: {}
serviceAccount: default
serviceAccountName: default
terminationGracePeriodSeconds: 30
tolerations:
- effect: NoSchedule
key: dedicated
operator: Equal
value: special-user
- 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-p5lj4
secret:
defaultMode: 420
secretName: default-token-p5lj4
status:
conditions:
- lastProbeTime: null
lastTransitionTime: "2020-01-19T17:36:56Z"
status: "True"
type: Initialized
- lastProbeTime: null
lastTransitionTime: "2020-01-19T17:37:03Z"
status: "True"
type: Ready
- lastProbeTime: null
lastTransitionTime: "2020-01-19T17:37:03Z"
status: "True"
type: ContainersReady
- lastProbeTime: null
lastTransitionTime: "2020-01-19T17:36:56Z"
status: "True"
type: PodScheduled
containerStatuses:
- containerID: docker://d1ff2432a50f5aece14d4aa919d3e1b9f6a01365fdda7faf39c07b16ab3854f2
image: nginx:latest
imageID: docker-pullable://nginx@sha256:8aa7f6a9585d908a63e5e418dc5d14ae7467d2e36e1ab4f0d8f9d059a3d071ce
lastState: {}
name: nginx
ready: true
restartCount: 0
started: true
state:
running:
startedAt: "2020-01-19T17:37:02Z"
hostIP: 192.168.64.31
phase: Running
podIP: 172.17.0.9
podIPs:
- ip: 172.17.0.9
qosClass: BestEffort
startTime: "2020-01-19T17:36:56Z"
- apiVersion: v1
kind: Pod
metadata:
creationTimestamp: "2020-01-15T08:38:56Z"
labels:
tier: backend
name: pod1
namespace: default
resourceVersion: "24675"
selfLink: /api/v1/namespaces/default/pods/pod1
uid: 2565f901-5eec-4806-82b0-0be9abc4654f
spec:
containers:
- image: nginx
imagePullPolicy: Always
name: backend-nginx
resources: {}
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /var/run/secrets/kubernetes.io/serviceaccount
name: default-token-p5lj4
readOnly: true
dnsPolicy: ClusterFirst
enableServiceLinks: true
nodeName: minikube
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-p5lj4
secret:
defaultMode: 420
secretName: default-token-p5lj4
status:
conditions:
- lastProbeTime: null
lastTransitionTime: "2020-01-15T08:38:56Z"
status: "True"
type: Initialized
- lastProbeTime: null
lastTransitionTime: "2020-01-19T17:16:59Z"
status: "True"
type: Ready
- lastProbeTime: null
lastTransitionTime: "2020-01-19T17:16:59Z"
status: "True"
type: ContainersReady
- lastProbeTime: null
lastTransitionTime: "2020-01-15T08:38:56Z"
status: "True"
type: PodScheduled
containerStatuses:
- containerID: docker://a9f4753b8ffc55804dea51e3e1c78167c0acb622660f8988d276e5a825d6c4da
image: nginx:latest
imageID: docker-pullable://nginx@sha256:8aa7f6a9585d908a63e5e418dc5d14ae7467d2e36e1ab4f0d8f9d059a3d071ce
lastState:
terminated:
containerID: docker://f8f968aaa8c09ed12b6369c077258418004a5c8eee020836ab8a848aaa5b016f
exitCode: 255
finishedAt: "2020-01-19T17:16:17Z"
reason: Error
startedAt: "2020-01-15T08:39:22Z"
name: backend-nginx
ready: true
restartCount: 1
started: true
state:
running:
startedAt: "2020-01-19T17:16:59Z"
hostIP: 192.168.64.31
phase: Running
podIP: 172.17.0.7
podIPs:
- ip: 172.17.0.7
qosClass: BestEffort
startTime: "2020-01-15T08:38:56Z"
- apiVersion: v1
kind: Pod
metadata:
creationTimestamp: "2020-01-21T04:34:41Z"
generateName: coredns-6955765f44-
labels:
k8s-app: kube-dns
pod-template-hash: 6955765f44
name: coredns-6955765f44-fql4c
namespace: kube-system
ownerReferences:
- apiVersion: apps/v1
blockOwnerDeletion: true
controller: true
kind: ReplicaSet
name: coredns-6955765f44
uid: 35a2809b-75c5-4f68-bddb-2c4a2f167fa2
resourceVersion: "180093"
selfLink: /api/v1/namespaces/kube-system/pods/coredns-6955765f44-fql4c
uid: b615360f-5ac0-47d1-b25d-85227fbac93d
spec:
containers:
- args:
- -conf
- /etc/coredns/Corefile
image: k8s.gcr.io/coredns:1.6.5
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 5
httpGet:
path: /health
port: 8080
scheme: HTTP
initialDelaySeconds: 60
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 5
name: coredns
ports:
- containerPort: 53
name: dns
protocol: UDP
- containerPort: 53
name: dns-tcp
protocol: TCP
- containerPort: 9153
name: metrics
protocol: TCP
readinessProbe:
failureThreshold: 3
httpGet:
path: /ready
port: 8181
scheme: HTTP
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
resources:
limits:
memory: 170Mi
requests:
cpu: 100m
memory: 70Mi
securityContext:
allowPrivilegeEscalation: false
capabilities:
add:
- NET_BIND_SERVICE
drop:
- all
readOnlyRootFilesystem: true
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /etc/coredns
name: config-volume
readOnly: true
- mountPath: /var/run/secrets/kubernetes.io/serviceaccount
name: coredns-token-csjgf
readOnly: true
dnsPolicy: Default
enableServiceLinks: true
nodeSelector:
beta.kubernetes.io/os: linux
priority: 2000000000
priorityClassName: system-cluster-critical
restartPolicy: Always
schedulerName: default-scheduler
securityContext: {}
serviceAccount: coredns
serviceAccountName: coredns
terminationGracePeriodSeconds: 30
tolerations:
- key: CriticalAddonsOnly
operator: Exists
- effect: NoSchedule
key: node-role.kubernetes.io/master
- effect: NoExecute
key: node.kubernetes.io/not-ready
operator: Exists
tolerationSeconds: 300
- effect: NoExecute
key: node.kubernetes.io/unreachable
operator: Exists
tolerationSeconds: 300
volumes:
- configMap:
defaultMode: 420
items:
- key: Corefile
path: Corefile
name: coredns
name: config-volume
- name: coredns-token-csjgf
secret:
defaultMode: 420
secretName: coredns-token-csjgf
status:
conditions:
- lastProbeTime: null
lastTransitionTime: "2020-01-21T04:34:42Z"
message: '0/1 nodes are available: 1 node(s) had taints that the pod didn''t
tolerate.'
reason: Unschedulable
status: "False"
type: PodScheduled
phase: Pending
qosClass: Burstable
- apiVersion: v1
kind: Pod
metadata:
creationTimestamp: "2020-01-20T03:07:11Z"
generateName: coredns-6955765f44-
labels:
k8s-app: kube-dns
pod-template-hash: 6955765f44
name: coredns-6955765f44-g2q5l
namespace: kube-system
ownerReferences:
- apiVersion: apps/v1
blockOwnerDeletion: true
controller: true
kind: ReplicaSet
name: coredns-6955765f44
uid: 35a2809b-75c5-4f68-bddb-2c4a2f167fa2
resourceVersion: "180094"
selfLink: /api/v1/namespaces/kube-system/pods/coredns-6955765f44-g2q5l
uid: c4149b14-ae5b-4774-8ffa-65123ef97015
spec:
containers:
- args:
- -conf
- /etc/coredns/Corefile
image: k8s.gcr.io/coredns:1.6.5
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 5
httpGet:
path: /health
port: 8080
scheme: HTTP
initialDelaySeconds: 60
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 5
name: coredns
ports:
- containerPort: 53
name: dns
protocol: UDP
- containerPort: 53
name: dns-tcp
protocol: TCP
- containerPort: 9153
name: metrics
protocol: TCP
readinessProbe:
failureThreshold: 3
httpGet:
path: /ready
port: 8181
scheme: HTTP
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
resources:
limits:
memory: 170Mi
requests:
cpu: 100m
memory: 70Mi
securityContext:
allowPrivilegeEscalation: false
capabilities:
add:
- NET_BIND_SERVICE
drop:
- all
readOnlyRootFilesystem: true
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /etc/coredns
name: config-volume
readOnly: true
- mountPath: /var/run/secrets/kubernetes.io/serviceaccount
name: coredns-token-csjgf
readOnly: true
dnsPolicy: Default
enableServiceLinks: true
nodeSelector:
beta.kubernetes.io/os: linux
priority: 2000000000
priorityClassName: system-cluster-critical
restartPolicy: Always
schedulerName: default-scheduler
securityContext: {}
serviceAccount: coredns
serviceAccountName: coredns
terminationGracePeriodSeconds: 30
tolerations:
- key: CriticalAddonsOnly
operator: Exists
- effect: NoSchedule
key: node-role.kubernetes.io/master
- effect: NoExecute
key: node.kubernetes.io/not-ready
operator: Exists
tolerationSeconds: 300
- effect: NoExecute
key: node.kubernetes.io/unreachable
operator: Exists
tolerationSeconds: 300
volumes:
- configMap:
defaultMode: 420
items:
- key: Corefile
path: Corefile
name: coredns
name: config-volume
- name: coredns-token-csjgf
secret:
defaultMode: 420
secretName: coredns-token-csjgf
status:
conditions:
- lastProbeTime: null
lastTransitionTime: "2020-01-20T03:07:11Z"
message: '0/1 nodes are available: 1 node(s) had taints that the pod didn''t
tolerate.'
reason: Unschedulable
status: "False"
type: PodScheduled
phase: Pending
qosClass: Burstable
- apiVersion: v1
kind: Pod
metadata:
annotations:
kubernetes.io/config.hash: b5f8c8cb253034c6c1dd0be82d5d61a8
kubernetes.io/config.mirror: b5f8c8cb253034c6c1dd0be82d5d61a8
kubernetes.io/config.seen: "2020-01-15T08:23:44.203826742Z"
kubernetes.io/config.source: file
creationTimestamp: "2020-01-15T08:23:44Z"
labels:
component: etcd
tier: control-plane
name: etcd-minikube
namespace: kube-system
ownerReferences:
- apiVersion: v1
controller: true
kind: Node
name: minikube
uid: 6d89fbb2-6e55-4922-8c25-90db549e4ab5
resourceVersion: "92756"
selfLink: /api/v1/namespaces/kube-system/pods/etcd-minikube
uid: 39b3097c-0af1-4978-aa5e-13734b406c03
spec:
containers:
- command:
- etcd
- --advertise-client-urls=https://192.168.64.31:2379
- --cert-file=/var/lib/minikube/certs/etcd/server.crt
- --client-cert-auth=true
- --data-dir=/var/lib/minikube/etcd
- --initial-advertise-peer-urls=https://192.168.64.31:2380
- --initial-cluster=minikube=https://192.168.64.31:2380
- --key-file=/var/lib/minikube/certs/etcd/server.key
- --listen-client-urls=https://127.0.0.1:2379,https://192.168.64.31:2379
- --listen-metrics-urls=http://127.0.0.1:2381
- --listen-peer-urls=https://192.168.64.31:2380
- --name=minikube
- --peer-cert-file=/var/lib/minikube/certs/etcd/peer.crt
- --peer-client-cert-auth=true
- --peer-key-file=/var/lib/minikube/certs/etcd/peer.key
- --peer-trusted-ca-file=/var/lib/minikube/certs/etcd/ca.crt
- --snapshot-count=10000
- --trusted-ca-file=/var/lib/minikube/certs/etcd/ca.crt
image: k8s.gcr.io/etcd:3.4.3-0
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 8
httpGet:
host: 127.0.0.1
path: /health
port: 2381
scheme: HTTP
initialDelaySeconds: 15
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 15
name: etcd
resources: {}
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /var/lib/minikube/etcd
name: etcd-data
- mountPath: /var/lib/minikube/certs/etcd
name: etcd-certs
dnsPolicy: ClusterFirst
enableServiceLinks: true
hostNetwork: true
nodeName: minikube
priority: 2000000000
priorityClassName: system-cluster-critical
restartPolicy: Always
schedulerName: default-scheduler
securityContext: {}
terminationGracePeriodSeconds: 30
tolerations:
- effect: NoExecute
operator: Exists
volumes:
- hostPath:
path: /var/lib/minikube/certs/etcd
type: DirectoryOrCreate
name: etcd-certs
- hostPath:
path: /var/lib/minikube/etcd
type: DirectoryOrCreate
name: etcd-data
status:
conditions:
- lastProbeTime: null
lastTransitionTime: "2020-01-20T03:07:18Z"
status: "True"
type: Initialized
- lastProbeTime: null
lastTransitionTime: "2020-01-20T03:07:18Z"
status: "True"
type: Ready
- lastProbeTime: null
lastTransitionTime: "2020-01-20T03:07:18Z"
status: "True"
type: ContainersReady
- lastProbeTime: null
lastTransitionTime: "2020-01-20T03:07:18Z"
status: "True"
type: PodScheduled
containerStatuses:
- containerID: docker://6c32f067acefc55e206e3ea31e292edf76dbc117d5f999352a9a271d979a1861
image: k8s.gcr.io/etcd:3.4.3-0
imageID: docker-pullable://k8s.gcr.io/etcd@sha256:4afb99b4690b418ffc2ceb67e1a17376457e441c1f09ab55447f0aaf992fa646
lastState:
terminated:
containerID: docker://7138892e557f923e94b416a7ea5f65c8f88327fb508a2ad14bbd546da3904689
exitCode: 255
finishedAt: "2020-01-19T17:16:17Z"
reason: Error
startedAt: "2020-01-15T08:23:34Z"
name: etcd
ready: true
restartCount: 1
started: true
state:
running:
startedAt: "2020-01-19T17:16:36Z"
hostIP: 192.168.64.31
phase: Running
podIP: 192.168.64.31
podIPs:
- ip: 192.168.64.31
qosClass: BestEffort
startTime: "2020-01-20T03:07:18Z"
- apiVersion: v1
kind: Pod
metadata:
annotations:
kubernetes.io/config.hash: c3e29047da86ce6690916750ab69c40b
kubernetes.io/config.mirror: c3e29047da86ce6690916750ab69c40b
kubernetes.io/config.seen: "2020-01-15T08:23:44.203786809Z"
kubernetes.io/config.source: file
creationTimestamp: "2020-01-15T08:23:44Z"
labels:
component: kube-addon-manager
kubernetes.io/minikube-addons: addon-manager
version: v9.0.2
name: kube-addon-manager-minikube
namespace: kube-system
ownerReferences:
- apiVersion: v1
controller: true
kind: Node
name: minikube
uid: 6d89fbb2-6e55-4922-8c25-90db549e4ab5
resourceVersion: "92755"
selfLink: /api/v1/namespaces/kube-system/pods/kube-addon-manager-minikube
uid: 51741cf4-7695-4d25-993e-a826a86e9494
spec:
containers:
- env:
- name: KUBECONFIG
value: /var/lib/minikube/kubeconfig
- name: TEST_ADDON_CHECK_INTERVAL_SEC
value: "5"
- name: ADDON_MANAGER_LEADER_ELECTION
value: "false"
image: k8s.gcr.io/kube-addon-manager:v9.0.2
imagePullPolicy: IfNotPresent
name: kube-addon-manager
resources:
requests:
cpu: 5m
memory: 50Mi
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /etc/kubernetes/
name: addons
readOnly: true
- mountPath: /var/lib/minikube/
name: kubeconfig
readOnly: true
dnsPolicy: ClusterFirst
enableServiceLinks: true
hostNetwork: true
nodeName: minikube
priority: 0
restartPolicy: Always
schedulerName: default-scheduler
securityContext: {}
terminationGracePeriodSeconds: 30
tolerations:
- effect: NoExecute
operator: Exists
volumes:
- hostPath:
path: /etc/kubernetes/
type: ""
name: addons
- hostPath:
path: /var/lib/minikube/
type: ""
name: kubeconfig
status:
conditions:
- lastProbeTime: null
lastTransitionTime: "2020-01-20T03:07:18Z"
status: "True"
type: Initialized
- lastProbeTime: null
lastTransitionTime: "2020-01-20T03:07:18Z"
status: "True"
type: Ready
- lastProbeTime: null
lastTransitionTime: "2020-01-20T03:07:18Z"
status: "True"
type: ContainersReady
- lastProbeTime: null
lastTransitionTime: "2020-01-20T03:07:18Z"
status: "True"
type: PodScheduled
containerStatuses:
- containerID: docker://cee0b5cdf5290dada2532f65161b7df29c075fad756863b17555c4fbf8d20219
image: k8s.gcr.io/kube-addon-manager:v9.0.2
imageID: docker://sha256:bd12a212f9dcbafe64323774c6b937dec3099d65f39a8d29896cf0d1d0c906cf
lastState:
terminated:
containerID: docker://c0e6339f3f21d839459a330b423fffca24a4e12bed292fde1bd1094e4596594e
exitCode: 255
finishedAt: "2020-01-19T17:16:17Z"
reason: Error
startedAt: "2020-01-15T08:23:33Z"
name: kube-addon-manager
ready: true
restartCount: 1
started: true
state:
running:
startedAt: "2020-01-19T17:16:36Z"
hostIP: 192.168.64.31
phase: Running
podIP: 192.168.64.31
podIPs:
- ip: 192.168.64.31
qosClass: Burstable
startTime: "2020-01-20T03:07:18Z"
- apiVersion: v1
kind: Pod
metadata:
annotations:
kubernetes.io/config.hash: d99bc7a9fdeca9a627d35a2724d05d77
kubernetes.io/config.mirror: d99bc7a9fdeca9a627d35a2724d05d77
kubernetes.io/config.seen: "2020-01-15T08:23:44.203829009Z"
kubernetes.io/config.source: file
creationTimestamp: "2020-01-15T08:23:44Z"
labels:
component: kube-apiserver
tier: control-plane
name: kube-apiserver-minikube
namespace: kube-system
ownerReferences:
- apiVersion: v1
controller: true
kind: Node
name: minikube
uid: 6d89fbb2-6e55-4922-8c25-90db549e4ab5
resourceVersion: "92759"
selfLink: /api/v1/namespaces/kube-system/pods/kube-apiserver-minikube
uid: 76aebd63-0d7a-4c5c-98db-7920c1b411f2
spec:
containers:
- command:
- kube-apiserver
- --advertise-address=192.168.64.31
- --allow-privileged=true
- --authorization-mode=Node,RBAC
- --client-ca-file=/var/lib/minikube/certs/ca.crt
- --enable-admission-plugins=NamespaceLifecycle,LimitRanger,ServiceAccount,DefaultStorageClass,DefaultTolerationSeconds,NodeRestriction,MutatingAdmissionWebhook,ValidatingAdmissionWebhook,ResourceQuota
- --enable-bootstrap-token-auth=true
- --etcd-cafile=/var/lib/minikube/certs/etcd/ca.crt
- --etcd-certfile=/var/lib/minikube/certs/apiserver-etcd-client.crt
- --etcd-keyfile=/var/lib/minikube/certs/apiserver-etcd-client.key
- --etcd-servers=https://127.0.0.1:2379
- --insecure-port=0
- --kubelet-client-certificate=/var/lib/minikube/certs/apiserver-kubelet-client.crt
- --kubelet-client-key=/var/lib/minikube/certs/apiserver-kubelet-client.key
- --kubelet-preferred-address-types=InternalIP,ExternalIP,Hostname
- --proxy-client-cert-file=/var/lib/minikube/certs/front-proxy-client.crt
- --proxy-client-key-file=/var/lib/minikube/certs/front-proxy-client.key
- --requestheader-allowed-names=front-proxy-client
- --requestheader-client-ca-file=/var/lib/minikube/certs/front-proxy-ca.crt
- --requestheader-extra-headers-prefix=X-Remote-Extra-
- --requestheader-group-headers=X-Remote-Group
- --requestheader-username-headers=X-Remote-User
- --secure-port=8443
- --service-account-key-file=/var/lib/minikube/certs/sa.pub
- --service-cluster-ip-range=10.96.0.0/12
- --tls-cert-file=/var/lib/minikube/certs/apiserver.crt
- --tls-private-key-file=/var/lib/minikube/certs/apiserver.key
image: k8s.gcr.io/kube-apiserver:v1.17.0
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 8
httpGet:
host: 192.168.64.31
path: /healthz
port: 8443
scheme: HTTPS
initialDelaySeconds: 15
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 15
name: kube-apiserver
resources:
requests:
cpu: 250m
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /etc/ssl/certs
name: ca-certs
readOnly: true
- mountPath: /var/lib/minikube/certs
name: k8s-certs
readOnly: true
- mountPath: /usr/share/ca-certificates
name: usr-share-ca-certificates
readOnly: true
dnsPolicy: ClusterFirst
enableServiceLinks: true
hostNetwork: true
nodeName: minikube
priority: 2000000000
priorityClassName: system-cluster-critical
restartPolicy: Always
schedulerName: default-scheduler
securityContext: {}
terminationGracePeriodSeconds: 30
tolerations:
- effect: NoExecute
operator: Exists
volumes:
- hostPath:
path: /etc/ssl/certs
type: DirectoryOrCreate
name: ca-certs
- hostPath:
path: /var/lib/minikube/certs
type: DirectoryOrCreate
name: k8s-certs
- hostPath:
path: /usr/share/ca-certificates
type: DirectoryOrCreate
name: usr-share-ca-certificates
status:
conditions:
- lastProbeTime: null
lastTransitionTime: "2020-01-20T03:07:18Z"
status: "True"
type: Initialized
- lastProbeTime: null
lastTransitionTime: "2020-01-20T03:07:18Z"
status: "True"
type: Ready
- lastProbeTime: null
lastTransitionTime: "2020-01-20T03:07:18Z"
status: "True"
type: ContainersReady
- lastProbeTime: null
lastTransitionTime: "2020-01-20T03:07:18Z"
status: "True"
type: PodScheduled