Kubernetes Pod Manifest

From NovaOrdis Knowledge Base
Revision as of 00:57, 7 September 2019 by Ovidiu (talk | contribs) (→‎Overview)
Jump to navigation Jump to search

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


Document that we need:

kind: Pod
metadata:
  name: ...

Is this a Kubernetes requirement or a Helm requirement?