1.升级 windows10 最新版本
2.cpu 开启虚拟化
3.需要互联网
https://github.com/dotnetcore/fastgithub/releases
下载 windows版,运行他,解决github下载慢问题
https://github.com/microsoft/winget-cli/releases
浏览器打开页面,点开Assets
,下载 DesktopAppInstallerPolicies.zip
这个压缩包
winget install Microsoft.WindowsTerminal
wsl --install
官网
https://rancherdesktop.io/
官方文档 https://docs.rancherdesktop.io/getting-started/installation
下载地址:https://github.com/rancher-sandbox/rancher-desktop/releases
下载 Rancher.Desktop.Setup.xxx.exe
版本,xxx表示最新版本号
接着进行安装,安装成功后,启动,让其自动下载必备数据,如果网速快30分钟下载好
右击Windows键
,选择运行
,在框内输入如下,会弹出启动
文件夹,拖入需要设置的程序快捷方式即可
shell:startup
kubectl create deployment nginx --image=nginx
kubectl create service nodeport nginx --tcp 80:80 --node-port=31800
输出如下,表示创建成功
deployment.apps/nginx created
service/nginx created
使用浏览器访问如下,可以看到welcome to nginx
http://127.0.0.1:31800
kubectl get pods
kubectl get svc
kubectl delete service nginx
kubectl delete deployment nginx