ed1497b620
Because everyone needs this...
20 lines
330 B
YAML
20 lines
330 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: alpine-deployment
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: alpine
|
|
replicas: 2
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: alpine
|
|
spec:
|
|
containers:
|
|
- name: alpine
|
|
image: alpine:3.17
|
|
args:
|
|
- sleep
|
|
- "1000000"
|