Kubernetes Pod Manifest: Difference between revisions
Jump to navigation
Jump to search
(→Common) |
|||
Line 19: | Line 19: | ||
=Common= | =Common= | ||
=TODO= | |||
Clarify: | |||
kind: Pod | |||
spec: | |||
containers: | |||
... | |||
<font color=red>hostname</font>: blue-app-m-01 | |||
<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 00:31, 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
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?