Skip to content

Commit

Permalink
fix: removing extra white space
Browse files Browse the repository at this point in the history
  • Loading branch information
saumilmac committed Jun 26, 2024
1 parent 6a05d69 commit cb2b73d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/snyk-broker/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Common labels
{{- with .Values.labels }}
{{- $commonLabels = merge $commonLabels . }}
{{- end }}
{{- toYaml $commonLabels | nindent 2 }}
{{- toYaml $commonLabels | nindent 4 }}
{{- end }}

{{/*
Expand Down
2 changes: 1 addition & 1 deletion charts/snyk-broker/templates/broker_deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: "{{ .Values.scmType}}-broker{{if not .Values.disableSuffixes }}-{{ .Release.Name }}{{ end }}"
namespace: {{ .Release.Namespace }}
labels:
{{- include "snyk-broker.labels" . | nindent 4 }}
{{- include "snyk-broker.labels" . }}
spec:
{{- if and (not .Values.autoscaling.enabled) (.Values.highAvailabilityMode.enabled) }}
replicas: {{ .Values.replicaCount }}
Expand Down
2 changes: 1 addition & 1 deletion charts/snyk-broker/templates/broker_service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: {{ include "snyk-broker.brokerServiceName" . | nindent 4 }}
namespace: {{ .Release.Namespace }}
labels:
{{- include "snyk-broker.labels" . | nindent 4 }}
{{- include "snyk-broker.labels" . }}
spec:
type: {{ .Values.service.brokerType }}
ports:
Expand Down
2 changes: 1 addition & 1 deletion charts/snyk-broker/templates/serviceaccount.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: {{ include "snyk-broker.serviceAccountName" . }}{{if not .Values.disableSuffixes }}-{{ .Release.Name }}{{ end }}
namespace: {{ .Release.Namespace }}
labels:
{{- include "snyk-broker.labels" . | nindent 4 }}
{{- include "snyk-broker.labels" . }}
{{- with .Values.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
Expand Down

0 comments on commit cb2b73d

Please sign in to comment.