Kubernetes Pod Manifest: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 33: Line 33:
   <font color=red>hostname</font>: blue-app-m-01
   <font color=red>hostname</font>: blue-app-m-01
   <font color=red>restartPolicy</font>: OnFailure
   <font color=red>restartPolicy</font>: OnFailure
Document that we need:
kind: Pod
metadata:
  name: ...
Is this a Kubernetes requirement or a Helm requirement?

Revision as of 01:19, 7 September 2019

External

Internal

Overview

apiVersion: v1
kind: Pod
metadata:
  name: loop
  labels:
    color: blue
spec:
  containers:
  - name: loop-container
    image: docker.io/ovidiufeodorov/loop:latest

Common Elements

Common Manifest Elements

TODO

Clarify:

kind: Pod
spec:
  containers:
  ...
  hostname: blue-app-m-01
  restartPolicy: OnFailure