Added debian

This commit is contained in:
2026-02-24 19:57:16 +01:00
parent a02b76e6f6
commit e494dd72b6
13 changed files with 187 additions and 17 deletions

19
exemples/deploy.yaml Normal file
View File

@@ -0,0 +1,19 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: my-nginx
spec:
replicas: 1
selector:
matchLabels:
app: my-nginx
template:
metadata:
labels:
app: my-nginx
spec:
containers:
- name: nginx
image: nginx
ports:
- containerPort: 80