Difference between revisions of "Kind: Pod"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
(3 intermediate revisions by the same user not shown)
Line 13: Line 13:
 
   [[nodeSelector]]:
 
   [[nodeSelector]]:
 
     disktype: ssd
 
     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"
  
  

Revision as of 11:14, 10 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: