当前位置:网站首页>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


边栏推荐
- ConnectionRefusedError: [Errno 111] Connection refused问题解决
- 基于BiGRU和GAN的数据生成方法
- (导航页)OpenStack-M版-双节点手工搭建-附B站视频
- Endnote编辑参考文献
- 【深度学习日记】第一天:Hello world,Hello CNN MNIST
- yoloV5 使用——训练速度慢,加速训练
- 打金?工作室?账号被封?游戏灰黑产离我们有多近
- Learning curve learning_curve function in sklearn
- 强化学习中,Q-Learning与Sarsa的差别有多大?
- Copy Siege Lion 5-minute online experience MindIR format model generation
猜你喜欢
随机推荐
Data reading in yolov3 (1)
【CV-Learning】语义分割
target has libraries with conflicting names: libcrypto.a and libssl.a.
典型CCN网络——efficientNet(2019-Google-已开源)
TypeError: load() missing 1 required positional argument: ‘Loader‘
【深度学习日记】第一天:Hello world,Hello CNN MNIST
[Copy Siege Lion Log] Flying Pulp Academy Intensive Learning 7-Day Punch Camp-Study Notes
投稿相关
亚马逊云科技Build On-Amazon Neptune基于知识图谱的推荐模型构建心得
动手学深度学习__张量
(TensorFlow) - detailed explanation of tf.variable_scope and tf.name_scope
Halcon缺陷检测
[Deep Learning 21 Days Learning Challenge] 2. Complex sample classification and recognition - convolutional neural network (CNN) clothing image classification
MNIST手写数字识别 —— 从感知机到卷积神经网络
The difference between oracle temporary table and pg temporary table
【Copy攻城狮日志】飞浆学院强化学习7日打卡营-学习笔记
Jupyter Notebook installed library;ModuleNotFoundError: No module named 'plotly' solution.
Install dlib step pit record, error: WARNING: pip is configured with locations that require TLS/SSL
[CV-Learning] Convolutional Neural Network Preliminary Knowledge
Android connects to mysql database using okhttp









