12 lines
163 B
YAML
12 lines
163 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: ubuntu
|
|
spec:
|
|
containers:
|
|
- name: ubuntu
|
|
image: ubuntu:latest
|
|
command: [ "sleep" ]
|
|
args: [ "infinity" ]
|
|
|