2017-01-31 00:17:18 +00:00
|
|
|
apiVersion: v1
|
|
|
|
kind: Pod
|
|
|
|
metadata:
|
|
|
|
name: command-demo
|
|
|
|
labels:
|
|
|
|
purpose: demonstrate-command
|
|
|
|
spec:
|
|
|
|
containers:
|
|
|
|
- name: command-demo-container
|
|
|
|
image: debian
|
|
|
|
command: ["printenv"]
|
|
|
|
args: ["HOSTNAME", "KUBERNETES_PORT"]
|
2017-10-10 00:25:34 +00:00
|
|
|
restartPolicy: OnFailure
|