pantry/projects/kluctl.io/nginx.yml
Tobias Germer 8360279400
+kluctl.io -- Kluctl is the missing glue to put together large Kubernetes deployments (#3849)
* +kluctl.io -- Kluctl is the missing glue to put together large Kubernetes deployments

* +kluctl.io -- add missing npm dependency
2023-10-26 20:03:50 -04:00

22 lines
374 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment-{{ args.environment }}
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