创建一个基础的Centos的镜像yaml文件
Posted 我的紫霞辣辣
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建一个基础的Centos的镜像yaml文件相关的知识,希望对你有一定的参考价值。
创建一个基础的Centos的镜像yaml文件
vim Centos.yml
apiVersion: apps/v1
kind: Deployment
metadata:
name: centos
namespace: tax-uat
labels:
app: centos
spec:
replicas: 1
selector:
matchLabels:
app: centos
template:
metadata:
labels:
app: centos
spec:
containers:
- name: centos
image: centos
command: [ "/bin/bash", "-c", "--" ]
args: [ "while true; do sleep 30; done;" ]
resources:
limits:
cpu: "2"
memory: "3Gi"
requests:
cpu: "1"
memory: "1Gi"
以上是关于创建一个基础的Centos的镜像yaml文件的主要内容,如果未能解决你的问题,请参考以下文章
kubernetes 简单操作deployment,service,pod,标签
使用Dockerfile文件制作centos6.8基础镜像,基于centos基础镜像的ssh远程登录镜像,jdk1.8镜像,tomcat镜像,elasticsearch镜像等等
系统是centos7.4,怎么制作centos 6.8基础镜像