From 39a8d7d0045452e77f87393e08a336d7306e3d6a Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Wed, 15 Nov 2023 23:00:49 -0300 Subject: [PATCH] Refactor --- helm/exam/templates/deployment.yaml | 30 ++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/helm/exam/templates/deployment.yaml b/helm/exam/templates/deployment.yaml index cdb5385..c4d32a6 100644 --- a/helm/exam/templates/deployment.yaml +++ b/helm/exam/templates/deployment.yaml @@ -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: