当前位置:网站首页>Install Minikube Cluster in AWS-EC2
Install Minikube Cluster in AWS-EC2
2022-08-04 06:20:00 【finger sword】
在AWS-EC2中安装Minikube集群
一、启动EC2实例(Ubantu)
进入ec2控制台:
1.Select the instance image
这里选择Ubuntu 18.04镜像
2.选择实例类型
3.添加存储(最低10GiB)
4.添加标签(可选)
5.添加安全组(Open ports as needed)
6.Verify and launch the instance
Select a key pair or create a new key pair as required
7.查看实例
二、登录到实例
1.打开SecureCRT
2.导入密钥
3.连接实例
三、安装kubectl(Ubuntu用户非root)
curl -LO https://storage.googleapis.com/kubernetes-release/release/`curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt`/bin/linux/amd64/kubectl
chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl
四、安装Docker(ubuntu用户)
sudo apt-get update && sudo apt-get install docker.io -y
五、安装并查看MiniKube
1.安装conntrack(root 用户)
sudo -i
apt install conntrack
2.安装minikube
curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/
六、启动miniKubeand check the condition(root 用户)
minikube start --vm-driver=none
minikube status
边栏推荐
猜你喜欢
度量学习(Metric learning、损失函数、triplet、三元组损失、fastreid)
MFC读取点云,只能正常显示第一个,显示后面时报错
亚马逊云科技Build On-Amazon Neptune基于知识图谱的推荐模型构建心得
Thunderbolt turns off automatic updates
Simple and clear, the three paradigms of database design
图像形变(插值方法)
Pytorch语义分割理解
深度学习理论 —— 初始化、参数调节
Deep Learning Theory - Initialization, Parameter Adjustment
Usage of RecyclerView
随机推荐
[Deep Learning 21-Day Learning Challenge] 3. Use a self-made dataset - Convolutional Neural Network (CNN) Weather Recognition
周志华机器学习
AWS使用EC2降低DeepRacer的训练成本:DeepRacer-for-cloud的实践操作
TypeError: load() missing 1 required positional argument: ‘Loader‘
[Deep Learning Diary] Day 1: Hello world, Hello CNN MNIST
Usage of RecyclerView
【CV-Learning】Convolutional Neural Network
JPEG2jpg
【论文阅读】Multi-View Spectral Clustering with Optimal Neighborhood Laplacian Matrix
Simple and clear, the three paradigms of database design
【Copy攻城狮日志】“一分钟”跑通MindSpore的LeNet模型
图像线性融合
[Copy Siege Lion Log] Flying Pulp Academy Intensive Learning 7-Day Punch Camp-Study Notes
Lee‘s way of Deep Learning 深度学习笔记
Android connects to mysql database using okhttp
yolov3 data reading (2)
(TensorFlow) - detailed explanation of tf.variable_scope and tf.name_scope
【论文阅读】Exploring Spatial Significance via Hybrid Pyramidal Graph Network for Vehicle Re-identificatio
yoloV5 使用——训练速度慢,加速训练
动手学深度学习_线性回归