Kubernetes Pod Manifest: Difference between revisions
Jump to navigation
Jump to search
(→Common) |
(→Common) |
||
Line 18: | Line 18: | ||
image: docker.io/ovidiufeodorov/loop:latest | image: docker.io/ovidiufeodorov/loop:latest | ||
=Common= | =Common Elements= | ||
{{Internal|Kubernetes_Manifests#Common_Elements|Common Manifest Elements}} | |||
=TODO= | =TODO= |
Revision as of 00:33, 7 September 2019
External
Internal
Overview
apiVersion: v1 kind: Pod metadata: name: loop spec: containers: - name: loop-container image: docker.io/ovidiufeodorov/loop:latest
Common 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?