mirror of
https://github.com/Noratrieb/vps.git
synced 2026-01-14 16:55:00 +01:00
16 lines
337 B
YAML
16 lines
337 B
YAML
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;" ]
|