k8s_debug_override - choisungwook/portfolio GitHub Wiki
command ์ค๋ฒ๋ผ์ด๋ฉ ํด์ ๋๋ฒ๊น ํ๊ฒฝ ๊ตฌ์ฑ
apiVersion: v1
kind: Pod
metadata:
name: debug-demo
namespace: default
labels:
app: debug-demo
spec:
containers:
- name: main
image: "test:v1"
command:
- "/usr/bin/env"
args:
- "/bin/bash"
- "-c"
- "while true;do echo sleep; sleep 2; done"
restartPolicy: Always