文章20 | 阅读 7961 | 点赞0
apiVersion: group/apiversion # 如果没有给定 group 名称,那么默认为 core,
可以使用 kubectl api-versions # 获取当前 k8s 版本上所有的 apiVersion 版本信息( 每个版本可能不同 )
kind: #资源类别
metadata: #资源元数据
name
namespace
lables
annotations # 主要目的是方便用户阅读查找
spec: # 期望的状态(disired state)
status:# 当前状态,本字段有 Kubernetes 自身维护,用户不能去定义
kubectl api-versions
kubectl explain pod
kubect explain ingress
apiVersion <string> #表示字符串类型
metadata <Object> #表示需要嵌套多层字段
labels <map[string]string> #表示由k:v组成的映射
finalizers <[]string> #表示字串列表
ownerReferences <[]Object> #表示对象列表
hostPID <boolean> #布尔类型
priority <integer> #整型
name <string> -required- #如果类型后面接 -required-,表示为必填字段
apiVersion: v1
kind: Pod
metadata:
name: pod-demo
namespace: default
labels:
app: myapp
version: v1
spec:
containers:
- name: myapp-1
image: wangyanglinux/myapp:v1
- name: busybox-1
image: busybox:latest
command:
- "/bin/sh"
- "-c"
- "sleep 3600"
kubectl apply -f pod.yaml
kubectl describe pod pod-demo
kubectl logs pod-demo -c myapp-1
# Please edit the object below. Lines beginning with a '#' will be ignored,
# and an empty file will abort the edit. If an error occurs while saving this file will be
# reopened with the relevant failures.
#
apiVersion: v1
kind: Service
metadata:
creationTimestamp: "2020-02-22T12:45:10Z"
labels:
run: nginx-linux
name: nginx-linux
namespace: default
resourceVersion: "166951"
selfLink: /api/v1/namespaces/default/services/nginx-linux
uid: e85b8894-c0f2-4c9f-81cd-1361505ccb21
spec:
clusterIP: 10.110.158.235
externalTrafficPolicy: Cluster
ports:
- nodePort: 30357
port: 30000
protocol: TCP
targetPort: 80
selector:
run: nginx-linux
sessionAffinity: None
type: NodePort
status:
loadBalancer: {}
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/wtl1992/article/details/104453353
内容来源于网络,如有侵权,请联系作者删除!