当前位置:网站首页>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
边栏推荐
- 图像形变(插值方法)
- Image-Adaptive YOLO for Object Detection in Adverse Weather Conditions
- 动手学深度学习_线性回归
- Use of double pointers
- Golang环境变量设置(二)--GOMODULE&GOPROXY
- The difference between oracle temporary table and pg temporary table
- MNIST手写数字识别 —— 从感知机到卷积神经网络
- MOOSE平台官方第二个例子分析——关于创建Kernel,求解对流扩散方程
- latex-写论文时一些常用设置
- 多层LSTM
猜你喜欢
浅谈游戏音效测试点
YOLOV5 V6.1 详细训练方法
光条中心提取方法总结(一)
Qt日常学习
浅谈外挂常识和如何防御
动手学深度学习__数据操作
图像形变(插值方法)
Logistic Regression --- Introduction, API Introduction, Case: Cancer Classification Prediction, Classification Evaluation, and ROC Curve and AUC Metrics
Android connects to mysql database using okhttp
【论文阅读】SPANET: SPATIAL PYRAMID ATTENTION NETWORK FOR ENHANCED IMAGE RECOGNITION
随机推荐
"A minute" Copy siege lion log 】 【 run MindSpore LeNet model
[Deep Learning Diary] Day 1: Hello world, Hello CNN MNIST
PostgreSQL schema (Schema)
(Navigation page) OpenStack-M version - manual construction of two nodes - with video from station B
周志华机器学习
target has libraries with conflicting names: libcrypto.a and libssl.a.
yoloV5 使用——训练速度慢,加速训练
2020-10-29
MOOSE平台官方第二个例子分析——关于创建Kernel,求解对流扩散方程
Copy攻城狮的年度之“战”|回顾2020
深度学习理论——过拟合、欠拟合、正则化、优化器
【CV-Learning】Image Classification
WARNING: sql version 9.2, server version 11.0. Some psql features might not work.
No matching function for call to ‘RCTBridgeModuleNameForClass‘
[CV-Learning] Convolutional Neural Network Preliminary Knowledge
Deep Adversarial Decomposition: A Unified Framework for Separating Superimposed Images
典型CCN网络——efficientNet(2019-Google-已开源)
【CV-Learning】图像分类
【深度学习日记】第一天:Hello world,Hello CNN MNIST
MNIST手写数字识别 —— 从二分类到十分类