Files
Learn-Kubernetes/probes/client.yaml
2025-11-06 06:41:45 +01:00

23 lines
365 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: client
labels:
app: client
spec:
selector:
matchLabels:
app: client
replicas: 1
template:
metadata:
labels:
app: client
spec:
containers:
- name: client
image: alpine:latest
command:
- sleep
- "9999"