mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-07-29 01:31:11 +00:00
20 lines
297 B
YAML
20 lines
297 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
creationTimestamp: null
|
|
labels:
|
|
run: ping
|
|
name: ping
|
|
spec:
|
|
terminationGracePeriodSeconds: 0
|
|
containers:
|
|
- command:
|
|
- ping
|
|
args:
|
|
- 127.0.0.1
|
|
image: alpine
|
|
name: ping
|
|
dnsPolicy: ClusterFirst
|
|
restartPolicy: Always
|
|
status: {}
|