This commit is contained in:
nora 2023-02-07 17:42:54 +01:00
parent 6274818d1f
commit f76aac3b59
5 changed files with 59 additions and 1 deletions

16
kube/ubuntu-debugger.yaml Normal file
View file

@ -0,0 +1,16 @@
apiVersion: v1
kind: Pod
metadata:
name: ubuntu-debugger
labels:
name: ubuntu-debugger
spec:
containers:
- name: ubuntu-debugger
image: docker.io/ubuntu:latest
resources:
limits:
memory: "128Mi"
cpu: "500m"
command: [ "/bin/bash", "-c", "--" ]
args: [ "while true; do sleep 30; done;" ]