modified: README.md

new file:   manifests/alpine-deployment.yaml
new file:   manifests/debian-deployment.yaml
This commit is contained in:
Márcio Fernandes
2026-04-21 21:33:56 +00:00
parent d1bca321d9
commit 12997d2037
3 changed files with 63 additions and 0 deletions

View 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"]