当前位置:网站首页>在AWS-EC2中安装Minikube集群
在AWS-EC2中安装Minikube集群
2022-08-04 05:30:00 【指剑】
在AWS-EC2中安装Minikube集群
一、启动EC2实例(Ubantu)
进入ec2控制台:
1.选择实例镜像
这里选择Ubuntu 18.04镜像
2.选择实例类型
3.添加存储(最低10GiB)
4.添加标签(可选)
5.添加安全组(按需求开放端口)
6.核验并启动实例
按需求选择密钥对或者新建密钥对
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/
六、启动miniKube并检查状况(root 用户)
minikube start --vm-driver=none
minikube status
边栏推荐
- Dictionary feature extraction, text feature extraction.
- 【论文阅读】Further Non-local and Channel Attention Networks for Vehicle Re-identification
- YOLOV4流程图(方便理解)
- TensorFlow2 study notes: 6. Overfitting and underfitting, and their mitigation solutions
- 动手学深度学习__张量
- Use of double pointers
- 【论文阅读】Multi-View Spectral Clustering with Optimal Neighborhood Laplacian Matrix
- Th in thymeleaf: href use notes
- 2020-10-19
- 0, deep learning 21 days learning challenge 】 【 set up learning environment
猜你喜欢
Install dlib step pit record, error: WARNING: pip is configured with locations that require TLS/SSL
sklearn中的pipeline机制
TensorFlow2学习笔记:6、过拟合和欠拟合,及其缓解方案
【CV-Learning】Convolutional Neural Network
【CV-Learning】Object Detection & Instance Segmentation
【论文阅读】SPANET: SPATIAL PYRAMID ATTENTION NETWORK FOR ENHANCED IMAGE RECOGNITION
【论文阅读】Multi-View Spectral Clustering with Optimal Neighborhood Laplacian Matrix
[CV-Learning] Convolutional Neural Network Preliminary Knowledge
Usage of RecyclerView
强化学习中,Q-Learning与Sarsa的差别有多大?
随机推荐
【论文阅读】Anchor-Free Person Search
MNIST手写数字识别 —— 基于Mindspore快速构建感知机实现十分类
双向LSTM
【论文阅读】Exploring Spatial Significance via Hybrid Pyramidal Graph Network for Vehicle Re-identificatio
动手学深度学习__张量
read and study
fuser 使用—— YOLOV5内存溢出——kill nvidai-smi 无pid 的 GPU 进程
Data reading in yolov3 (1)
[Deep Learning 21 Days Learning Challenge] Memo: What does our neural network model look like? - detailed explanation of model.summary()
TensorFlow2学习笔记:7、优化器
MNIST手写数字识别 —— 从零构建感知机实现二分类
投稿相关
动手学深度学习_softmax回归
Jupyter Notebook安装库;ModuleNotFoundError: No module named ‘plotly‘解决方案。
动手学深度学习_卷积神经网络CNN
Comparison of oracle's number and postgresql's numeric
2020-10-29
Pytest常用插件
Androd Day02
Pytorch语义分割理解