forked from kubernetes/minikube
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ko.json
1150 lines (1150 loc) · 119 KB
/
ko.json
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
{
"\n\n": "",
"\"'{{.minikube_addon}}' is not a valid minikube addon": "'{{.minikube_addon}}'은 유효한 minikube 애드온이 아닙니다",
"\"The '{{.minikube_addon}}' addon is disabled": "\"'{{.minikube_addon}}' 이 비활성화되었습니다",
"\"minikube cache\" will be deprecated in upcoming versions, please switch to \"minikube image load\"": "\"minikube cache\"는 추후 버전에서 사용 중단됩니다. \"minikube image load\"로 전환하세요",
"\"{{.context}}\" context has been updated to point to {{.hostname}}:{{.port}}": "\"{{.context}}\" 컨텍스트가 {{.hostname}}:{{.port}}로 갱신되었습니다",
"\"{{.machineName}}\" does not exist, nothing to stop": "\"{{.machineName}}\" 이 존재하지 않아, 중단할 것이 없습니다",
"\"{{.name}}\" profile does not exist": "\"{{.name}}\" 프로필이 존재하지 않습니다",
"\"{{.name}}\" profile does not exist, trying anyways.": "\"{{.name}}\" 프로필이 존재하지 않으며, 그래도 시도합니다",
"\"{{.node_name}}\" stopped.": "\"{{.node_name}}\" 이 중단되었습니다",
"\"{{.profile_name}}\" does not exist, nothing to stop": "\"{{.profile_name}}\" 이 존재하지 않아, 중단할 것이 없습니다",
"\"{{.profile_name}}\" host does not exist, unable to show an IP": "\"{{.profile_name}}\" 호스트가 존재하지 않아, IP 를 조회할 수 없습니다",
"'none' driver does not support 'minikube docker-env' command": "'none' 드라이버는 'minikube docker-env' 명령어를 지원하지 않습니다",
"'none' driver does not support 'minikube mount' command": "'none' 드라이버는 'minikube mount' 명령어를 지원하지 않습니다",
"'none' driver does not support 'minikube podman-env' command": "'none' 드라이버는 'minikube podman-env' 명령어를 지원하지 않습니다",
"'none' driver does not support 'minikube ssh' command": "'none' 드라이버는 'minikube ssh' 명령어를 지원하지 않습니다",
"'none' driver does not support 'minikube ssh-host' command": "'none' 드라이버는 'minikube ssh-host' 명령어를 지원하지 않습니다",
"'{{.driver}}' driver reported an issue: {{.error}}": "'{{.driver}}' 드라이버가 문제를 보고했습니다: {{.error}}",
"'{{.profile}}' is not running": "'{{.profile}}' 이 실행되고 있지 않습니다",
"- \"minikube ssh\" to SSH into minikube's node.\n- \"minikube docker-env\" to point your docker-cli to the docker inside minikube.\n- \"minikube image\" to build images without docker.": "\n- \"minikube ssh\" 를 사용하여 minikube 의 노드에 SSH 로 접속합니다.\n- \"minikube docker-env\" 를 사용하여 docker-cli 를 minikube 내의 docker 로 지정합니다.\n- \"minikube image\" 를 사용하여 docker 없이 이미지를 빌드합니다.",
"- \"minikube ssh\" to SSH into minikube's node.\n- \"minikube image\" to build images without docker.": "\n- \"minikube ssh\" 를 사용하여 minikube 의 노드에 SSH 로 접속합니다.\n- \"minikube image\" 를 사용하여 docker 없이 이미지를 빌드합니다.",
"- \"minikube ssh\" to SSH into minikube's node.\n- \"minikube podman-env\" to point your podman-cli to the podman inside minikube.\n- \"minikube image\" to build images without docker.": "\n- \"minikube ssh\" 를 사용하여 minikube 의 노드에 SSH 로 접속합니다.\n- \"minikube podman-env\" 를 사용하여 podman-cli 를 minikube 내의 podman 으로 지정합니다.\n- \"minikube image\" 를 사용하여 docker 없이 이미지를 빌드합니다.",
"- Delete and recreate minikube cluster\n\t\tminikube delete\n\t\tminikube start --driver={{.driver_name}}": "minikube 클러스터를 삭제하고 재생성합니다.\n\t\tminikube를 삭제합니다.\n\t\tminikube start --driver={{.driver_name}}",
"- Docs https://docs.docker.com/docker-for-mac/#resources": "- 문서: https://docs.docker.com/docker-for-mac/#resources",
"- Docs https://docs.docker.com/docker-for-windows/#resources": "- 문서: https://docs.docker.com/docker-for-windows/#resources",
"- Ensure your {{.driver_name}} daemon has access to enough CPU/memory resources.": "- {{.driver_name}} 데몬이 충분한 CPU/메모리 리소스에 액세스할 수 있는지 확인합니다.",
"- Prune unused {{.driver_name}} images, volumes, networks and abandoned containers.\n\n\t\t\t\t{{.driver_name}} system prune --volumes": "사용하지 않는 {{.driver_name}} 이미지, 볼륨, 네트워크 및 버려진 컨테이너를 정리합니다.\n\n\t\t\t\t{{.driver_name}} system prune --volumes",
"- Restart your {{.driver_name}} service": "{{.driver_name}} 서비스를 다시 시작하세요",
"--kvm-numa-count range is 1-8": "--kvm-numa-count 범위는 1-8 입니다",
"--network flag is only valid with the docker/podman, KVM and Qemu drivers, it will be ignored": "--network 는 docker나 podman 에서만 유효합니다. KVM이나 Qemu 드라이버에서는 인자가 무시됩니다",
"--network with QEMU must be 'builtin' or 'socket_vmnet'": "QEMU 에서 --network 는 'builtin' 이나 'socket_vmnet' 이어야 합니다",
"--static-ip is only implemented on Docker and Podman drivers, flag will be ignored": "--static-ip 는 Docker와 Podman 드라이버에서만 구현되었습니다. 인자는 무시됩니다",
"--static-ip overrides --subnet, --subnet will be ignored": "--static-ip 는 --subnet 을 재정의하기 때문에, --subnet 은 무시됩니다",
"1) Recreate the cluster with Kubernetes {{.new}}, by running:\n\t \n\t\t minikube delete{{.profile}}\n\t\t minikube start{{.profile}} --kubernetes-version={{.prefix}}{{.new}}\n\t \n\t\t2) Create a second cluster with Kubernetes {{.new}}, by running:\n\t \n\t\t minikube start -p {{.suggestedName}} --kubernetes-version={{.prefix}}{{.new}}\n\t \n\t\t3) Use the existing cluster at version Kubernetes {{.old}}, by running:\n\t \n\t\t minikube start{{.profile}} --kubernetes-version={{.prefix}}{{.old}}\n\t\t": "1) 다음을 실행하여 Kubernetes {{.new}} 로 클러스터를 재생성합니다:\n\t \n\t\t minikube delete{{.profile}}\n\t\t minikube start{{.profile}} --kubernetes-version={{.prefix}}{{.new}}\n\t \n\t\t2) 다음을 실행하여 Kubernetes {{.new}} 로 두 번째 클러스터를 생성합니다:\n\t \n\t\t minikube start -p {{.suggestedName}} --kubernetes-version={{.prefix}}{{.new}}\n\t \n\t\t3) 다음을 실행하여 Kubernetes {{.old}} 버전의 기존 클러스터를 사용합니다:\n\t \n\t\t minikube start{{.profile}} --kubernetes-version={{.prefix}}{{.old}}\n\t\t",
"1. Click on \"Docker for Desktop\" menu icon\n\t\t\t2. Click \"Preferences\"\n\t\t\t3. Click \"Resources\"\n\t\t\t4. Increase \"CPUs\" slider bar to 2 or higher\n\t\t\t5. Click \"Apply \u0026 Restart\"": "1. \"Docker for Desktop\" 메뉴 아이콘을 클릭합니다\n\t\t\t2. \"Preferences\" 를 클릭합니다\n\t\t\t3. \"Resources\" 를 클릭합니다\n\t\t\t4. \"CPUs\" 슬라이더 바를 2 이상으로 늘립니다\n\t\t\t5. \"Apply \u0026 Restart\" 를 클릭합니다",
"1. Click on \"Docker for Desktop\" menu icon\n\t\t\t2. Click \"Preferences\"\n\t\t\t3. Click \"Resources\"\n\t\t\t4. Increase \"Memory\" slider bar to {{.recommend}} or higher\n\t\t\t5. Click \"Apply \u0026 Restart\"": "1. \"Docker for Desktop\" 메뉴 아이콘을 클릭합니다\n\t\t\t2. \"Preferences\" 를 클릭합니다\n\t\t\t3. \"Resources\" 를 클릭합니다\n\t\t\t4. \"Memory\" 슬라이더 바를 {{.recommend}} 이상으로 늘립니다\n\t\t\t5. \"Apply \u0026 Restart\" 를 클릭합니다",
"1. Open the \"Docker Desktop\" menu by clicking the Docker icon in the system tray\n\t\t2. Click \"Settings\"\n\t\t3. Click \"Resources\"\n\t\t4. Increase \"CPUs\" slider bar to 2 or higher\n\t\t5. Click \"Apply \u0026 Restart\"": "1. 시스템 트레이의 Docker 아이콘을 클릭하여 \"Docker Desktop\" 메뉴를 엽니다\n\t\t2. \"Settings\" 를 클릭합니다\n\t\t3. \"Resources\" 를 클릭합니다\n\t\t4. \"CPUs\" 슬라이더 바를 2 이상으로 늘립니다\n\t\t5. \"Apply \u0026 Restart\" 를 클릭합니다",
"1. Open the \"Docker Desktop\" menu by clicking the Docker icon in the system tray\n\t\t2. Click \"Settings\"\n\t\t3. Click \"Resources\"\n\t\t4. Increase \"Memory\" slider bar to {{.recommend}} or higher\n\t\t5. Click \"Apply \u0026 Restart\"": "1. 시스템 트레이의 Docker 아이콘을 클릭하여 \"Docker Desktop\" 메뉴를 엽니다\n\t\t2. \"Settings\" 를 클릭합니다\n\t\t3. \"Resources\" 를 클릭합니다\n\t\t4. \"Memory\" 슬라이더 바를 {{.recommend}} 이상으로 늘립니다\n\t\t5. \"Apply \u0026 Restart\" 를 클릭합니다",
"==\u003e Audit \u003c==": "==\u003e 감사 \u003c==",
"==\u003e Last Start \u003c==": "==\u003e 마지막 시작 \u003c==",
"A VPN or firewall is interfering with HTTP access to the minikube VM. Alternatively, try a different VM driver: https://minikube.sigs.k8s.io/docs/start/": "VPN 또는 방화벽이 minikube VM에 대한 HTTP 액세스를 방해하고 있습니다. 또는 다른 VM 드라이버를 사용해 보십시오: https://minikube.sigs.k8s.io/docs/start/",
"A firewall is blocking Docker the minikube VM from reaching the image repository. You may need to select --image-repository, or use a proxy.": "방화벽이 Docker의 minikube VM을 이미지 저장소에 연결하는 것을 차단하고 있습니다. --image-repository를 선택하거나 프록시를 사용해야 할 수도 있습니다.",
"A firewall is interfering with minikube's ability to make outgoing HTTPS requests. You may need to change the value of the HTTPS_PROXY environment variable.": "방화벽이 외부로 나가는 HTTPS 요청을 수행하는 minikube의 기능을 방해하고 있습니다. HTTPS_PROXY 환경 변수의 값을 변경해야 할 수도 있습니다.",
"A firewall is likely blocking minikube from reaching the internet. You may need to configure minikube to use a proxy.": "방화벽이 minikube의 인터넷 연결을 차단하고 있을 가능성이 높습니다. 프록시를 사용하려면 minikube를 구성해야 할 수도 있습니다.",
"A set of apiserver IP Addresses which are used in the generated certificate for kubernetes. This can be used if you want to make the apiserver available from outside the machine": "Kubernetes용으로 생성된 인증서에 사용되는 apiserver IP 주소 집합입니다. 머신 외부에서 apiserver를 사용할 수 있도록 하려는 경우에 사용할 수 있습니다.",
"A set of apiserver names which are used in the generated certificate for kubernetes. This can be used if you want to make the apiserver available from outside the machine": "Kubernetes용으로 생성된 인증서에 사용되는 apiserver 이름 집합입니다. 머신 외부에서 apiserver를 사용할 수 있도록 하려는 경우에 사용할 수 있습니다.",
"A set of key=value pairs that describe feature gates for alpha/experimental features.": "alpha/experimental 기능에 대한 기능 게이트를 설명하는 key=value 쌍의 집합입니다.",
"Access the Kubernetes dashboard running within the minikube cluster": "minikube 클러스터 내의 쿠버네티스 대시보드에 접근합니다",
"Access to ports below 1024 may fail on Windows with OpenSSH clients older than v8.1. For more information, see: https://minikube.sigs.k8s.io/docs/handbook/accessing/#access-to-ports-1024-on-windows-requires-root-permission": "v8.1 이전 OpenSSH 클라이언트를 사용하는 Windows에서는 1024 미만의 포트에 대한 액세스가 실패할 수 있습니다. 자세한 내용은 https://minikube.sigs.k8s.io/docs/handbook/accessing/#access-to-ports-1024-on-windows-requires-root-permission을 참조하세요",
"Add SSH identity key to SSH authentication agent": "SSH 인증 에이전트에 SSH ID 키 추가합니다",
"Add an image into minikube as a local cache, or delete, reload the cached images": "이미지를 로컬 캐시로 minikube에 추가하거나, 캐시된 이미지를 삭제하고 다시 로드합니다",
"Add an image to local cache.": "로컬 캐시에 이미지를 추가합니다",
"Add host key to SSH known_hosts file": "SSH known_hosts 파일에 호스트 키를 추가합니다",
"Add image to cache for all running minikube clusters": "실행 중인 모든 미니큐브 클러스터의 캐시에 이미지를 추가합니다",
"Add machine IP to NO_PROXY environment variable": "NO_PROXY 환경 변수에 머신 IP를 추가합니다",
"Add or delete an image from the local cache.": "로컬 캐시에 이미지를 추가하거나 삭제합니다",
"Add, delete, or push a local image into minikube": "minikube에 로컬 이미지를 추가하거나 삭제, 푸시합니다",
"Add, remove, or list additional nodes": "노드를 추가하거나 삭제, 나열합니다",
"Adding a control-plane node is not yet supported, setting control-plane flag to false": "control-plane 노드를 추가하는 것은 아직 지원되지 않습니다. control-plane 플래그를 false로 설정합니다",
"Adding a control-plane node to a non-HA (non-multi-control plane) cluster is not currently supported. Please first delete the cluster and use 'minikube start --ha' to create new one.": "",
"Adding node {{.name}} to cluster {{.cluster}}": "노드 {{.name}} 를 클러스터 {{.cluster}} 에 추가합니다",
"Adding node {{.name}} to cluster {{.cluster}} as {{.roles}}": "",
"Additional help topics": "추가적인 도움말 주제",
"Additional mount options, such as cache=fscache": "cache=fscache 와 같은 추가적인 마운트 옵션",
"Adds a node to the given cluster config, and starts it.": "주어진 클러스터 구성에 노드 하나를 추가하고 시작합니다",
"Adds a node to the given cluster.": "주어진 클러스터에 노드 하나를 추가합니다",
"Advanced Commands:": "고급 명령어:",
"After the addon is enabled, please run \"minikube tunnel\" and your ingress resources would be available at \"127.0.0.1\"": "애드온이 활성화된 후 \"minikube tunnel\"을 실행하면 인그레스 리소스를 \"127.0.0.1\"에서 사용할 수 있습니다",
"Aliases": "별칭",
"All existing scheduled stops cancelled": "예정된 모든 중지 요청이 취소되었습니다",
"Allow pods to use your NVIDIA GPUs. Options include: [all,nvidia] (Docker driver with Docker container-runtime only)": "pod 가 NVIDIA GPU를 사용할 수 있도록 허용합니다. 옵션은 다음과 같습니다: [all,nvidia] (Docker 드라이버와 Docker 컨테이너 런타임만 해당)",
"Allow user prompts for more information": "추가 정보를 위해 사용자 프롬프트를 허용합니다",
"Alternative image repository to pull docker images from. This can be used when you have limited access to gcr.io. Set it to \"auto\" to let minikube decide one for you. For Chinese mainland users, you may use local gcr.io mirrors such as registry.cn-hangzhou.aliyuncs.com/google_containers": "도커 이미지를 가져올 대체 이미지 저장소입니다. gcr.io에 제한된 액세스 권한이 있는 경우 사용할 수 있습니다. \"auto\"로 설정하여 minikube가 대신 결정하도록 할 수 있습니다. 중국 본토 사용자는 registry.cn-hangzhou.aliyuncs.com/google_containers와 같은 로컬 gcr.io 미러를 사용할 수 있습니다",
"Alternatively you could install one of these drivers:": "또는 다음 드라이버 중 하나를 설치할 수 있습니다:",
"Amount of RAM allocated to the minikube VM (format: \u003cnumber\u003e[\u003cunit\u003e], where unit = b, k, m or g).": "minikube 가상 머신에 할당할 RAM 의 용량 (format: \u003cnumber\u003e[\u003cunit\u003e], where unit = b, k, m or g)",
"Amount of time to wait for a service in seconds": "서비스를 기다리는 시간(초)",
"Amount of time to wait for service in seconds": "서비스를 기다리는 시간(초)",
"Another hypervisor, such as VirtualBox, is conflicting with KVM. Please stop the other hypervisor, or use --driver to switch to it.": "VirtualBox 와 같은 또 다른 하이퍼바이저가 KVM 과 충돌이 발생합니다. 다른 하이퍼바이저를 중단하거나 --driver 로 변경하세요",
"Another minikube instance is downloading dependencies... ": "다른 minikube 인스턴스가 종속성을 다운로드 중입니다...",
"Another program is using a file required by minikube. If you are using Hyper-V, try stopping the minikube VM from within the Hyper-V manager": "minikube 에 필요한 파일을 다른 프로그램이 사용하고 있습니다. Hyper-V 를 사용하고 있다면, Hyper-V 매니저에서 minikube VM 을 중지해보세요",
"Another tunnel process is already running, terminate the existing instance to start a new one": "다른 터널 프로세스가 이미 실행 중입니다. 새로운 터널 프로세스를 시작하려면 기존 인스턴스를 종료하세요",
"At least needs control plane nodes to enable addon": "에드온을 활성화하기 위해서는 적어도 컨트롤 플레인 노드가 필요합니다",
"Auto-pause is already enabled.": "자동 일시 정지 설정이 이미 활성화되어있습니다",
"Automatically selected the {{.driver}} driver": "자동적으로 {{.driver}} 드라이버가 선택되었습니다",
"Automatically selected the {{.driver}} driver. Other choices: {{.alternates}}": "자동적으로 {{.driver}} 드라이버가 선택되었습니다. 다른 드라이버 목록: {{.alternates}}",
"Automatically selected the {{.network}} network": "자동적으로 {{.network}} 네트워크가 선택되었습니다",
"Available Commands": "사용 가능한 명령어",
"Basic Commands:": "기본 명령어:",
"Because you are using a Docker driver on {{.operating_system}}, the terminal needs to be open to run it.": "{{.operating_system}} 에서 Docker 드라이버를 사용하고 있기 때문에, 터미널을 열어야 실행할 수 있습니다",
"Bind Address: {{.Address}}": "연결된 주소: {{.Address}}",
"Block until the apiserver is servicing API requests": "apiserver 가 API 요청을 처리할 때까지 블록합니다",
"Booting up control plane ...": "컨트롤 플레인을 부팅하는 중 ...",
"Both driver={{.driver}} and vm-driver={{.vmd}} have been set.\n\n Since vm-driver is deprecated, minikube will default to driver={{.driver}}.\n\n If vm-driver is set in the global config, please run \"minikube config unset vm-driver\" to resolve this warning.\n\t\t\t": "driver={{.driver}} 와 vm-driver={{.vmd}} 가 모두 설정되었습니다.\n\n vm-driver 가 사용 중단되었으므로, minikube 는 driver={{.driver}} 로 기본값을 설정합니다.\n\n 전역 구성에서 vm-driver 가 설정된 경우, 이 경고를 해결하려면 \"minikube config unset vm-driver\" 를 실행하세요.\n\t\t\t",
"Bridge CNI is incompatible with multi-node clusters, use a different CNI": "Bridge CNI 는 다중 노드 클러스터와 호환되지 않습니다. 다른 CNI 를 사용하세요",
"Build a container image in minikube": "minikube 내 컨테이너 이미지를 빌드합니다",
"Build a container image, using the container runtime.": "컨테이너 런타임을 사용하여 컨테이너 이미지를 빌드합니다",
"Build image on all nodes.": "모든 노드에서 이미지를 빌드합니다",
"CGroup allocation is not available in your environment, You might be running minikube in a nested container. Try running:\n\t\t\t\n\tminikube start --extra-config=kubelet.cgroups-per-qos=false --extra-config=kubelet.enforce-node-allocatable=\"\"\n\n\t\t\t\n\t\t\t": "사용자 환경에서 CGroup 할당을 사용할 수 없습니다. minikube 를 중첩된 컨테이너에서 실행하고 있을 수 있습니다. 다음을 실행해보세요:\n\t\t\t\n\tminikube start --extra-config=kubelet.cgroups-per-qos=false --extra-config=kubelet.enforce-node-allocatable=\"\"\n\n\t\t\t\n\t\t\t",
"CGroup allocation is not available in your environment. You might be running minikube in a nested container. Try running:\n\t\t\t\n\tminikube start --extra-config=kubelet.cgroups-per-qos=false --extra-config=kubelet.enforce-node-allocatable=\"\"\n\n\t\t\t\n\t\t\t": "사용자 환경에서 CGroup 할당을 사용할 수 없습니다. minikube 를 중첩된 컨테이너에서 실행하고 있을 수 있습니다. 다음을 실행해보세요:\n\t\t\t\n\tminikube start --extra-config=kubelet.cgroups-per-qos=false --extra-config=kubelet.enforce-node-allocatable=\"\"\n\n\t\t\t\n\t\t\t",
"CNI plug-in to use. Valid options: auto, bridge, calico, cilium, flannel, kindnet, or path to a CNI manifest (default: auto)": "사용할 CNI 플러그인입니다. 유효한 옵션은 다음과 같습니다: auto, bridge, calico, cilium, flannel, kindnet, 또는 CNI 매니페스트의 경로 (기본값: auto)",
"Cache image from docker daemon": "도커 데몬의 캐시 이미지",
"Cache image from remote registry": "원격 레지스트리의 캐시 이미지",
"Cache image to docker daemon": "도커 데몬에 이미지를 캐시",
"Cache image to remote registry": "원격 레지스트리에 이미지를 캐시",
"Cannot find directory {{.path}} for copy": "복사하기 위한 디렉토리 {{.path}} 를 찾을 수 없습니다.",
"Cannot find directory {{.path}} for mount": "마운트하기 위한 디렉토리 {{.path}} 를 찾을 수 없습니다",
"Cannot use both --output and --format options": "--output 과 --format 옵션을 함께 사용할 수 없습니다",
"Cannot use the option --no-kubernetes on the {{.name}} driver": "{{.name}} 드라이버에서 --no-kubernetes 옵션을 사용할 수 없습니다",
"Certificate {{.certPath}} has expired. Generating a new one...": "{{.certPath}} 인증서가 만료되었습니다. 새로운 것을 생성하는 중...",
"Changing the API server port of an existing minikube HA (multi-control plane) cluster is not currently supported. Please first delete the cluster.": "",
"Changing the HA (multi-control plane) mode of an existing minikube cluster is not currently supported. Please first delete the cluster and use 'minikube start --ha' to create new one.": "",
"Check if you have unnecessary pods running by running 'kubectl get po -A": "'kubectl get po -A' 를 실행하여 불필요한 pod 가 실행 중인지 확인하세요",
"Check output of 'journalctl -xeu kubelet', try passing --extra-config=kubelet.cgroup-driver=systemd to minikube start": "'journalctl -xeu kubelet' 의 출력을 확인하고, minikube start 에 --extra-config=kubelet.cgroup-driver=systemd 를 전달해보세요",
"Check that libvirt is setup properly": "libvirt 가 올바르게 설정되었는지 확인하세요",
"Check that minikube is running and that you have specified the correct namespace (-n flag) if required.": "minikube 가 실행 중인지 그리고 정확한 네임스페이스를 (-n 플래그로) 명시하였는지 확인하세요",
"Check that the provided apiserver flags are valid": "주어진 apiserver 플래그가 유효한지 확인하세요",
"Check that the provided apiserver flags are valid, and that SELinux is disabled": "주어진 apiserver 플래그가 유효한지 그리고 SELinux 가 비활성화되었는지 확인하세요",
"Check that your --kubernetes-version has a leading 'v'. For example: 'v1.1.14'": "입력한 --kubernetes-version 이 'v'로 시작하는지 확인하세요. 예시: 'v1.1.14'",
"Check your firewall rules for interference, and run 'virt-host-validate' to check for KVM configuration issues. If you are running minikube within a VM, consider using --driver=none": "방화벽 규칙의 간섭을 확인하고 'virt-host-validate'를 실행하여 KVM 구성 문제를 확인하십시오. VM 내에서 minikube를 실행하는 경우 --driver=none 사용을 고려하세요",
"Choose a smaller value for --memory, such as 2000": "--memory에 대해 2000과 같이 더 작은 값을 선택하세요",
"ChromeOS is missing the kernel support necessary for running Kubernetes": "ChromeOS 에는 Kubernetes 를 실행하기 위해 필요한 커널 지원이 누락되어 있습니다",
"Cluster was created without any CNI, adding a node to it might cause broken networking.": "CNI 없이 클러스터가 생성되었으므로, 클러스터에 노드를 추가하면 네트워킹이 중단될 수 있습니다",
"Configuration and Management Commands:": "환경 설정 및 관리 명령어:",
"Configure a default route on this Linux host, or use another --driver that does not require it": "이 Linux 호스트에 대한 기본 경로를 구성하거나, 이를 필요로하지 않는 다른 --driver 를 사용하세요",
"Configure an external network switch following the official documentation, then add `--hyperv-virtual-switch=\u003cswitch-name\u003e` to `minikube start`": "공식 문서를 따라 외부 네트워크 스위치를 구성한 다음 `minikube start`에 `--hyperv-virtual-switch=\u003cswitch-name\u003e`를 추가하세요",
"Configure environment to use minikube's Podman service": "minikube 의 Podman 서비스를 사용하도록 환경을 구성합니다",
"Configures the addon w/ADDON_NAME within minikube (example: minikube addons configure registry-creds). For a list of available addons use: minikube addons list": "minikube 내에서 애드온 w/ADDON_NAME 을 구성합니다 (예시: minikube addons configure registry-creds). 사용 가능한 애드온 목록은 다음과 같습니다: minikube addons list",
"Configuring RBAC rules ...": "RBAC 규칙을 구성하는 중 ...",
"Configuring local host environment ...": "로컬 환경 변수를 구성하는 중 ...",
"Configuring {{.name}} (Container Networking Interface) ...": "{{.name}} (Container Networking Interface) 를 구성하는 중 ...",
"Confirm that you have a working internet connection and that your VM has not run out of resources by using: 'minikube logs'": "'minikube logs' 를 사용하여 인터넷 연결이 작동하는지 그리고 VM 이 리소스를 모두 사용하지 않았는지 확인하세요",
"Confirm that you have supplied the correct value to --hyperv-virtual-switch using the 'Get-VMSwitch' command": "'Get-VMSwitch' 명령을 사용하여 --hyperv-virtual-switch 에 올바른 값을 제공했는지 확인하세요",
"Connect to LoadBalancer services": "로드밸런서 서비스에 연결합니다",
"Consider creating a cluster with larger memory size using `minikube start --memory SIZE_MB` ": "`minikube start --memory SIZE_MB` 를 사용하여 더 큰 메모리 크기의 클러스터를 생성하는 것을 고려하세요",
"Consider increasing Docker Desktop's memory size.": "Docker Desktop 의 메모리 크기를 늘리는 것을 고려하세요",
"Continuously listing/getting the status with optional interval duration.": "",
"Control Plane could not update, try minikube delete --all --purge": "컨트롤 플레인을 업데이트할 수 없습니다. minikube delete --all --purge 를 시도해보세요",
"Copy the specified file into minikube": "지정된 파일을 minikube 에 복사합니다",
"Copy the specified file into minikube, it will be saved at path \u003ctarget file absolute path\u003e in your minikube.\nDefault target node controlplane and If \u003csource node name\u003e is omitted, It will trying to copy from host.\n\nExample Command : \"minikube cp a.txt /home/docker/b.txt\" +\n \"minikube cp a.txt minikube-m02:/home/docker/b.txt\"\n \"minikube cp minikube-m01:a.txt minikube-m02:/home/docker/b.txt\"": "",
"Could not determine a Google Cloud project, which might be ok.": "Google Cloud 프로젝트를 확인할 수 없습니다. 이는 정상일 수 있습니다",
"Could not find any GCP credentials. Either run `gcloud auth application-default login` or set the GOOGLE_APPLICATION_CREDENTIALS environment variable to the path of your credentials file.": "",
"Could not process error from failed deletion": "삭제 실패로 인한 오류를 처리할 수 없습니다",
"Could not process errors from failed deletion": "삭제 실패로 인한 오류를 처리할 수 없습니다",
"Could not resolve IP address": "IP 주소를 확인할 수 없습니다",
"Country code of the image mirror to be used. Leave empty to use the global one. For Chinese mainland users, set it to cn.": "",
"Create Highly Available Multi-Control Plane Cluster with a minimum of three control-plane nodes that will also be marked for work.": "",
"Creating Kubernetes in {{.driver_name}} {{.machine_type}} with (CPUs={{.number_of_cpus}}) ({{.number_of_host_cpus}} available), Memory={{.memory_size}}MB ({{.host_memory_size}}MB available) ...": "{{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}} ({{.number_of_host_cpus}}MB 유효한), Memory={{.memory_size}}MB ({{.host_memory_size}}MB 유효한) ...",
"Creating mount {{.name}} ...": "마운트 {{.name}} 를 생성하는 중 ...",
"Creating {{.driver_name}} VM (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB, Disk={{.disk_size}}MB) ...": "{{.driver_name}} VM (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB, Disk={{.disk_size}}MB) 를 생성하는 중 ...",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB, Disk={{.disk_size}}MB) ...": "{{.driver_name}} {{.machine_type}} (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB, Disk={{.disk_size}}MB) 를 생성하는 중 ...",
"Creating {{.driver_name}} {{.machine_type}} (CPUs={{if not .number_of_cpus}}no-limit{{else}}{{.number_of_cpus}}{{end}}, Memory={{if not .memory_size}}no-limit{{else}}{{.memory_size}}MB{{end}}) ...": "",
"Current context is \"{{.context}}\"": "현재 컨텍스트는 \"{{.context}}\" 입니다",
"DEPRECATED, use `driver` instead.": "DEPRECATED 되었습니다, 'driver' 를 사용하세요",
"DEPRECATED: Replaced by --cni": "DEPRECATED: --cni 로 대체되었습니다",
"DEPRECATED: Replaced by --cni=bridge": "DEPRECATED: --cni=bridge 로 대체되었습니다",
"Default group id used for the mount": "마운트를 위한 디폴트 group id",
"Default user id used for the mount": "마운트를 위한 디폴트 user id",
"Delete an image from the local cache.": "로컬 캐시에서 이미지를 삭제합니다",
"Delete the existing '{{.name}}' cluster using: '{{.delcommand}}', or start the existing '{{.name}}' cluster using: '{{.command}} --driver={{.old}}'": "",
"Deletes a local Kubernetes cluster": "로컬 쿠버네티스 클러스터를 삭제합니다",
"Deletes a local Kubernetes cluster. This command deletes the VM, and removes all\nassociated files.": "로컬 쿠버네티스 클러스터를 삭제합니다. 해당 명령어는 가상 머신을 삭제하고 모든 관련 파일을 삭제합니다",
"Deletes a local kubernetes cluster": "로컬 쿠버네티스 클러스터를 삭제합니다",
"Deletes a local kubernetes cluster. This command deletes the VM, and removes all\nassociated files.": "로컬 쿠버네티스 클러스터를 삭제합니다. 해당 명령어는 가상 머신을 삭제하고 모든 관련 파일을 삭제합니다",
"Deletes a node from a cluster.": "클러스터에서 노드를 삭제합니다",
"Deleting \"{{.profile_name}}\" in {{.driver_name}} ...": "{{.driver_name}} 의 \"{{.profile_name}}\" 를 삭제하는 중 ...",
"Deleting container \"{{.name}}\" ...": "",
"Deleting existing cluster {{.name}} with different driver {{.driver_name}} due to --delete-on-failure flag set by the user. ": "",
"Deleting node {{.name}} from cluster {{.cluster}}": "클러스터 {{.cluster}} 에서 노드 {{.name}} 를 삭제하는 중 ...",
"Directory to output licenses to": "",
"Disable checking for the availability of hardware virtualization before the vm is started (virtualbox driver only)": "가상 머신 시작 전 하드웨어 가상화 지원 여부 확인 작업을 비활성화합니다 (virtualbox 드라이버 한정)",
"Disable dynamic memory in your VM manager, or pass in a larger --memory value": "",
"Disables the addon w/ADDON_NAME within minikube (example: minikube addons disable dashboard). For a list of available addons use: minikube addons list ": "",
"Disables the filesystem mounts provided by the hypervisors": "",
"Disk size allocated to the minikube VM (format: \u003cnumber\u003e[\u003cunit\u003e], where unit = b, k, m or g).": "",
"Display dashboard URL instead of opening a browser": "",
"Display the Kubernetes addons URL in the CLI instead of opening it in the default browser": "",
"Display the Kubernetes service URL in the CLI instead of opening it in the default browser": "",
"Display values currently set in the minikube config file": "",
"Display values currently set in the minikube config file.": "",
"Docker Desktop has less than 2 CPUs configured, but Kubernetes requires at least 2 to be available": "",
"Docker Desktop is configured for Windows containers, but Linux containers are required for minikube": "",
"Docker Desktop only has {{.size}}MiB available, less than the required {{.req}}MiB for Kubernetes": "",
"Docker Desktop only has {{.size}}MiB available, you may encounter application deployment failures.": "",
"Docker container exited prematurely after it was created, consider investigating Docker's performance/health.": "",
"Docker has less than 2 CPUs available, but Kubernetes requires at least 2 to be available": "",
"Docker inside the VM is unavailable. Try running 'minikube delete' to reset the VM.": "",
"Docs have been saved at - {{.path}}": "문서가 다음 경로에 저장되었습니다 - {{.path}}",
"Documentation: {{.url}}": "문서: {{.url}}",
"Done! kubectl is now configured to use \"{{.name}}\"": "끝났습니다! 이제 kubectl 이 \"{{.name}}\" 를 사용할 수 있도록 설정되었습니다",
"Done! kubectl is now configured to use \"{{.name}}\" cluster and \"{{.ns}}\" namespace by default": "끝났습니다! kubectl이 \"{{.name}}\" 클러스터와 \"{{.ns}}\" 네임스페이스를 기본적으로 사용하도록 구성되었습니다.",
"Done! minikube is ready without Kubernetes!": "",
"Download complete!": "다운로드가 성공하였습니다!",
"Downloading Kubernetes {{.version}} preload ...": "쿠버네티스 {{.version}} 을 다운로드 중 ...",
"Downloading VM boot image ...": "가상 머신 부트 이미지 다운로드 중 ...",
"Downloading driver {{.driver}}:": "드라이버 {{.driver}} 다운로드 중 :",
"Downloading {{.name}} {{.version}}": "{{.name}} {{.version}} 다운로드 중",
"Due to DNS issues your cluster may have problems starting and you may not be able to pull images\nMore details available at: https://minikube.sigs.k8s.io/docs/drivers/qemu/#known-issues": "",
"Due to changes in macOS 13+ minikube doesn't currently support VirtualBox. You can use alternative drivers such as docker or {{.driver}}.\n https://minikube.sigs.k8s.io/docs/drivers/docker/\n https://minikube.sigs.k8s.io/docs/drivers/{{.driver}}/\n\n For more details on the issue see: https://github.com/kubernetes/minikube/issues/15274\n": "",
"Duration of inactivity before the minikube VM is paused (default 1m0s)": "",
"Duration until minikube certificate expiration, defaults to three years (26280h).": "",
"ERROR creating `registry-creds-acr` secret": "registry-creds-acr` secret 생성 오류",
"ERROR creating `registry-creds-dpr` secret": "`registry-creds-dpr` secret 생성 오류",
"ERROR creating `registry-creds-ecr` secret: {{.error}}": "`registry-creds-ecr` secret 생성 오류: {{.error}}",
"ERROR creating `registry-creds-gcr` secret: {{.error}}": "`registry-creds-gcr` secret 생성 오류: {{.error}}",
"Either systemctl is not installed, or Docker is broken. Run 'sudo systemctl start docker' and 'journalctl -u docker'": "",
"Enable addons. see `minikube addons list` for a list of valid addon names.": "",
"Enable experimental NVIDIA GPU support in minikube": "",
"Enable host resolver for NAT DNS requests (virtualbox driver only)": "",
"Enable or disable a minikube addon": "",
"Enable proxy for NAT DNS requests (virtualbox driver only)": "",
"Enabled addons: {{.addons}}": "애드온 활성화 : {{.addons}}",
"Enables the addon w/ADDON_NAME within minikube. For a list of available addons use: minikube addons list ": "",
"Enabling '{{.name}}' returned an error: {{.error}}": "",
"Enabling addons: {{.addons}}": "애드온을 활성화하는 중: {{.addons}}",
"Enabling dashboard ...": "대시보드를 활성화하는 중 ...",
"Ensure that CRI-O is installed and healthy: Run 'sudo systemctl start crio' and 'journalctl -u crio'. Alternatively, use --container-runtime=docker": "",
"Ensure that Docker is installed and healthy: Run 'sudo systemctl start docker' and 'journalctl -u docker'. Alternatively, select another value for --driver": "",
"Ensure that the required 'pids' cgroup is enabled on your host: grep pids /proc/cgroups": "",
"Ensure that the user listed in /etc/libvirt/qemu.conf has access to your home directory": "",
"Ensure that you are a member of the appropriate libvirt group (remember to relogin for group changes to take effect!)": "",
"Ensure that your value for HTTPS_PROXY points to an HTTPS proxy rather than an HTTP proxy": "",
"Ensure the tmp directory path is writable to the current user.": "",
"Ensure you have at least 20GB of free disk space.": "",
"Ensure your {{.driver_name}} is running and is healthy.": "",
"Environment variables to pass to the Docker daemon. (format: key=value)": "",
"Environment variables to pass to the build. (format: key=value)": "",
"Error adding node to cluster": "클러스터에 노드 추가 오류",
"Error code docs have been saved at - {{.path}}": "",
"Error creating minikube directory": "minikube 폴더 생성 오류",
"Error creating view template": "",
"Error detecting shell": "shell 탐지 오류",
"Error executing view template": "",
"Error finding port for mount": "",
"Error generating set output": "",
"Error generating unset output": "",
"Error getting IP": "IP 조회 오류",
"Error getting client": "클라이언트 조회 오류",
"Error getting client: {{.error}}": "client 조회 오류 {{.error}}",
"Error getting cluster": "클러스터 조회 오류",
"Error getting cluster bootstrapper": "클러스터 부트스트래퍼 조회 오류",
"Error getting cluster config": "클러스터 컨피그 조회 오류",
"Error getting config": "컨피그 조회 오류",
"Error getting control-plane node": "",
"Error getting host": "호스트 조회 오류",
"Error getting host IP": "호스트 IP 조회 오류",
"Error getting host status": "호스트 상태 조회 오류",
"Error getting machine logs": "머신 로그 조회 오류",
"Error getting port binding for '{{.driver_name}} driver: {{.error}}": "",
"Error getting service status": "서비스 상태 조회 오류",
"Error getting service with namespace: {{.namespace}} and labels {{.labelName}}:{{.addonName}}: {{.error}}": "",
"Error getting ssh client": "ssh 클라이언트 조회 오류",
"Error getting the host IP address to use from within the VM": "",
"Error killing mount process": "",
"Error loading api": "api 로딩 오류",
"Error loading profile config": "프로필 컨피그 로딩 오류",
"Error loading profile config: {{.error}}": "프로필 컨피그 로딩 오류: {{.error}}",
"Error opening service": "",
"Error parsing minikube version: {{.error}}": "minikube 버전 파싱 오류: {{.error}}",
"Error parsing {{.name}}={{.value}}, {{.err}}": "",
"Error reading {{.path}}: {{.error}}": "",
"Error starting cluster": "클러스터 시작 오류",
"Error starting mount": "마운트 시작 오류",
"Error starting node": "노드 시작 오류",
"Error while setting kubectl current context : {{.error}}": "kubectl current context 설정 오류 : {{.error}}",
"Error while setting kubectl current context: {{.error}}": "",
"Error with ssh-add": "",
"Error writing mount pid": "",
"Examples": "예시",
"Executing \"{{.command}}\" took an unusually long time: {{.duration}}": "",
"Existing disk is missing new features ({{.error}}). To upgrade, run 'minikube delete'": "",
"Exiting due to {{.fatal_code}}: {{.fatal_msg}}": "",
"Exposed port of the proxyfied dashboard. Set to 0 to pick a random port.": "",
"External Adapter on which external switch will be created if no external switch is found. (hyperv driver only)": "",
"Fail check if container paused": "",
"Failed removing pid from pidfile: {{.error}}": "",
"Failed runtime": "런타임이 실패하였습니다",
"Failed to build image": "",
"Failed to cache ISO": "ISO 캐싱에 실패하였습니다",
"Failed to cache and load images": "이미지 캐싱 및 로딩에 실패하였습니다",
"Failed to cache binaries": "바이너리 캐싱에 실패하였습니다",
"Failed to cache images to tar": "이미지를 tar 로 캐싱하는 데 실패하였습니다",
"Failed to cache kubectl": "kubectl 캐싱에 실패하였습니다",
"Failed to change permissions for {{.minikube_dir_path}}: {{.error}}": "{{.minikube_dir_path}} 의 권한 변경에 실패하였습니다: {{.error}}",
"Failed to check if machine exists": "머신이 존재하는지 확인하는 데 실패하였습니다",
"Failed to check main repository and mirrors for images": "",
"Failed to configure auto-pause {{.profile}}": "",
"Failed to configure metallb IP {{.profile}}": "",
"Failed to configure registry-aliases {{.profile}}": "",
"Failed to create file": "",
"Failed to delete cluster {{.name}}, proceeding with retry anyway.": "",
"Failed to delete cluster {{.name}}.": "",
"Failed to delete cluster: {{.error}}": "클러스터 제거에 실패하였습니다: {{.error}}",
"Failed to delete images": "이미지 제거에 실패하였습니다",
"Failed to delete images from config": "컨피그로부터 이미지 제거에 실패하였습니다",
"Failed to delete node {{.name}}": "노드 {{.name}} 제거에 실패하였습니다",
"Failed to delete profile(s): {{.error}}": "",
"Failed to download licenses": "",
"Failed to enable container runtime": "컨테이너 런타임 활성화에 실패하였습니다",
"Failed to generate config": "컨피그 생성에 실패하였습니다",
"Failed to get bootstrapper": "부트스트래퍼 조회에 실패하였습니다",
"Failed to get command runner": "",
"Failed to get driver URL": "드라이버 URL 조회에 실패하였습니다",
"Failed to get image map": "",
"Failed to get service URL - check that minikube is running and that you have specified the correct namespace (-n flag) if required: {{.error}}": "",
"Failed to get service URL: {{.error}}": "서비스 URL 조회에 실패하였습니다: {{.error}}",
"Failed to get temp": "",
"Failed to kill mount process: {{.error}}": "마운트 프로세스 중지에 실패하였습니다: {{.error}}",
"Failed to list cached images": "캐시된 이미지를 조회하는 데 실패하였습니다",
"Failed to list images": "",
"Failed to load image": "",
"Failed to persist images": "",
"Failed to pull image": "",
"Failed to pull images": "",
"Failed to push images": "",
"Failed to read temp": "",
"Failed to reload cached images": "캐시된 이미지를 다시 불러오는 데 실패하였습니다",
"Failed to remove image": "",
"Failed to remove images for profile {{.pName}} {{.error}}": "",
"Failed to save config": "컨피그 저장에 실패하였습니다",
"Failed to save config {{.profile}}": "",
"Failed to save dir": "",
"Failed to save image": "",
"Failed to save stdin": "",
"Failed to set NO_PROXY Env. Please use `export NO_PROXY=$NO_PROXY,{{.ip}}`.": "",
"Failed to setup certs": "",
"Failed to setup kubeconfig": "kubeconfig 설정에 실패하였습니다",
"Failed to start container runtime": "",
"Failed to start node {{.name}}": "노드 {{.name}} 시작에 실패하였습니다",
"Failed to start {{.driver}} {{.driver_type}}. Running \"{{.cmd}}\" may fix it: {{.error}}": "",
"Failed to stop node {{.name}}": "노드 {{.name}} 중지에 실패하였습니다",
"Failed to stop node {{.name}}: {{.error}}": "",
"Failed to stop ssh-agent process: {{.error}}": "",
"Failed to tag images": "",
"Failed to update cluster": "클러스터를 수정하는 데 실패하였습니다",
"Failed to update config": "컨피그를 수정하는 데 실패하였습니다",
"Failed unmount: {{.error}}": "마운트 해제에 실패하였습니다: {{.error}}",
"Failing to connect to {{.curlTarget}} from inside the minikube {{.type}}": "",
"Filter to use only VM Drivers": "",
"Flags": "",
"Follow": "",
"For an improved experience it's recommended to use Docker Engine instead of Docker Desktop.\nDocker Engine installation instructions: https://docs.docker.com/engine/install/#server": "",
"For improved {{.driver}} performance, {{.fix}}": "",
"For more information see: https://minikube.sigs.k8s.io/docs/drivers/{{.driver}}": "",
"For more information, see:": "더 많은 정보를 보려면, 다음을 참고하세요:",
"For more information, see: https://minikube.sigs.k8s.io/docs/reference/drivers/none/": "",
"For more information, see: {{.url}}": "",
"Force environment to be configured for a specified shell: [fish, cmd, powershell, tcsh, bash, zsh], default is auto-detect": "",
"Force minikube to perform possibly dangerous operations": "",
"Format output. One of: short|table|json|yaml": "",
"Format to print stdout in. Options include: [text,json]": "",
"Forwards all services in a namespace (defaults to \"false\")": "",
"Found docker, but the docker service isn't running. Try restarting the docker service.": "도커를 찾았으나 docker service 가 실행중이지 않습니다, docker service 를 다시 시작해주세요",
"Found driver(s) but none were healthy. See above for suggestions how to fix installed drivers.": "",
"Found network options:": "네트워크 옵션을 찾았습니다",
"Found {{.number}} invalid profile(s) !": "{{.number}} 개의 무효한 프로필을 찾았습니다",
"Found {{.number}} invalid profile(s) ! ": "",
"Generate command completion for PowerShell.": "",
"Generate command completion for a shell": "",
"Generate command completion for bash.": "",
"Generate command completion for fish .": "",
"Generate command completion for zsh.": "",
"Generate unable to parse disk size '{{.diskSize}}': {{.error}}": "",
"Generate unable to parse memory '{{.memory}}': {{.error}}": "",
"Generating certificates and keys ...": "인증서 및 키를 생성하는 중 ...",
"Get or list the current profiles (clusters)": "",
"Gets the logs of the running instance, used for debugging minikube, not user code.": "",
"Gets the status of a local Kubernetes cluster": "로컬 쿠버네티스 클러스터의 상태를 가져옵니다",
"Gets the status of a local Kubernetes cluster.\n\tExit status contains the status of minikube's VM, cluster and Kubernetes encoded on it's bits in this order from right to left.\n\tEg: 7 meaning: 1 (for minikube NOK) + 2 (for cluster NOK) + 4 (for Kubernetes NOK)": "",
"Gets the value of PROPERTY_NAME from the minikube config file": "",
"Getting machine config failed": "머신 컨피그 조회 실패",
"Global Flags": "",
"Go template format string for the cache list output. The format for Go templates can be found here: https://pkg.go.dev/text/template\nFor the list of accessible variables for the template, see the struct values here: https://pkg.go.dev/k8s.io/minikube/cmd/minikube/cmd#CacheListTemplate": "",
"Go template format string for the config view output. The format for Go templates can be found here: https://pkg.go.dev/text/template\nFor the list of accessible variables for the template, see the struct values here: https://pkg.go.dev/k8s.io/minikube/cmd/minikube/cmd/config#ConfigViewTemplate": "",
"Go template format string for the status output. The format for Go templates can be found here: https://pkg.go.dev/text/template\nFor the list accessible variables for the template, see the struct values here: https://pkg.go.dev/k8s.io/minikube/cmd/minikube/cmd#Status": "",
"Group ID: {{.groupID}}": "",
"HA (multi-control plane) clusters require 3 or more control-plane nodes": "",
"Have you set up libvirt correctly?": "libvirt 설정을 알맞게 하셨습니까?",
"Headlamp can display more detailed information when metrics-server is installed. To install it, run:\n\n\tminikube{{.profileArg}} addons enable metrics-server\n": "",
"Hide the hypervisor signature from the guest in minikube (kvm2 driver only)": "",
"Hyper-V requires that memory MB be an even number, {{.memory}}MB was specified, try passing `--memory {{.suggestMemory}}`": "",
"Hyperkit is broken. Upgrade to the latest hyperkit version and/or Docker for Desktop. Alternatively, you may choose an alternate --driver": "",
"Hyperkit networking is broken. Try disabling Internet Sharing: System Preference \u003e Sharing \u003e Internet Sharing. \nAlternatively, you can try upgrading to the latest hyperkit version, or using an alternate driver.": "",
"IP Address to use to expose ports (docker and podman driver only)": "",
"IP address (ssh driver only)": "",
"If present, writes to the provided file instead of stdout.": "",
"If set, added node will be available as worker. Defaults to true.": "",
"If set, added node will become a control-plane. Defaults to false. Currently only supported for existing HA (multi-control plane) clusters.": "",
"If set, automatically updates drivers to the latest version. Defaults to true.": "",
"If set, delete the current cluster if start fails and try again. Defaults to false.": "",
"If set, disables metrics reporting (CPU and memory usage), this can improve CPU usage. Defaults to false.": "",
"If set, disables optimizations that are set for local Kubernetes. Including decreasing CoreDNS replicas from 2 to 1. Defaults to false.": "",
"If set, download tarball of preloaded images if available to improve start time. Defaults to true.": "",
"If set, force the container runtime to use systemd as cgroup manager. Defaults to false.": "",
"If set, install addons. Defaults to true.": "",
"If set, minikube VM/container will start without starting or configuring Kubernetes. (only works on new clusters)": "",
"If set, pause all namespaces": "",
"If set, unpause all namespaces": "",
"If the above advice does not help, please let us know:": "",
"If the host has a firewall:\n\t\t\n\t\t1. Allow a port through the firewall\n\t\t2. Specify \"--port=\u003cport_number\u003e\" for \"minikube mount\"": "",
"If true, cache docker images for the current bootstrapper and load them into the machine. Always false with --driver=none.": "",
"If true, only download and cache files for later use - don't install or start anything.": "",
"If true, pods might get deleted and restarted on addon enable": "",
"If true, print web links to addons' documentation if using --output=list (default).": "",
"If true, returns list of profiles faster by skipping validating the status of the cluster.": "",
"If true, will perform potentially dangerous operations. Use with discretion.": "",
"If you are running minikube within a VM, consider using --driver=none:": "",
"If you are still interested to make {{.driver_name}} driver work. The following suggestions might help you get passed this issue:": "",
"If you don't want your credentials mounted into a specific pod, add a label with the `gcp-auth-skip-secret` key to your pod configuration.": "",
"If you want existing pods to be mounted with credentials, either recreate them or rerun addons enable with --refresh.": "",
"Ignoring empty custom image {{.name}}": "",
"Ignoring invalid pair entry {{.pair}}": "",
"Ignoring unknown custom image {{.name}}": "",
"Ignoring unknown custom registry {{.name}}": "",
"Image was not built for the current minikube version. To resolve this you can delete and recreate your minikube cluster using the latest images. Expected minikube version: {{.imageMinikubeVersion}} -\u003e Actual minikube version: {{.minikubeVersion}}": "",
"Images Commands:": "이미지 명령어",
"Images used by this addon. Separated by commas.": "",
"In order to use the fall back image, you need to log in to the github packages registry": "",
"Insecure Docker registries to pass to the Docker daemon. The default service CIDR range will automatically be added.": "",
"Install VirtualBox and ensure it is in the path, or select an alternative value for --driver": "",
"Install the latest hyperkit binary, and run 'minikube delete'": "",
"Interval is an invalid duration: {{.error}}": "",
"Interval must be greater than 0s": "",
"Invalid port": "",
"Istio needs {{.minCPUs}} CPUs -- your configuration only allocates {{.cpus}} CPUs": "",
"Istio needs {{.minMem}}MB of memory -- your configuration only allocates {{.memory}}MB": "",
"It seems that you are running in GCE, which means authentication should work without the GCP Auth addon. If you would still like to authenticate using a credentials file, use the --force flag.": "",
"Kicbase images have not been deleted. To delete images run:": "",
"Kill the mount process spawned by minikube start": "",
"Kubernetes requires at least 2 CPU's to start": "",
"Kubernetes version not found in GitHub version list. You can force a Kubernetes version via the --force flag": "",
"Kubernetes version {{.specified}} found in GitHub version list": "",
"Kubernetes version {{.specified}} found in version list": "",
"Kubernetes version {{.version}} is not supported by this release of minikube": "",
"Kubernetes {{.new}} is now available. If you would like to upgrade, specify: --kubernetes-version={{.prefix}}{{.new}}": "이제 {{.new}} 버전의 쿠버네티스를 사용할 수 있습니다. 업그레이드를 원하신다면 다음과 같이 지정하세요: --kubernetes-version={{.prefix}}{{.new}}",
"Kubernetes {{.version}} is not supported by this release of minikube": "{{.version}} 버전의 쿠버네티스는 설치되어 있는 버전의 minikube에서 지원되지 않습니다.",
"Kubernetes: Stopping ...": "",
"Kubernetes: {{.status}}": "",
"Launching Kubernetes ...": "쿠버네티스를 시작하는 중 ...",
"Launching proxy ...": "프록시를 시작하는 중 ...",
"List all available images from the local cache.": "",
"List existing minikube nodes.": "",
"List image names the addon w/ADDON_NAME used. For a list of available addons use: minikube addons list": "",
"List images": "",
"List nodes.": "",
"List of guest VSock ports that should be exposed as sockets on the host (hyperkit driver only)": "",
"List of ports that should be exposed (docker and podman driver only)": "",
"Listening to 0.0.0.0 on external docker host {{.host}}. Please be advised": "",
"Listening to {{.listenAddr}}. This is not recommended and can cause a security vulnerability. Use at your own risk": "",
"Lists all available minikube addons as well as their current statuses (enabled/disabled)": "",
"Lists all minikube profiles.": "모든 minikube 프로필을 조회합니다",
"Lists all valid default values for PROPERTY_NAME": "",
"Lists all valid minikube profiles and detects all possible invalid profiles.": "",
"Lists the URLs for the services in your local cluster": "",
"Load an image into minikube": "",
"Local folders to share with Guest via NFS mounts (hyperkit driver only)": "",
"Local proxy ignored: not passing {{.name}}={{.value}} to docker env.": "",
"Location of the VPNKit socket used for networking. If empty, disables Hyperkit VPNKitSock, if 'auto' uses Docker for Mac VPNKit connection, otherwise uses the specified VSock (hyperkit driver only)": "",
"Location to fetch kubectl, kubelet, \u0026 kubeadm binaries from.": "",
"Locations to fetch the minikube ISO from.": "",
"Log into or run a command on a machine with SSH; similar to 'docker-machine ssh'.": "",
"Log into the minikube environment (for debugging)": "(디버깅을 위해) minikube 환경에 접속합니다",
"Logs file created ({{.logPath}}), remember to include it when reporting issues!": "",
"Manage cache for images": "",
"Manage images": "",
"Message Size: {{.size}}": "메시지 사이즈: {{.size}}",
"Minikube is a CLI tool that provisions and manages single-node Kubernetes clusters optimized for development workflows.": "Minikube 는 개발용으로 최적화된 싱글 노드 쿠버네티스 클러스터 제공 및 관리 CLI 툴입니다",
"Minikube is a tool for managing local Kubernetes clusters.": "Minikube 는 로컬 쿠버네티스 클러스터 관리 툴입니다",
"Minimum VirtualBox Version supported: {{.vers}}, current VirtualBox version: {{.cvers}}": "",
"Modify persistent configuration values": "",
"More information: https://docs.docker.com/engine/install/linux-postinstall/#your-kernel-does-not-support-cgroup-swap-limit-capabilities": "",
"Most users should use the newer 'docker' driver instead, which does not require root!": "",
"Mount type: {{.name}}": "",
"Mounting host path {{.sourcePath}} into VM as {{.destinationPath}} ...": "",
"Mounts the specified directory into minikube": "특정 디렉토리를 minikube 에 마운트합니다",
"Mounts the specified directory into minikube.": "",
"Multiple errors deleting profiles": "",
"Multiple errors encountered:": "",
"Multiple minikube profiles were found - ": "",
"NIC Type used for host only network. One of Am79C970A, Am79C973, 82540EM, 82543GC, 82545EM, or virtio (virtualbox driver only)": "",
"NIC Type used for nat network. One of Am79C970A, Am79C973, 82540EM, 82543GC, 82545EM, or virtio (virtualbox driver only)": "",
"NOTE: Please do not close this terminal as this process must stay alive for the tunnel to be accessible ...": "",
"NOTE: This process must stay alive for the mount to be accessible ...": "",
"Networking and Connectivity Commands:": "",
"No IP address provided. Try specifying --ssh-ip-address, or see https://minikube.sigs.k8s.io/docs/drivers/ssh/": "",
"No changes required for the \"{{.context}}\" context": "",
"No control-plane nodes found.": "",
"No minikube profile was found.": "",
"No possible driver was detected. Try specifying --driver, or see https://minikube.sigs.k8s.io/docs/start/": "",
"No such addon {{.name}}": "",
"No valid URL found for tunnel.": "",
"No valid port found for tunnel.": "",
"Node {{.name}} failed to start, deleting and trying again.": "",
"Node {{.name}} was successfully deleted.": "",
"Node {{.nodeName}} does not exist.": "",
"None of the known repositories are accessible. Consider specifying an alternative image repository with --image-repository flag": "",
"None of the known repositories in your location are accessible. Using {{.image_repository_name}} as fallback.": "",
"Noticed you have an activated docker-env on {{.driver_name}} driver in this terminal:": "",
"Noticed you have an activated podman-env on {{.driver_name}} driver in this terminal:": "",
"Number of extra disks created and attached to the minikube VM (currently only implemented for hyperkit, kvm2, and qemu2 drivers)": "",
"Number of lines back to go within the log": "",
"OS release is {{.pretty_name}}": "",
"One of 'text', 'yaml' or 'json'.": "",
"One of 'yaml' or 'json'.": "",
"Only alphanumeric and dashes '-' are permitted. Minimum 1 character, starting with alphanumeric.": "",
"Only alphanumeric and dashes '-' are permitted. Minimum 2 characters, starting with alphanumeric.": "",
"Open the addons URL with https instead of http": "",
"Open the service URL with https instead of http (defaults to \"false\")": "",
"Opening Kubernetes service {{.namespace_name}}/{{.service_name}} in default browser...": "",
"Opening service {{.namespace_name}}/{{.service_name}} in default browser...": "",
"Opening {{.url}} in your default browser...": "",
"Opens the addon w/ADDON_NAME within minikube (example: minikube addons open dashboard). For a list of available addons use: minikube addons list ": "",
"Operations on nodes": "",
"Options: {{.options}}": "옵션: {{.options}}",
"Output format. Accepted values: [json, yaml]": "",
"Outputs minikube shell completion for the given shell (bash, zsh, fish or powershell)\n\n\tThis depends on the bash-completion binary. Example installation instructions:\n\tOS X:\n\t\t$ brew install bash-completion\n\t\t$ source $(brew --prefix)/etc/bash_completion\n\t\t$ minikube completion bash \u003e ~/.minikube-completion # for bash users\n\t\t$ minikube completion zsh \u003e ~/.minikube-completion # for zsh users\n\t\t$ source ~/.minikube-completion\n\t\t$ minikube completion fish \u003e ~/.config/fish/completions/minikube.fish # for fish users\n\tUbuntu:\n\t\t$ apt-get install bash-completion\n\t\t$ source /etc/bash_completion\n\t\t$ source \u003c(minikube completion bash) # for bash users\n\t\t$ source \u003c(minikube completion zsh) # for zsh users\n\t\t$ minikube completion fish \u003e ~/.config/fish/completions/minikube.fish # for fish users\n\n\tAdditionally, you may want to output the completion to a file and source in your .bashrc\n\n\tWindows:\n\t\t## Save completion code to a script and execute in the profile\n\t\tPS\u003e minikube completion powershell \u003e $HOME\\.minikube-completion.ps1\n\t\tPS\u003e Add-Content $PROFILE '. $HOME\\.minikube-completion.ps1'\n\n\t\t## Execute completion code in the profile\n\t\tPS\u003e Add-Content $PROFILE 'if (Get-Command minikube -ErrorAction SilentlyContinue) {\n\t\t minikube completion powershell | Out-String | Invoke-Expression\n\t\t }'\n\n\tNote for zsh users: [1] zsh completions are only supported in versions of zsh \u003e= 5.2\n\tNote for fish users: [2] please refer to this docs for more details https://fishshell.com/docs/current/#tab-completion\n": "",
"Outputs the licenses of dependencies to a directory": "",
"Overwrite image even if same image:tag name exists": "",
"Path to socket vmnet binary (QEMU driver only)": "",
"Path to the Dockerfile to use (optional)": "",
"Path to the qemu firmware file. Defaults: For Linux, the default firmware location. For macOS, the brew installation location. For Windows, C:\\Program Files\\qemu\\share": "",
"Path to the socket vmnet client binary (QEMU driver only)": "",
"Pause": "",
"Paused {{.count}} containers": "",
"Paused {{.count}} containers in: {{.namespaces}}": "",
"Pausing node {{.name}} ... ": "",
"Please also attach the following file to the GitHub issue:": "",
"Please create a cluster with bigger disk size: `minikube start --disk SIZE_MB` ": "",
"Please either authenticate to the registry or use --base-image flag to use a different registry.": "",
"Please enter a value:": "값을 입력하세요",
"Please free up disk or prune images.": "",
"Please increase Desktop's disk size.": "",
"Please install the minikube hyperkit VM driver, or select an alternative --driver": "",
"Please install the minikube kvm2 VM driver, or select an alternative --driver": "",
"Please make sure the service you are looking for is deployed or is in the correct namespace.": "",
"Please provide a path or url to build": "",
"Please provide an image in the container runtime to save from minikube via \u003cminikube image save IMAGE_NAME\u003e": "",
"Please provide an image in your local daemon to load into minikube via \u003cminikube image load IMAGE_NAME\u003e": "",
"Please provide source and target image": "",
"Please re-eval your docker-env, To ensure your environment variables have updated ports:\n\n\t'minikube -p {{.profile_name}} docker-env'\n\n\t": "",
"Please re-eval your podman-env, To ensure your environment variables have updated ports:\n\n\t'minikube -p {{.profile_name}} podman-env'\n\n\t": "",
"Please run `minikube logs --file=logs.txt` and attach logs.txt to the GitHub issue.": "",
"Please see {{.documentation_url}} for more details": "",
"Please specify the directory to be mounted: \n\tminikube mount \u003csource directory\u003e:\u003ctarget directory\u003e (example: \"/host-home:/vm-home\")": "",
"Please specify the path to copy: \n\tminikube cp \u003csource file path\u003e \u003ctarget file absolute path\u003e (example: \"minikube cp a/b.txt /copied.txt\")": "",
"Please try purging minikube using `minikube delete --all --purge`": "",
"Please visit the following link for documentation around this: \n\thttps://help.github.com/en/packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages#authenticating-to-github-packages\n": "",
"Populates the specified folder with documentation in markdown about minikube": "",
"PowerShell is running in constrained mode, which is incompatible with Hyper-V scripting.": "",
"Powering off \"{{.profile_name}}\" via SSH ...": "\"{{.profile_name}}\"를 SSH로 전원을 끕니다 ...",
"Preparing Kubernetes {{.k8sVersion}} on {{.runtime}} {{.runtimeVersion}} ...": "쿠버네티스 {{.k8sVersion}} 을 {{.runtime}} {{.runtimeVersion}} 런타임으로 설치하는 중",
"Preparing {{.runtime}} {{.runtimeVersion}} ...": "",
"Print current and latest version number": "현재 그리고 최신 버전을 출력합니다",
"Print just the version number.": "",
"Print the version of minikube": "minikube 의 버전을 출력합니다",
"Print the version of minikube.": "minikube 의 버전을 출력합니다.",
"Problems detected in {{.entry}}:": "",
"Problems detected in {{.name}}:": "",
"Profile \"{{.cluster}}\" not found. Run \"minikube profile list\" to view all profiles.": "",
"Profile name \"{{.profilename}}\" is reserved keyword. To delete this profile, run: \"{{.cmd}}\"": "",
"Profile name '{{.name}}' is duplicated with machine name '{{.machine}}' in profile '{{.profile}}'": "",
"Profile name '{{.name}}' is not valid": "",
"Profile name '{{.profilename}}' is not valid": "",
"Profile name should be unique": "",
"Provide VM UUID to restore MAC address (hyperkit driver only)": "",
"Provides instructions to point your terminal's docker-cli to the Docker Engine inside minikube. (Useful for building docker images directly inside minikube)": "",
"Provides instructions to point your terminal's docker-cli to the Docker Engine inside minikube. (Useful for building docker images directly inside minikube)\n\nFor example, you can do all docker operations such as docker build, docker run, and docker ps directly on the docker inside minikube.\n\nNote: You need the docker-cli to be installed on your machine.\ndocker-cli install instructions: https://minikube.sigs.k8s.io/docs/tutorials/docker_desktop_replacement/#steps": "",
"Pull images": "",
"Pull the remote image (no caching)": "",
"Pulling base image ...": "베이스 이미지를 다운받는 중 ...",
"Pulling base image {{.kicVersion}} ...": "",
"Push images": "",
"Push the new image (requires tag)": "",
"Reboot to complete VirtualBox installation, verify that VirtualBox is not blocked by your system, and/or use another hypervisor": "",
"Rebuild libvirt with virt-network support": "",
"Received {{.name}} signal": "",
"Recreate the cluster by running:\n\t\tminikube delete {{.profileArg}}\n\t\tminikube start {{.profileArg}}": "",
"Registries used by this addon. Separated by commas.": "",
"Registry addon with {{.driver}} driver uses port {{.port}} please use that instead of default port 5000": "",
"Registry mirrors to pass to the Docker daemon": "",
"Reinstall VirtualBox and reboot. Alternatively, try the kvm2 driver: https://minikube.sigs.k8s.io/docs/reference/drivers/kvm2/": "",
"Reinstall VirtualBox and verify that it is not blocked: System Preferences -\u003e Security \u0026 Privacy -\u003e General -\u003e Some system software was blocked from loading": "",
"Related issue: {{.url}}": "관련 이슈: {{.url}}",
"Related issues:": "관련 이슈들:",
"Remove one or more images": "",
"Remove the invalid --docker-opt or --insecure-registry flag if one was provided": "",
"Removed all traces of the \"{{.name}}\" cluster.": "\"{{.name}}\" 클러스터 관련 정보가 모두 삭제되었습니다",
"Removing {{.directory}} ...": "{{.directory}} 제거 중 ...",
"Requested cpu count {{.requested_cpus}} is greater than the available cpus of {{.avail_cpus}}": "",
"Requested cpu count {{.requested_cpus}} is less than the minimum allowed of {{.minimum_cpus}}": "",
"Requested memory allocation ({{.requested}}MB) is less than the recommended minimum {{.recommend}}MB. Deployments may fail.": "",
"Requested memory allocation {{.requested}}MB is more than your system limit {{.system_limit}}MB.": "",
"Requested memory allocation {{.requested}}MiB is less than the usable minimum of {{.minimum_memory}}MB": "",
"Reset Docker to factory defaults": "",
"Restart Docker": "",
"Restart Docker, Ensure docker is running and then run: 'minikube delete' and then 'minikube start' again": "",
"Restarting existing {{.driver_name}} {{.machine_type}} for \"{{.cluster}}\" ...": "",
"Restarting the {{.name}} service may improve performance.": "",
"Retrieve the ssh host key of the specified node": "",
"Retrieve the ssh host key of the specified node.": "",
"Retrieve the ssh identity key path of the specified node": "",
"Retrieve the ssh identity key path of the specified node, and writes it to STDOUT.": "",
"Retrieves the IP address of the running cluster, checks it\n\t\t\twith IP in kubeconfig, and corrects kubeconfig if incorrect.": "",
"Retrieves the IP address of the specified node": "지정된 노드의 IP 주소를 가져옵니다",
"Retrieves the IP address of the specified node, and writes it to STDOUT.": "",
"Returns a URL to connect to a service": "서비스에 연결된 URL을 반환합니다",
"Returns logs to debug a local Kubernetes cluster": "로컬 쿠버네티스 클러스터를 디버그하기 위해 로그를 반환합니다",
"Returns the Kubernetes URL(s) for service(s) in your local cluster. In the case of multiple URLs they will be printed one at a time.": "",
"Returns the value of PROPERTY_NAME from the minikube config file. Can be overwritten at runtime by flags or environmental variables.": "",
"Right-click the PowerShell icon and select Run as Administrator to open PowerShell in elevated mode.": "",
"Run 'kubectl describe pod coredns -n kube-system' and check for a firewall or DNS conflict": "",
"Run 'minikube delete' to delete the stale VM, or and ensure that minikube is running as the same user you are issuing this command with": "",
"Run 'sudo sysctl fs.protected_regular=0', or try a driver which does not require root, such as '--driver=docker'": "",
"Run a kubectl binary matching the cluster version": "클러스터 버전에 맞는 kubectl 바이너리를 실행합니다",
"Run kubectl": "kubectl 을 실행합니다",
"Run minikube from the C: drive.": "",
"Run the Kubernetes client, download it if necessary. Remember -- after kubectl!\n\nThis will run the Kubernetes client (kubectl) with the same version as the cluster\n\nNormally it will download a binary matching the host operating system and architecture,\nbut optionally you can also run it directly on the control plane over the ssh connection.\nThis can be useful if you cannot run kubectl locally for some reason, like unsupported\nhost. Please be aware that when using --ssh all paths will apply to the remote machine.": "",
"Run the following:\n$ sudo mkdir -p /etc/systemd/system/user@.service.d\n$ cat \u003c\u003cEOF | sudo tee /etc/systemd/system/user@.service.d/delegate.conf\n[Service]\nDelegate=cpu cpuset io memory pids\nEOF\n$ sudo systemctl daemon-reload": "",
"Run the minikube command as an Administrator": "minikube 명령어를 관리자 권한으로 실행합니다",
"Run: 'Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-Tools-All -All'": "",
"Run: 'kubectl delete clusterrolebinding kubernetes-dashboard'": "",
"Run: 'minikube delete --all' to clean up all the abandoned networks.": "",
"Run: 'sudo chown $USER $HOME/.kube/config \u0026\u0026 chmod 600 $HOME/.kube/config'": "",
"Run: 'sudo mkdir /sys/fs/cgroup/systemd \u0026\u0026 sudo mount -t cgroup -o none,name=systemd cgroup /sys/fs/cgroup/systemd'": "",
"Running on localhost (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB, Disk={{.disk_size}}MB) ...": "",
"Running remotely (CPUs={{.number_of_cpus}}, Memory={{.memory_size}}MB, Disk={{.disk_size}}MB) ...": "",
"SSH key (ssh driver only)": "",
"SSH port (ssh driver only)": "",
"SSH user (ssh driver only)": "",
"Save a image from minikube": "",
"Searching the internet for Kubernetes version...": "",
"Select a valid value for --dnsdomain": "",
"Send trace events. Options include: [gcp]": "",
"Service '{{.service}}' was not found in '{{.namespace}}' namespace.\nYou may select another namespace by using 'minikube service {{.service}} -n \u003cnamespace\u003e'. Or list out all the services using 'minikube service list'": "",
"Services {{.svc_names}} have type \"ClusterIP\" not meant to be exposed, however for local development minikube allows you to access this !": "",
"Set a static IP for the minikube cluster, the IP must be: private, IPv4, and the last octet must be between 2 and 254, for example 192.168.200.200 (Docker and Podman drivers only)": "",
"Set failed": "설정이 실패하였습니다",
"Set flag to delete all profiles": "",
"Set flag to stop all profiles (clusters)": "",
"Set flag to stop cluster after a set amount of time (e.g. --schedule=5m)": "",
"Set this flag to delete the '.minikube' folder from your user directory.": "",
"Sets an individual value in a minikube config file": "",
"Sets the PROPERTY_NAME config value to PROPERTY_VALUE\n\tThese values can be overwritten by flags or environment variables at runtime.": "",
"Sets up podman env variables; similar to '$(podman-machine env)'.": "",
"Setting profile failed": "프로필 설정이 실패하였습니다",
"Show a list of global command-line options (applies to all commands).": "",
"Show only log entries which point to known problems": "",
"Show only the audit logs": "",
"Show only the last start logs.": "",
"Show only the most recent journal entries, and continuously print new entries as they are appended to the journal.": "",
"Simulate numa node count in minikube, supported numa node count range is 1-8 (kvm2 driver only)": "",
"Skipped switching kubectl context for {{.profile_name}} because --keep-context was set.": "",
"Some dashboard features require the metrics-server addon. To enable all features please run:\n\n\tminikube{{.profileArg}} addons enable metrics-server\n": "",
"Sorry, Kubernetes {{.k8sVersion}} requires conntrack to be installed in root's path": "",
"Sorry, Kubernetes {{.k8sVersion}} requires crictl to be installed in root's path": "",
"Sorry, Kubernetes {{.version}} is not supported by this release of minikube": "죄송합니다, 쿠버네티스 {{.version}} 는 해당 minikube 버전에서 지원하지 않습니다",
"Sorry, completion support is not yet implemented for {{.name}}": "",
"Sorry, please set the --output flag to one of the following valid options: [text,json]": "",
"Sorry, the IP provided with the --listen-address flag is invalid: {{.listenAddr}}.": "",
"Sorry, the address provided with the --insecure-registry flag is invalid: {{.addr}}. Expected formats are: \u003cip\u003e[:\u003cport\u003e], \u003chostname\u003e[:\u003cport\u003e] or \u003cnetwork\u003e/\u003cnetmask\u003e": "",
"Sorry, the kubeadm.{{.parameter_name}} parameter is currently not supported by --extra-config": "",
"Sorry, the url provided with the --registry-mirror flag is invalid: {{.url}}": "",
"Sorry, {{.driver}} does not allow mounts to be changed after container creation (previous mount: '{{.old}}', new mount: '{{.new}})'": "",
"Source {{.path}} can not be empty": "",
"Specified Kubernetes version {{.specified}} is less than the oldest supported version: {{.oldest}}. Use `minikube config defaults kubernetes-version` for details.": "",
"Specified Kubernetes version {{.specified}} is newer than the newest supported version: {{.newest}}. Use `minikube config defaults kubernetes-version` for details.": "",
"Specified Kubernetes version {{.specified}} not found in Kubernetes version list": "",
"Specified Major version of Kubernetes {{.specifiedMajor}} is newer than the newest supported Major version: {{.newestMajor}}": "",
"Specify --kubernetes-version in v\u003cmajor\u003e.\u003cminor.\u003cbuild\u003e form. example: 'v1.1.14'": "",
"Specify an alternate --host-only-cidr value, such as 172.16.0.1/24": "",
"Specify arbitrary flags to pass to the Docker daemon. (format: key=value)": "",
"Specify arbitrary flags to pass to the build. (format: key=value)": "",
"Specifying extra disks is currently only supported for the following drivers: {{.supported_drivers}}. If you can contribute to add this feature, please create a PR.": "",
"StartHost failed, but will try again: {{.error}}": "",
"Starting \"{{.node}}\" {{.role}} node in \"{{.cluster}}\" cluster": "",
"Starting control plane node {{.name}} in cluster {{.cluster}}": "{{.cluster}} 클러스터의 {{.name}} 컨트롤 플레인 노드를 시작하는 중",
"Starting minikube without Kubernetes in cluster {{.cluster}}": "",
"Starting node": "노드를 시작하는 중",
"Starting node {{.name}} in cluster {{.cluster}}": "{{.cluster}} 클러스터의 {{.name}} 노드를 시작하는 중",
"Starting tunnel for service {{.service}}.": "{{.service}} 서비스의 터널을 시작하는 중",
"Starts a local Kubernetes cluster": "로컬 쿠버네티스 클러스터를 시작합니다",
"Starts a local kubernetes cluster": "로컬 쿠버네티스 클러스터를 시작합니다",
"Starts a node.": "노드를 시작합니다",
"Starts an existing stopped node in a cluster.": "클러스터의 중지된 노드를 시작합니다",
"Startup with {{.old_driver}} driver failed, trying with alternate driver {{.new_driver}}: {{.error}}": "",
"Stopped tunnel for service {{.service}}.": "",
"Stopping node \"{{.name}}\" ...": "\"{{.name}}\" 노드를 중지하는 중 ...",
"Stopping tunnel for service {{.service}}.": "",
"Stops a local Kubernetes cluster. This command stops the underlying VM or container, but keeps user data intact. The cluster can be started again with the \"start\" command.": "",
"Stops a node in a cluster.": "클러스터의 한 노드를 중지합니다",
"Stops a running local Kubernetes cluster": "실행 중인 로컬 쿠버네티스 클러스터를 중지합니다",
"Stops a running local kubernetes cluster": "실행 중인 로컬 쿠버네티스 클러스터를 중지합니다",
"Subnet to be used on kic cluster. If left empty, minikube will choose subnet address, beginning from 192.168.49.0. (docker and podman driver only)": "",
"Successfully added {{.name}} to {{.cluster}}!": "{{.name}} 를 {{.cluster}} 에 성공적으로 추가하였습니다!",
"Successfully deleted all profiles": "모든 프로필이 성공적으로 삭제되었습니다",
"Successfully mounted {{.sourcePath}} to {{.destinationPath}}": "",
"Successfully purged minikube directory located at - [{{.minikubeDirectory}}]": "",
"Successfully started node {{.name}}!": "{{.name}} 노드가 정상적으로 시작되었습니다!",
"Successfully stopped node {{.name}}": "{{.name}} 노드가 정상적으로 중지되었습니다",
"Successfully unblocked bootpd process from firewall, retrying": "",
"Suggestion: {{.advice}}": "권장: {{.advice}}",
"System only has {{.size}}MiB available, less than the required {{.req}}MiB for Kubernetes": "",
"Tag images": "",
"Tag to apply to the new image (optional)": "",
"Target \u003cremote file path\u003e must be an absolute Path. Relative Path is not allowed (example: \"minikube:/home/docker/copied.txt\")": "",
"Target directory {{.path}} must be an absolute path": "타겟 폴더 {{.path}} 는 절대 경로여야 합니다",
"Target {{.path}} can not be empty": "",
"Test docs have been saved at - {{.path}}": "",
"The \"{{.driver_name}}\" driver requires root privileges. Please run minikube using 'sudo minikube --driver={{.driver_name}}'.": "\"{{.driver_name}}\" 드라이버는 root 권한으로 실행되어야 합니다. minikube 를 다음과 같이 실행하세요 'sudo minikube --driver={{.driver_name}}'",
"The \"{{.driver_name}}\" driver should not be used with root privileges.": "\"{{.driver_name}}\" 드라이버는 root 권한으로 실행되면 안 됩니다",
"The \"{{.driver_name}}\" driver should not be used with root privileges. If you wish to continue as root, use --force.": "",
"The \"{{.name}}\" container runtime requires CNI": "",
"The 'none' driver is designed for experts who need to integrate with an existing VM": "",
"The '{{.addonName}}' addon is enabled": "'{{.addonName}}' 애드온이 활성화되었습니다",
"The '{{.driver}}' driver requires elevated permissions. The following commands will be executed:\n\n{{ .example }}\n": "",
"The '{{.driver}}' provider was not found: {{.error}}": "",
"The '{{.name}} driver does not support multiple profiles: https://minikube.sigs.k8s.io/docs/reference/drivers/none/": "",
"The '{{.name}}' driver does not respect the --cpus flag": "",
"The '{{.name}}' driver does not respect the --memory flag": "",
"The '{{.name}}' driver does not support --cpus=no-limit": "",
"The '{{.name}}' driver does not support --memory=no-limit": "",
"The --image-repository flag you provided contains Scheme: {{.scheme}}, which will be removed automatically": "",
"The --image-repository flag your provided ended with a trailing / that could cause conflict in kubernetes, removed automatically": "",
"The CIDR to be used for service cluster IPs.": "",
"The CIDR to be used for the minikube VM (virtualbox driver only)": "",
"The KVM QEMU connection URI. (kvm2 driver only)": "",
"The KVM default network name. (kvm2 driver only)": "",
"The KVM driver is unable to resurrect this old VM. Please run `minikube delete` to delete it and try again.": "",
"The OLM addon has stopped working, for more details visit: https://github.com/operator-framework/operator-lifecycle-manager/issues/2534": "",
"The VM driver crashed. Run 'minikube start --alsologtostderr -v=8' to see the VM driver error message": "",
"The VM driver exited with an error, and may be corrupt. Run 'minikube start' with --alsologtostderr -v=8 to see the error": "",
"The VM that minikube is configured for no longer exists. Run 'minikube delete'": "",
"The ambassador addon has stopped working as of v1.23.0, for more details visit: https://github.com/datawire/ambassador-operator/issues/73": "",
"The apiserver listening port": "API 서버 수신 포트",
"The argument to pass the minikube mount command on start.": "",
"The authoritative apiserver hostname for apiserver certificates and connectivity. This can be used if you want to make the apiserver available from outside the machine": "",
"The base image to use for docker/podman drivers. Intended for local development.": "",
"The certificate hostname provided appears to be invalid (may be a minikube bug, try 'minikube delete')": "",
"The cluster dns domain name used in the Kubernetes cluster": "",
"The control plane for \"{{.name}}\" is paused!": "\"{{.name}}\"의 컨트롤 플레인이 중지되었습니다!",
"The control plane node \"{{.name}}\" does not exist.": "\"{{.name}}\" 컨트롤 플레인 노드가 존재하지 않습니다.",
"The control plane node is not running (state={{.state}})": "컨트롤 플레인 노드가 실행 상태가 아닙니다 (상태={{.state}})",
"The control plane node must be running for this command": "컨트롤 플레인 노드는 실행 상태여야 합니다",
"The control-plane node {{.name}} apiserver is not running (will try others): (state={{.state}})": "",
"The control-plane node {{.name}} apiserver is not running: (state={{.state}})": "",
"The control-plane node {{.name}} apiserver is paused": "",
"The control-plane node {{.name}} apiserver is paused (will try others)": "",
"The control-plane node {{.name}} host does not exist": "",
"The control-plane node {{.name}} host does not exist (will try others)": "",
"The control-plane node {{.name}} host is not running (will try others): state={{.state}}": "",
"The control-plane node {{.name}} host is not running: state={{.state}}": "",
"The cri socket path to be used.": "",
"The docker-env command is incompatible with multi-node clusters. Use the 'registry' add-on: https://minikube.sigs.k8s.io/docs/handbook/registry/": "",
"The driver '{{.driver}}' is not supported on {{.os}}/{{.arch}}": "",
"The existing \"{{.name}}\" cluster was created using the \"{{.old}}\" driver, which is incompatible with requested \"{{.new}}\" driver.": "",
"The existing node configuration appears to be corrupt. Run 'minikube delete'": "",
"The heapster addon is depreciated. please try to disable metrics-server instead": "",
"The host does not support filesystem 9p.": "",
"The hyperv virtual switch name. Defaults to first found. (hyperv driver only)": "",
"The hypervisor does not appear to be configured properly. Run 'minikube start --alsologtostderr -v=1' and inspect the error code": "",
"The image '{{.imageName}}' does not match arch of the container runtime, use a multi-arch image instead": "",
"The image '{{.imageName}}' was not found; unable to add it to cache.": "",
"The initial time interval for each check that wait performs in seconds": "",
"The kubeadm binary within the Docker container is not executable": "",
"The machine-driver specified is failing to start. Try running 'docker-machine-driver-\u003ctype\u003e version'": "",
"The minikube VM is offline. Please run 'minikube start' to start it again.": "",
"The minikube {{.driver_name}} container exited unexpectedly.": "",
"The minimum required version for podman is \"{{.minVersion}}\". your version is \"{{.currentVersion}}\". minikube might not work. use at your own risk. To install latest version please see https://podman.io/getting-started/installation.html": "",
"The named space to activate after start": "",
"The node to build on. Defaults to the primary control plane.": "",
"The node to check status for. Defaults to control plane. Leave blank with default format for status on all nodes.": "",
"The node to get IP. Defaults to the primary control plane.": "",
"The node to get logs from. Defaults to the primary control plane.": "",
"The node to get ssh-key path. Defaults to the primary control plane.": "",
"The node to ssh into. Defaults to the primary control plane.": "",
"The node {{.name}} has ran out of available PIDs.": "",
"The node {{.name}} has ran out of disk space.": "",
"The node {{.name}} has ran out of memory.": "",
"The node {{.name}} network is not available. Please verify network settings.": "",
"The none driver is not compatible with multi-node clusters.": "",
"The none driver with Kubernetes v1.24+ and the docker container-runtime requires cri-dockerd.\n\t\t\n\t\tPlease install cri-dockerd using these instructions:\n\n\t\thttps://github.com/Mirantis/cri-dockerd": "",
"The none driver with Kubernetes v1.24+ and the docker container-runtime requires dockerd.\n\t\t\n\t\tPlease install dockerd using these instructions:\n\n\t\thttps://docs.docker.com/engine/install/": "",
"The none driver with Kubernetes v1.24+ requires containernetworking-plugins.\n\n\t\tPlease install containernetworking-plugins using these instructions:\n\n\t\thttps://minikube.sigs.k8s.io/docs/faq/#how-do-i-install-containernetworking-plugins-for-none-driver": "",
"The output format. One of 'json', 'table'": "",
"The path on the file system where the docs in markdown need to be saved": "",
"The path on the file system where the error code docs in markdown need to be saved": "",
"The path on the file system where the testing docs in markdown need to be saved": "",
"The podman service within '{{.cluster}}' is not active": "",
"The podman-env command is incompatible with multi-node clusters. Use the 'registry' add-on: https://minikube.sigs.k8s.io/docs/handbook/registry/": "",
"The podman-env command is only compatible with the \"crio\" runtime, but this cluster was configured to use the \"{{.runtime}}\" runtime.": "",
"The requested memory allocation of {{.requested}}MiB does not leave room for system overhead (total system memory: {{.system_limit}}MiB). You may face stability issues.": "",
"The service namespace": "",
"The service/ingress {{.resource}} requires privileged ports to be exposed: {{.ports}}": "",
"The services namespace": "",
"The socket_vmnet network is only supported on macOS": "",
"The time interval for each check that wait performs in seconds": "",
"The total number of nodes to spin up. Defaults to 1.": "",
"The value passed to --format is invalid": "",
"The value passed to --format is invalid: {{.error}}": "",
"The {{.addon}} addon is only supported with the KVM driver.\n\nFor GPU setup instructions see: https://minikube.sigs.k8s.io/docs/tutorials/nvidia/": "",
"There are a couple ways to enable the required file sharing:\n1. Enable \"Use the WSL 2 based engine\" in Docker Desktop\nor\n2. Enable file sharing in Docker Desktop for the %s%s directory": "",
"These --extra-config parameters are invalid: {{.invalid_extra_opts}}": "",
"These changes will take effect upon a minikube delete and then a minikube start": "",
"Things to try without Kubernetes ...": "",
"This addon does not have an endpoint defined for the 'addons open' command.\nYou can add one by annotating a service with the label {{.labelName}}:{{.addonName}}": "",
"This can also be done automatically by setting the env var CHANGE_MINIKUBE_NONE_USER=true": "",
"This cluster was created before minikube v1.26.0 and doesn't have cri-docker installed. Please run 'minikube delete' and then start minikube again": "",
"This driver does not yet work on your architecture. Maybe try --driver=none": "",
"This is a known issue with BTRFS storage driver, there is a workaround, please checkout the issue on GitHub": "",
"This will keep the existing kubectl context and will create a minikube context.": "",
"This will start the mount daemon and automatically mount files into minikube.": "",
"Tip: To remove this root owned cluster, run: sudo {{.cmd}}": "",
"To access Headlamp, use the following command:\n\n\tminikube{{.profileArg}} service headlamp -n headlamp\n": "",
"To access YAKD - Kubernetes Dashboard, wait for Pod to be ready and run the following command:\n\n\tminikube{{.profileArg}} service yakd-dashboard -n yakd-dashboard\n": "",
"To connect to this cluster, use: --context={{.name}}": "",
"To connect to this cluster, use: kubectl --context={{.profile_name}}": "",
"To disable beta notices, run: 'minikube config set WantBetaUpdateNotification false'": "",
"To disable this notice, run: 'minikube config set WantUpdateNotification false'\n": "해당 알림을 비활성화하려면 다음 명령어를 실행하세요. 'minikube config set WantUpdateNotification false'",
"To disable update notices in general, run: 'minikube config set WantUpdateNotification false'\n": "",
"To pull new external images, you may need to configure a proxy: https://minikube.sigs.k8s.io/docs/reference/networking/proxy/": "",
"To see addons list for other profiles use: `minikube addons -p name list`": "",
"To set your Google Cloud project, run:\n\n\t\tgcloud config set project \u003cproject name\u003e\n\nor set the GOOGLE_CLOUD_PROJECT environment variable.": "",
"To start a cluster, run: \"{{.command}}\"": "",
"To start minikube with Hyper-V, Powershell must be in your PATH`": "",
"To use kubectl or minikube commands as your own user, you may need to relocate them. For example, to overwrite your own settings, run:": "",
"Troubleshooting Commands:": "",
"Try 'minikube delete' to force new SSL certificates to be installed": "",
"Try 'minikube delete', and disable any conflicting VPN or firewall software": "",
"Try one or more of the following to free up space on the device:\n\t\n\t\t\t1. Run \"docker system prune\" to remove unused Docker data (optionally with \"-a\")\n\t\t\t2. Increase the storage allocated to Docker for Desktop by clicking on:\n\t\t\t\tDocker icon \u003e Preferences \u003e Resources \u003e Disk Image Size\n\t\t\t3. Run \"minikube ssh -- docker system prune\" if using the Docker container runtime": "",
"Try one or more of the following to free up space on the device:\n\t\n\t\t\t1. Run \"sudo podman system prune\" to remove unused podman data\n\t\t\t2. Run \"minikube ssh -- docker system prune\" if using the Docker container runtime": "",
"Trying to delete invalid profile {{.profile}}": "무효한 프로필 {{.profile}} 를 삭제하는 중",
"Tunnel successfully started": "",
"Unable to bind flags": "flags 를 합칠 수 없습니다",
"Unable to create dedicated network, this might result in cluster IP change after restart: {{.error}}": "",
"Unable to delete profile(s): {{.error}}": "",
"Unable to detect the latest patch release for specified major.minor version v{{.majorminor}}": "",
"Unable to enable dashboard": "대시보드를 활성화할 수 없습니다",
"Unable to fetch latest version info": "최신 버전 정보를 가져올 수 없습니다",
"Unable to find any control-plane nodes": "",
"Unable to generate docs": "문서를 생성할 수 없습니다",
"Unable to generate the documentation. Please ensure that the path specified is a directory, exists \u0026 you have permission to write to it.": "",
"Unable to get CPU info: {{.err}}": "",
"Unable to get VM IP address": "가상 머신 IP 주소를 조회할 수 없습니다",
"Unable to get control-plane node {{.name}} apiserver status (will try others): {{.error}}": "",
"Unable to get control-plane node {{.name}} apiserver status: {{.error}}": "",
"Unable to get control-plane node {{.name}} endpoint (will try others): {{.err}}": "",
"Unable to get control-plane node {{.name}} endpoint: {{.err}}": "",
"Unable to get control-plane node {{.name}} host command runner (will try others): {{.err}}": "",
"Unable to get control-plane node {{.name}} host command runner: {{.err}}": "",
"Unable to get control-plane node {{.name}} host status (will try others): {{.err}}": "",
"Unable to get control-plane node {{.name}} host status: {{.err}}": "",
"Unable to get current user": "현재 사용자를 조회할 수 없습니다",
"Unable to get runtime": "런타임을 조회할 수 없습니다",
"Unable to get the status of the {{.name}} cluster.": "{{.name}} 클러스터의 상태를 조회할 수 없습니다",
"Unable to kill mount process: {{.error}}": "마운트 프로세스를 중지할 수 없습니다: {{.error}}",
"Unable to list profiles: {{.error}}": "",
"Unable to load cached images from config file.": "컨피그 파일로부터 캐시된 이미지를 로드할 수 없습니다",
"Unable to load cached images: {{.error}}": "캐시된 이미지를 로드할 수 없습니다: {{.error}}",
"Unable to load config: {{.error}}": "컨피그를 로드할 수 없습니다: {{.error}}",
"Unable to load control-plane node {{.name}} host (will try others): {{.err}}": "",
"Unable to load control-plane node {{.name}} host: {{.err}}": "",
"Unable to load profile: {{.error}}": "",
"Unable to parse \"{{.kubernetes_version}}\": {{.error}}": " \"{{.kubernetes_version}}\" 를 파싱할 수 없습니다: {{.error}}",
"Unable to parse memory '{{.memory}}': {{.error}}": "",
"Unable to parse version.json: {{.error}}, json: {{.json}}": "",
"Unable to pick a default driver. Here is what was considered, in preference order:": "",
"Unable to push cached images: {{.error}}": "",
"Unable to remove machine directory": "",
"Unable to remove machine directory: %v": "머신 디렉토리를 제거할 수 없습니다: %v",
"Unable to restart control-plane node(s), will reset cluster: {{.error}}": "",
"Unable to safely downgrade existing Kubernetes v{{.old}} cluster to v{{.new}}": "",
"Unable to start VM. Please investigate and run 'minikube delete' if possible": "가상 머신을 시작할 수 없습니다. 확인 후 가능하면 'minikube delete' 를 실행하세요",
"Unable to stop VM": "가상 머신을 중지할 수 없습니다",
"Unable to update {{.driver}} driver: {{.error}}": "{{.driver}} 를 수정할 수 없습니다: {{.error}}",
"Unable to verify SSH connectivity: {{.error}}. Will retry...": "SSH 연결을 확인할 수 없습니다: {{.error}}. 다시 시도하는 중 ...",
"Unfortunately, could not download the base image {{.image_name}} ": "",
"Uninstalling Kubernetes {{.kubernetes_version}} using {{.bootstrapper_name}} ...": "{{.bootstrapper_name}} 를 사용하여 쿠버네티스 {{.kubernetes_version}} 를 제거하는 중 ...",
"Unmounting {{.path}} ...": "{{.path}} 를 마운트 해제하는 중 ...",
"Unpause": "",
"Unpaused {{.count}} containers": "",
"Unpaused {{.count}} containers in: {{.namespaces}}": "",
"Unpausing node {{.name}} ... ": "",
"Unset the KUBECONFIG environment variable, or verify that it does not point to an empty or otherwise invalid path": "",
"Unset variables instead of setting them": "",
"Update Docker to the latest minor version, this version is unsupported": "",
"Update kubeconfig in case of an IP or port change": "",
"Update server returned an empty list": "",
"Updating the running {{.driver_name}} \"{{.cluster}}\" {{.machine_type}} ...": "실행중인 {{.driver_name}} \"{{.cluster}}\" {{.machine_type}} 를 업데이트 하는 중 ...",
"Upgrade to QEMU v3.1.0+, run 'virt-host-validate', or ensure that you are not running in a nested VM environment.": "",
"Usage": "",
"Usage: minikube completion SHELL": "",
"Usage: minikube delete": "",
"Usage: minikube delete --all --purge": "",
"Usage: minikube node [add|start|stop|delete|list]": "",
"Usage: minikube node delete [name]": "",
"Usage: minikube node list": "",
"Usage: minikube node start [name]": "",
"Usage: minikube node stop [name]": "",
"Use \"{{.CommandPath}} [command] --help\" for more information about a command.": "",
"Use 'kubectl get po -A' to find the correct and namespace name": "",
"Use -A to specify all namespaces": "모든 namespace 를 확인하려면 -A 를 사용하세요",
"Use SSH connection instead of HTTPS (port 2376)": "",
"Use SSH for running kubernetes client on the node": "",
"Use VirtualBox to remove the conflicting VM and/or network interfaces": "",
"Use native Golang SSH client (default true). Set to 'false' to use the command line 'ssh' command when accessing the docker machine. Useful for the machine drivers when they will not start with 'Waiting for SSH'.": "",
"User ID: {{.userID}}": "",
"User name '{{.username}}' is not valid": "",
"User name must be 60 chars or less.": "",
"Userspace file server is shutdown": "",
"Userspace file server: ": "",
"Using Kubernetes v1.24+ with the Docker runtime requires cri-docker to be installed": "",
"Using Kubernetes {{.version}} since patch version was unspecified": "",
"Using image repository {{.name}}": "",
"Using image {{.registry}}{{.image}}": "",
"Using image {{.registry}}{{.image}} (global image repository)": "",
"Using rootless Docker driver was required, but the current Docker does not seem rootless. Try 'docker context use rootless' .": "",
"Using rootless driver was required, but the current driver does not seem rootless": "",
"Using rootless {{.driver_name}} driver": "",
"Using the '{{.runtime}}' runtime with the 'none' driver is an untested configuration!": "",
"Using the docker-env command with the containerd runtime is a highly experimental feature, please provide feedback or contribute to make it better": "",
"Using the {{.driver}} driver based on existing profile": "기존 프로필에 기반하여 {{.driver}} 드라이버를 사용하는 중",
"Using the {{.driver}} driver based on user configuration": "유저 환경 설정 정보에 기반하여 {{.driver}} 드라이버를 사용하는 중",
"Using {{.driver_name}} driver with root privileges": "",
"Valid components are: {{.valid_extra_opts}}": "",
"Validate your KVM networks. Run: virt-host-validate and then virsh net-list --all": "",
"Verify that your HTTP_PROXY and HTTPS_PROXY environment variables are set correctly.": "",
"Verifying Kubernetes components...": "Kubernetes 구성 요소를 확인...",
"Verifying dashboard health ...": "Dashboard 의 상태를 확인 중입니다 ...",
"Verifying proxy health ...": "Proxy 의 상태를 확인 중입니다 ...",
"Verifying {{.addon_name}} addon...": "{{.addon_name}} 애드온을 확인 중입니다 ...",
"Version: {{.version}}": "버전: {{.version}}",
"VirtualBox and Hyper-V are having a conflict. Use '--driver=hyperv' or disable Hyper-V using: 'bcdedit /set hypervisorlaunchtype off'": "",
"VirtualBox cannot create a network, probably because it conflicts with an existing network that minikube no longer knows about. Try running 'minikube delete'": "",
"VirtualBox is broken. Disable real-time anti-virus software, reboot, and reinstall VirtualBox if the problem continues.": "",
"VirtualBox is broken. Reinstall VirtualBox, reboot, and run 'minikube delete'.": "",
"VirtualBox is unable to find its network interface. Try upgrading to the latest release and rebooting.": "",
"Virtualization support is disabled on your computer. If you are running minikube within a VM, try '--driver=docker'. Otherwise, consult your systems BIOS manual for how to enable virtualization.": "",
"Wait failed: {{.error}}": "",
"Waiting for cluster to come online ...": "클러스터가 사용 가능하기까지 기다리는 중 ...",
"Want kubectl {{.version}}? Try 'minikube kubectl -- get pods -A'": "",
"Where to root the NFS Shares, defaults to /nfsshares (hyperkit driver only)": "",
"Whether to use external switch over Default Switch if virtual switch not explicitly specified. (hyperv driver only)": "",
"With --network-plugin=cni, you will need to provide your own CNI. See --cni flag as a user-friendly alternative": "",
"You appear to be using a proxy, but your NO_PROXY environment does not include the minikube IP ({{.ip_address}}).": "",
"You are trying to run a windows .exe binary inside WSL. For better integration please use a Linux binary instead (Download at https://minikube.sigs.k8s.io/docs/start/.). Otherwise if you still want to do this, you can do it using --force": "",
"You are trying to run the amd64 binary on an M1 system.\nPlease consider running the darwin/arm64 binary instead.\nDownload at {{.url}}": "",
"You are using the QEMU driver without a dedicated network, which doesn't support `minikube service` \u0026 `minikube tunnel` commands.": "",
"You can also use 'minikube kubectl -- get pods' to invoke a matching version": "맞는 버전의 kubectl 을 사용하기 위해서는 다음과 같이 사용 가능합니다. minikube kubectl -- get pods'",
"You can create one using 'minikube start'.\n\t\t": "",
"You can delete them using the following command(s):": "다음 명령어(들)을 사용하여 제거할 수 있습니다",
"You can delete them using the following command(s): ": "",
"You can force an unsupported Kubernetes version via the --force flag": "",
"You cannot add or remove extra disks for an existing minikube cluster. Please first delete the cluster.": "",
"You cannot change the CPUs for an existing minikube cluster. Please first delete the cluster.": "",
"You cannot change the disk size for an existing minikube cluster. Please first delete the cluster.": "",
"You cannot change the memory size for an existing minikube cluster. Please first delete the cluster.": "",
"You cannot change the number of nodes for an existing minikube cluster. Please use 'minikube node add' to add nodes to an existing cluster.": "",
"You cannot change the static IP of an existing minikube cluster. Please first delete the cluster.": "",
"You cannot enable addons on a cluster without Kubernetes, to enable Kubernetes on your cluster, run: minikube start --kubernetes-version=stable": "",
"You have authenticated with a service account that does not have an associated JSON file. The GCP Auth addon requires credentials with a JSON file in order to continue.": "",
"You have chosen to disable the CNI but the \"{{.name}}\" container runtime requires CNI": "",
"You have selected \"virtualbox\" driver, but there are better options !\nFor better performance and support consider using a different driver: {{.drivers}}\n\nTo turn off this warning run:\n\n\t$ minikube config set WantVirtualBoxDriverWarning false\n\n\nTo learn more about on minikube drivers checkout https://minikube.sigs.k8s.io/docs/drivers/\nTo see benchmarks checkout https://minikube.sigs.k8s.io/docs/benchmarks/cpuusage/\n\n": "",
"You may need to manually remove the \"{{.name}}\" VM from your hypervisor": "",
"You may need to stop the Hyper-V Manager and run `minikube delete` again.": "",
"You might be using an amd64 version of minikube on a Apple Silicon Mac, use the arm64 version of minikube instead": "Apple Silicon Mac에서 amd64 버전을 사용하고 있을 수 있습니다. arm64 버전의 minikube를 사용하십시오",
"You must specify a service name": "service 이름을 명시해야 합니다",
"You must specify service name(s) or --all": "",
"Your GCP credentials will now be mounted into every pod created in the {{.name}} cluster.": "",
"Your cgroup does not allow setting memory.": "",
"Your firewall is blocking bootpd which is required for socket_vmnet. The following commands will be executed to unblock bootpd:\n\n{{.commands}}\n": "",
"Your firewall is likely blocking bootpd, to unblock it run:\n\tsudo /usr/libexec/ApplicationFirewall/socketfilterfw --add /usr/libexec/bootpd\n\tsudo /usr/libexec/ApplicationFirewall/socketfilterfw --unblock /usr/libexec/bootpd": "",
"Your host does not support KVM virtualization. Ensure that qemu-kvm is installed, and run 'virt-host-validate' to debug the problem": "호스트가 KVM 가상화를 지원하지 않습니다. qemu-kvm 이 설치되었는지 확인 후, 문제 디버그를 위해 'virt-host-validate' 를 실행하세요",
"Your host does not support virtualization. If you are running minikube within a VM, try '--driver=docker'. Otherwise, enable virtualization in your BIOS": "호스트가 가상화를 지원하지 않습니다. 가상 머신 안에서 minikube 를 실행 중인 경우, '--driver=docker' 로 시도하세요. 그렇지 않다면, BIOS 에서 가상화를 활성화하세요",
"Your host does not support virtualization. If you are running minikube within a VM, try '--driver=none'. Otherwise, enable virtualization in your BIOS": "호스트가 가상화를 지원하지 않습니다. 가상 머신 안에서 minikube 를 실행 중인 경우, '--driver=none' 로 시도하세요. 그렇지 않다면, BIOS 에서 가상화를 활성화하세요",
"Your host is failing to route packets to the minikube VM. If you have VPN software, try turning it off or configuring it so that it does not re-route traffic to the VM IP. If not, check your VM environment routing options.": "",
"Your minikube config refers to an unsupported driver. Erase ~/.minikube, and try again.": "minikube config 가 미지원 드라이버를 참조하고 있습니다. ~/.minikube 를 제거한 후, 다시 시도하세요",
"Your minikube vm is not running, try minikube start.": "minikube 가상 머신이 실행 중이 아닙니다, minikube start 를 시도하세요",
"Your user lacks permissions to the minikube profile directory. Run: 'sudo chown -R $USER $HOME/.minikube; chmod -R u+wrx $HOME/.minikube' to fix": "",
"[WARNING] For full functionality, the 'csi-hostpath-driver' addon requires the 'volumesnapshots' addon to be enabled.\n\nYou can enable 'volumesnapshots' addon by running: 'minikube addons enable volumesnapshots'\n": "",
"addon '{{.name}}' is currently not enabled.\nTo enable this addon run:\nminikube addons enable {{.name}}": "",
"addon '{{.name}}' is not a valid addon packaged with minikube.\nTo see the list of available addons run:\nminikube addons list": "",
"addons modifies minikube addons files using subcommands like \"minikube addons enable dashboard\"": "",
"arm64 VM drivers do not currently support the crio container runtime. See https://github.com/kubernetes/minikube/issues/14146 for details.": "",
"auto-pause addon is an alpha feature and still in early development. Please file issues to help us make it better.": "",
"bash completion failed": "bash 자동 완성이 실패하였습니다",
"bash completion.": "",
"call with cleanup=true to remove old tunnels": "",
"cancel any existing scheduled stop requests": "예정된 모든 중지 요청을 취소합니다",
"cannot specify --kubernetes-version with --no-kubernetes,\nto unset a global config run:\n\n$ minikube config unset kubernetes-version": "",
"config modifies minikube config files using subcommands like \"minikube config set driver kvm2\"\nConfigurable fields: \n\n": "",
"config view failed": "config view 가 실패하였습니다",
"creating api client": "api 클라이언트 생성 중",
"dashboard": "",
"dashboard service is not running: {{.error}}": "대시보드 서비스가 실행 중이지 않습니다: {{.error}}",
"delete ctx": "",
"deleting node": "",
"disable failed": "비활성화가 실패하였습니다",
"dry-run mode. Validates configuration, but does not mutate system state": "",
"dry-run validation complete!": "dry-run 검증 완료!",
"enable failed": "활성화가 실패하였습니다",
"enabled failed": "",