From 28f254747c7c071b50fd473fc1ca4d1332f0bf86 Mon Sep 17 00:00:00 2001 From: Kirill Plis Date: Wed, 29 Nov 2023 21:56:15 +0700 Subject: [PATCH] fix indent for job and deployment --- standard-app/templates/workloads/deployment.yaml | 2 +- standard-app/templates/workloads/job.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/standard-app/templates/workloads/deployment.yaml b/standard-app/templates/workloads/deployment.yaml index b650928..34b7b47 100644 --- a/standard-app/templates/workloads/deployment.yaml +++ b/standard-app/templates/workloads/deployment.yaml @@ -102,7 +102,7 @@ spec: {{- range $appConfig.volumes }} - name: {{ .name }} {{- with .type }} - {{- toYaml . | nindent 14 }} + {{- toYaml . | nindent 10 }} {{- end }} {{- end }} {{- end }} diff --git a/standard-app/templates/workloads/job.yaml b/standard-app/templates/workloads/job.yaml index 72d75b3..3a733ee 100644 --- a/standard-app/templates/workloads/job.yaml +++ b/standard-app/templates/workloads/job.yaml @@ -84,7 +84,7 @@ spec: {{- range $jobConfig.volumes }} - name: {{ .name }} {{- with .type }} - {{- toYaml . | nindent 14 }} + {{- toYaml . | nindent 12 }} {{- end }} {{- end }} {{- end }}