Docker for macでkubernetesをインストールし、macのターミナルから@kubectl apply -f pods.yml
を実行するとerror: unable to recognize "pods.yml": Get https://192.168.64.2:8443/api?timeout=32s: dial tcp 192.168.64.2:8443: i/o timeout
と言われてしまいます。
原因は一体何なのでしょうか?
yml
1apiVersion: v1 2kind: Pod 3metadata: 4 name: sample 5spec: 6 containers: 7 - name: nginx 8 image: nginx:1.17.2-alpine 9 volumeMounts: 10 - name: storage 11 mountPath: /home/nginx 12 volumes: 13 - name: storage 14 hostPath: 15 path: ~/data/storage 16 type: Directory
2021/02/05追記
色々やっていて判明したのですが、kubectl version
を実行してもエラーになってしまします。
下記実行結果です。
sh
1Client Version: version.Info{Major:"1", Minor:"16", GitVersion:"v1.16.3", GitCommit:"b3cbbae08ec52a7fc73d334838e18d17e8512749", GitTreeState:"clean", BuildDate:"2019-11-13T11:23:11Z", GoVersion:"go1.12.12", Compiler:"gc", Platform:"darwin/amd64"} 2Unable to connect to the server: dial tcp 192.168.64.2:8443: i/o timeout
バージョンを記載します。
OS:macOS Big Sur(11.2)
Docker Engine:v20.10.2
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。