From d3ab792e5c8f17d773a4b7cb7bc62848c4ac8573 Mon Sep 17 00:00:00 2001 From: Christian Kotzbauer Date: Thu, 20 Jan 2022 12:22:31 +0100 Subject: [PATCH] fix indent Signed-off-by: Christian Kotzbauer --- charts/sbom-operator/Chart.yaml | 2 +- charts/sbom-operator/templates/deployment.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/charts/sbom-operator/Chart.yaml b/charts/sbom-operator/Chart.yaml index 1acacaa..9ae0a67 100644 --- a/charts/sbom-operator/Chart.yaml +++ b/charts/sbom-operator/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 description: Catalogue all images of a Kubernetes cluster to Git with Syft name: sbom-operator -version: 0.1.1 +version: 0.1.2 appVersion: 0.1.0 home: https://github.com/ckotzbauer/sbom-operator sources: diff --git a/charts/sbom-operator/templates/deployment.yaml b/charts/sbom-operator/templates/deployment.yaml index 27f1f4a..6f5063a 100644 --- a/charts/sbom-operator/templates/deployment.yaml +++ b/charts/sbom-operator/templates/deployment.yaml @@ -43,11 +43,11 @@ spec: name: work - mountPath: /tmp name: tmp - volumes: - - name: work - emptyDir: {} - - name: tmp - emptyDir: {} + volumes: + - name: work + emptyDir: {} + - name: tmp + emptyDir: {} {{- with .Values.nodeSelector }} nodeSelector: {{ toYaml . | indent 8 }}