mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-12-15 20:37:39 +00:00
25 lines
471 B
YAML
25 lines
471 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
annotations:
|
|
test: test
|
|
labels:
|
|
run: target
|
|
name: target
|
|
spec:
|
|
containers:
|
|
- image: registry.k8s.io/nginx:1.7.9
|
|
name: target
|
|
readinessProbe:
|
|
exec:
|
|
command: ["/bin/sh", "-c", "cat probe"]
|
|
livenessProbe:
|
|
exec:
|
|
command: ["/bin/sh", "-c", "cat probe"]
|
|
startupProbe:
|
|
exec:
|
|
command: ["/bin/sh", "-c", "cat probe"]
|
|
initContainers:
|
|
- image: busybox
|
|
name: init
|