mirror of
https://github.com/1Panel-dev/KubePi.git
synced 2025-12-24 13:38:10 +08:00
13 lines
219 B
YAML
13 lines
219 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: logme
|
|
spec:
|
|
containers:
|
|
- name: gen
|
|
image: centos:7
|
|
command:
|
|
- "bin/bash"
|
|
- "-c"
|
|
- "while true; do echo $(date) | tee /dev/stderr; sleep 1; done"
|