deploybot test

This commit is contained in:
2026-01-07 15:01:56 +01:00
commit 2c80425811
5 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
labels:
app: nginx
spec:
replicas: 2
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx-container
image: nginx:latest
volumeMounts:
- name: web-content-vol
mountPath: /usr/share/nginx/html
volumes:
- name: web-content-vol
configMap:
name: web-content