Difference between revisions of "Kind: Pod"

From wikieduonline
Jump to navigation Jump to search
Line 45: Line 45:
  
 
== See also ==
 
== See also ==
* [[Kind (Kubernetes)]]
+
* {{kind}}
 
* {{K8s}}
 
* {{K8s}}
  
 
[[Category:K8s]]
 
[[Category:K8s]]

Revision as of 21:16, 18 May 2022

apiVersion: v1
kind: Pod
metadata:
  name: nginx
  labels:
    env: test
spec:
  containers:
  - name: nginx
    image: nginx
    imagePullPolicy: IfNotPresent
  nodeSelector:
    disktype: ssd


https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/

---
apiVersion: v1
kind: Pod
metadata:
  name: frontend
spec:
  containers:
  - name: app
    image: images.my-company.example/app:v4
    resources:
      requests:
        memory: "64Mi"
        cpu: "250m"
      limits:
        memory: "128Mi"
        cpu: "500m"
  - name: log-aggregator
    image: images.my-company.example/log-aggregator:v6
    resources:
      requests:
        memory: "64Mi"
        cpu: "250m"
      limits:
        memory: "128Mi"
        cpu: "500m"


See also

Advertising: