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


边栏推荐
- 如何用Pygame制作简单的贪吃蛇游戏
- 【论文阅读】Anchor-Free Person Search
- Install dlib step pit record, error: WARNING: pip is configured with locations that require TLS/SSL
- MOOSE平台使用入门攻略——如何运行官方教程的例子
- 【论文阅读】Mining Cross-Image Semantics for Weakly Supervised Semantic Segmentation
- (导航页)OpenStack-M版-双节点手工搭建-附B站视频
- Usage of Thread, Handler and IntentService
- fuser 使用—— YOLOV5内存溢出——kill nvidai-smi 无pid 的 GPU 进程
- 【Copy攻城狮日志】“一分钟”跑通MindSpore的LeNet模型
- 【Copy攻城狮日志】飞浆学院强化学习7日打卡营-学习笔记
猜你喜欢

Dictionary feature extraction, text feature extraction.

亚马逊云科技 Build On 2022 - AIot 第二季物联网专场实验心得

fill_between in Matplotlib; np.argsort() function

The second official example analysis of the MOOSE platform - about creating a Kernel and solving the convection-diffusion equation

TensorFlow2 study notes: 8. tf.keras implements linear regression, Income dataset: years of education and income dataset

Copy Siege Lions "sticky" to AI couplets

【CV-Learning】Object Detection & Instance Segmentation

【论文阅读】TransReID: Transformer-based Object Re-Identification

腾讯、网易纷纷出手,火到出圈的元宇宙到底是个啥?

Deep Adversarial Decomposition: A Unified Framework for Separating Superimposed Images
随机推荐
浅谈游戏音效测试点
深度确定性策略梯度(DDPG)
典型CCN网络——efficientNet(2019-Google-已开源)
【论文阅读】SPANET: SPATIAL PYRAMID ATTENTION NETWORK FOR ENHANCED IMAGE RECOGNITION
Data reading in yolov3 (1)
The use of the attribute of the use of the animation and ButterKnife
【CV-Learning】Image Classification
MySQL leftmost prefix principle [I understand hh]
图像线性融合
关于DG(域泛化)领域的PCL方法的代码实例
The pipeline mechanism in sklearn
[Deep Learning 21-Day Learning Challenge] 3. Use a self-made dataset - Convolutional Neural Network (CNN) Weather Recognition
YOLOV5 V6.1 详细训练方法
tensorRT教程——使用tensorRT OP 搭建自己的网络
PCL窗口操作
迅雷关闭自动更新
Polynomial Regression (PolynomialFeatures)
Use of double pointers
【CV-Learning】图像分类
MOOSE平台使用入门攻略——如何运行官方教程的例子