This commit is contained in:
john.leitao@phoenix-systems.ch 2025-07-30 16:17:40 +02:00
parent 88a93c67d3
commit 1e0cfb816f
3 changed files with 19 additions and 5 deletions

View file

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