Refactor
This commit is contained in:
parent
dbbbfa87bf
commit
39a8d7d004
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue