This commit is contained in:
Mikaël Cluseau
2023-09-27 21:39:02 +02:00
commit 750744ea3b
5 changed files with 89 additions and 0 deletions

20
templates/apps.yaml Normal file
View File

@ -0,0 +1,20 @@
{{- range until (.Values.nb_app|int) }}
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: app-{{.}}
spec:
replicas: 1
selector:
matchLabels:
app: "{{.}}"
template:
metadata:
labels:
app: "{{.}}"
spec:
containers:
- name: app
image: nginx:1.25.2-alpine
{{- end }}