Skip to content

Commit

Permalink
remove empty lines in yaml files
Browse files Browse the repository at this point in the history
Signed-off-by: Maxime Fournioux <[email protected]>
  • Loading branch information
mfournioux committed Nov 20, 2024
1 parent 02605ac commit 09860ab
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion examples/chart-helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ type: application
version: 0.0.1

maintainers:
- name: mfournioux
- name: mfournioux
2 changes: 1 addition & 1 deletion examples/chart-helm/templates/hpa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ spec:
type: Utilization
averageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }}
{{- end }}
{{- end }}
{{- end }}
2 changes: 1 addition & 1 deletion examples/chart-helm/templates/poddisruptionbudget.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ metadata:
name: "{{ .Release.Name }}-pdb"
namespace: {{ .Release.Namespace }}
spec:
maxUnavailable: {{ default 1 .Values.maxUnavailablePodDisruptionBudget }}
maxUnavailable: {{ default 1 .Values.maxUnavailablePodDisruptionBudget }}
2 changes: 1 addition & 1 deletion examples/chart-helm/templates/secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ type: Opaque
data:
{{- range $key, $val := .Values.secrets }}
{{ $key }}: {{ $val | b64enc | quote }}
{{- end }}
{{- end }}
2 changes: 1 addition & 1 deletion examples/chart-helm/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ spec:
- name: {{ include "chart.service-port-name" . }}
port: {{ include "chart.service-port" . }}
targetPort: {{ include "chart.container-port-name" . }}
protocol: TCP
protocol: TCP
2 changes: 1 addition & 1 deletion examples/chart-helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,4 +115,4 @@ livenessProbe:

labels:
environment: "test"
release: "test"
release: "test"
3 changes: 1 addition & 2 deletions examples/chart-helm/worfklows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,4 @@ jobs:
echo "FAILURE"
else
echo "SUCCESS"
fi

fi

0 comments on commit 09860ab

Please sign in to comment.