24 lines
617 B
YAML
24 lines
617 B
YAML
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: kreaper-target
|
||
|
labels:
|
||
|
org.testcontainers.golang/sessionID: ee8dcc4d-72b5-4e77-8244-37abe525f948
|
||
|
app.kubernetes.io/created-by: testcontainers-go
|
||
|
app.kubernetes.io/managed-by: testcontainers-go
|
||
|
spec:
|
||
|
terminationGracePeriodSeconds: 1
|
||
|
containers:
|
||
|
- name: busybox
|
||
|
image: docker.io/busybox:latest
|
||
|
command:
|
||
|
- /bin/sh
|
||
|
- -c
|
||
|
- "sleep 15 && touch /tmp/healthy && sleep 7200"
|
||
|
startupProbe:
|
||
|
exec:
|
||
|
command:
|
||
|
- cat
|
||
|
- /tmp/healthy
|
||
|
periodSeconds: 3
|
||
|
failureThreshold: 10
|