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


边栏推荐
猜你喜欢

DeblurGAN-v2: Deblurring (Orders-of-Magnitude) Faster and Better 图像去模糊

AWS使用EC2降低DeepRacer的训练成本:DeepRacer-for-cloud的实践操作

Simple and clear, the three paradigms of database design
![[Introduction to go language] 12. Pointer](/img/c8/4489993e66f1ef383ce49c95d78b1f.png)
[Introduction to go language] 12. Pointer

Android connects to mysql database using okhttp

Dictionary feature extraction, text feature extraction.

浅谈外挂常识和如何防御

Copy攻城狮5分钟在线体验 MindIR 格式模型生成

AWS uses EC2 to reduce the training cost of DeepRacer: DeepRacer-for-cloud practical operation

YOLOV4流程图(方便理解)
随机推荐
CSDN大礼包--高校圆桌派大礼包
如何成长为高级工程师?
The use of the attribute of the use of the animation and ButterKnife
Amazon Cloud Technology Build On 2022 - AIot Season 2 IoT Special Experiment Experience
MySQL leftmost prefix principle [I understand hh]
空洞卷积
AWS uses EC2 to reduce the training cost of DeepRacer: DeepRacer-for-cloud practical operation
MFC读取点云,只能正常显示第一个,显示后面时报错
MOOSE平台官方第二个例子分析——关于创建Kernel,求解对流扩散方程
[CV-Learning] Semantic Segmentation
No matching function for call to ‘RCTBridgeModuleNameForClass‘
剪映专业版字幕导出随笔
【深度学习日记】第一天:Hello world,Hello CNN MNIST
TensorFlow2 study notes: 8. tf.keras implements linear regression, Income dataset: years of education and income dataset
Attention Is All You Need(Transformer)
latex-写论文时一些常用设置
图像resize
Brief description of database and common operation guide
[Deep Learning Diary] Day 1: Hello world, Hello CNN MNIST
MNIST手写数字识别 —— Lenet-5首个商用级别卷积神经网络