added alpine debug pod

This commit is contained in:
maximilian.bartz 2025-05-05 19:30:46 +02:00
parent 9fc1f8acc3
commit 8a1dcefe44
3 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,14 @@
apiVersion: v1
kind: Pod
metadata:
name: alpine-test
namespace: ${TENANT_NAMESPACE}
spec:
containers:
- name: alpine
image: alpine:latest
command: ["/bin/sh"]
args: ["-c", "while true; do sleep 3600; done"]
stdin: true
tty: true
restartPolicy: Never