This commit is contained in:
Santiago Lo Coco 2023-11-15 23:00:49 -03:00
parent dbbbfa87bf
commit 39a8d7d004
1 changed files with 15 additions and 15 deletions

View File

@ -1,37 +1,37 @@
{{- range $deploy := .Values.deployments }}
{{- range .Values.deployments }}
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "exam.fullname" $ }}-{{ $deploy.name }}
name: {{ include "exam.fullname" $ }}-{{ .name }}
labels:
app: {{ $deploy.name }}
app: {{ .name }}
{{- include "exam.labels" $ | nindent 4 }}
spec:
replicas: {{ .replicas }}
selector:
matchLabels:
app: {{ $deploy.name }}
tier: {{ $deploy.tier }}
app: {{ .name }}
tier: {{ .tier }}
{{- include "exam.selectorLabels" $ | nindent 6 }}
template:
metadata:
labels:
app: {{ $deploy.name }}
tier: {{ $deploy.tier }}
app: {{ .name }}
tier: {{ .tier }}
{{- include "exam.selectorLabels" $ | nindent 8 }}
spec:
containers:
- name: {{ $deploy.name }}
{{- with $deploy.image }}
- name: {{ .name }}
{{- with .image }}
image: {{ .repository }}:{{ .tag | default $.Chart.AppVersion }}
{{- end }}
ports:
- name: {{ $deploy.name }}
containerPort: {{ $deploy.port }}
{{- if $deploy.env }}
- name: {{ .name }}
containerPort: {{ .port }}
{{- if .env }}
env:
{{- with $deploy.env }}
{{- with .env }}
{{- range $key, $val := .nonsecrets }}
{{- $envKey := $key | upper | replace "-" "_" }}
- name: {{ $envKey }}
@ -49,12 +49,12 @@ spec:
{{- end }}
{{- end }}
resources: {}
{{- if $deploy.mountPath }}
{{- if .mountPath }}
volumeMounts:
- mountPath: {{ .mountPath }}
name: {{ .storage }}
{{- end }}
{{- if $deploy.mountPath }}
{{- if .mountPath }}
volumes:
- name: {{ .storage }}
persistentVolumeClaim: