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 }}

36
templates/dbs.yaml Normal file
View File

@ -0,0 +1,36 @@
{{- range until (.Values.nb_db|int) }}
---
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: db-{{.}}
spec:
replicas: 1
selector:
matchLabels:
db: "{{.}}"
template:
metadata:
labels:
db: "{{.}}"
spec:
containers:
- name: db
image: quay.io/coreos/etcd:v3.5.9
args:
- --data-dir=/data
env:
- name: ETCD_INITIAL_CLUSTER_STATE
value: new
volumeMounts:
- name: data
mountPath: /data
volumeClaimTemplates:
- metadata:
name: data
spec:
storageClass: local
resources:
requests:
storage: 1Gi
{{- end }}