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


边栏推荐
- [Deep Learning 21 Days Learning Challenge] 2. Complex sample classification and recognition - convolutional neural network (CNN) clothing image classification
- Vision Transformer 论文 + 详解( ViT )
- 【论文阅读】Further Non-local and Channel Attention Networks for Vehicle Re-identification
- Android connects to mysql database using okhttp
- [Deep Learning 21 Days Learning Challenge] 1. My handwriting was successfully recognized by the model - CNN implements mnist handwritten digit recognition model study notes
- fuser 使用—— YOLOV5内存溢出——kill nvidai-smi 无pid 的 GPU 进程
- 浅谈游戏音效测试点
- AWS uses EC2 to reduce the training cost of DeepRacer: DeepRacer-for-cloud practical operation
- Jupyter Notebook installed library;ModuleNotFoundError: No module named 'plotly' solution.
- MNIST手写数字识别 —— 从感知机到卷积神经网络
猜你喜欢
随机推荐
Linear Regression 02---Boston Housing Price Prediction
关于DG(域泛化)领域的PCL方法的代码实例
TensorFlow2 study notes: 7. Optimizer
软著撰写注意事项
MNIST handwritten digit recognition, sorted by from two to ten
Golang环境变量设置(二)--GOMODULE&GOPROXY
Comparison of oracle's number and postgresql's numeric
度量学习(Metric learning)—— 基于分类损失函数(softmax、交叉熵、cosface、arcface)
Install dlib step pit record, error: WARNING: pip is configured with locations that require TLS/SSL
Transformer
AIDL communication between two APPs
MNIST手写数字识别 —— 从零构建感知机实现二分类
[Go language entry notes] 13. Structure (struct)
MOOSE平台官方第二个例子分析——关于创建Kernel,求解对流扩散方程
【代码学习】
Thoroughly understand box plot analysis
Thunderbolt turns off automatic updates
动手学深度学习__数据操作
Halcon缺陷检测
Usage of Thread, Handler and IntentService








![[CV-Learning] Semantic Segmentation](/img/ad/ff5076495fa68e4bbf3be78f5ac6f2.png)
