adds kubernetes conversion

This commit is contained in:
2025-01-16 12:22:38 +01:00
parent b4f3ec3343
commit 78b8c2d48a
4 changed files with 99 additions and 5 deletions
+21
View File
@@ -0,0 +1,21 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
labels:
app: nginx
spec:
replicas: 3
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:1.14.2
ports:
- containerPort: 80