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,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