modified: README.md
new file: manifests/alpine-deployment.yaml new file: manifests/debian-deployment.yaml
This commit is contained in:
10
manifests/alpine-deployment.yaml
Normal file
10
manifests/alpine-deployment.yaml
Normal file
@@ -0,0 +1,10 @@
|
||||
apiVersion: v1
|
||||
kind: Pod
|
||||
metadata:
|
||||
name: alpine
|
||||
spec:
|
||||
containers:
|
||||
- name: alpine
|
||||
image: docker.io/library/alpine:latest
|
||||
command: ["sh", "-c", "echo OK && sleep 3600"]
|
||||
restartPolicy: Never
|
||||
20
manifests/debian-deployment.yaml
Normal file
20
manifests/debian-deployment.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: debian
|
||||
labels:
|
||||
app: debian
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: debian
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: debian
|
||||
spec:
|
||||
containers:
|
||||
- name: debian
|
||||
image: debian:latest
|
||||
command: ["sleep", "infinity"]
|
||||
Reference in New Issue
Block a user