mirror of https://github.com/k3s-io/k3s
13 lines
208 B
YAML
13 lines
208 B
YAML
![]() |
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: counter
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: count
|
||
|
image: ubuntu:14.04
|
||
|
args: [bash, -c,
|
||
|
'for ((i = 0; ; i++)); do echo "$i: $(date)"; sleep 1; done']
|
||
|
|
||
|
|