当前位置:网站首页>在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
边栏推荐
- 图像形变(插值方法)
- 光条中心提取方法总结(二)
- Android foundation [Super detailed android storage method analysis (SharedPreferences, SQLite database storage)]
- PCL窗口操作
- Qt日常学习
- Pytorch语义分割理解
- [Go language entry notes] 13. Structure (struct)
- tensorRT教程——tensor RT OP理解(实现自定义层,搭建网络)
- 【Copy攻城狮日志】“一分钟”跑通MindSpore的LeNet模型
- WARNING: sql version 9.2, server version 11.0. Some psql features might not work.
猜你喜欢
[CV-Learning] Semantic Segmentation
tensorRT教程——tensor RT OP理解(实现自定义层,搭建网络)
[Deep Learning 21 Days Learning Challenge] 1. My handwriting was successfully recognized by the model - CNN implements mnist handwritten digit recognition model study notes
【CV-Learning】语义分割
动手学深度学习_卷积神经网络CNN
fuser 使用—— YOLOV5内存溢出——kill nvidai-smi 无pid 的 GPU 进程
TensorFlow2 study notes: 7. Optimizer
【论文阅读】Multi-View Spectral Clustering with Optimal Neighborhood Laplacian Matrix
TensorFlow2学习笔记:5、常用激活函数
【CV-Learning】图像分类
随机推荐
【深度学习21天学习挑战赛】3、使用自制数据集——卷积神经网络(CNN)天气识别
MNIST手写数字识别 —— ResNet-经典卷积神经网络
The pipeline mechanism in sklearn
数据库的简述与常用操作指南
双向LSTM
【CV-Learning】语义分割
Android connects to mysql database using okhttp
图像resize
安装dlib踩坑记录,报错:WARNING: pip is configured with locations that require TLS/SSL
Briefly say Q-Q map; stats.probplot (QQ map)
Dictionary feature extraction, text feature extraction.
【论文阅读】Exploring Spatial Significance via Hybrid Pyramidal Graph Network for Vehicle Re-identificatio
PyTorch
PCL1.12 解决memory.h中EIGEN处中断问题
[Deep Learning 21-Day Learning Challenge] 3. Use a self-made dataset - Convolutional Neural Network (CNN) Weather Recognition
TensorRT 5 初步认识
MFC 打开与保存点云PCD文件
Lee‘s way of Deep Learning 深度学习笔记
字典特征提取,文本特征提取。
ValueError: Expected 96 from C header, got 88 from PyObject