Kubernetes Pod Manifest: Difference between revisions
Jump to navigation
Jump to search
Line 22: | Line 22: | ||
=.spec Elements= | =.spec Elements= | ||
==hostname== | |||
Optional. | |||
==restartPolicy== | |||
Optional. | |||
=TODO= | =TODO= |
Revision as of 01:22, 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
.spec Elements
hostname
Optional.
restartPolicy
Optional.
TODO
Clarify:
kind: Pod spec: containers: ... hostname: blue-app-m-01 restartPolicy: OnFailure