add alpine sleep deployment
Because everyone needs this...
This commit is contained in:
parent
6cf1db1ef6
commit
ed1497b620
1 changed files with 20 additions and 0 deletions
20
generic/alpine-sleep-deployment.yaml
Normal file
20
generic/alpine-sleep-deployment.yaml
Normal file
|
@ -0,0 +1,20 @@
|
|||
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"
|
Loading…
Reference in a new issue