diff options
author | Patrick Spek <p.spek@tyil.nl> | 2022-09-23 11:49:15 +0200 |
---|---|---|
committer | Patrick Spek <p.spek@tyil.nl> | 2022-09-23 11:49:15 +0200 |
commit | d9b074d04c2d239cadb4ad82d756800df1ae886a (patch) | |
tree | 7305748365f654dcc4df8989f811990b3094bb70 | |
parent | dbc36835a16f3c4f7e813a8a536c0922ef1f6bbd (diff) | |
download | invidious-d9b074d04c2d239cadb4ad82d756800df1ae886a.tar.gz invidious-d9b074d04c2d239cadb4ad82d756800df1ae886a.tar.bz2 |
Put yaml document markers inside enabled blocks
-rw-r--r-- | Chart.yaml | 2 | ||||
-rw-r--r-- | templates/hpa.yaml | 4 | ||||
-rw-r--r-- | templates/ingress.yaml | 4 |
3 files changed, 5 insertions, 5 deletions
@@ -1,7 +1,7 @@ apiVersion: v2 name: invidious description: Invidious is an alternative front-end to YouTube -version: 2.0.1 +version: 2.0.2 appVersion: 0.20.1 keywords: - youtube diff --git a/templates/hpa.yaml b/templates/hpa.yaml index fe1f4e4..41f2d40 100644 --- a/templates/hpa.yaml +++ b/templates/hpa.yaml @@ -1,5 +1,5 @@ ---- {{- if .Values.autoscaling.enabled }} +--- apiVersion: autoscaling/v1 kind: HorizontalPodAutoscaler metadata: @@ -14,5 +14,5 @@ spec: minReplicas: {{ .Values.autoscaling.minReplicas }} maxReplicas: {{ .Values.autoscaling.maxReplicas }} targetCPUUtilizationPercentage: {{ .Values.autoscaling.targetCPUUtilizationPercentage }} -{{- end }} ... +{{- end }} diff --git a/templates/ingress.yaml b/templates/ingress.yaml index b51d695..b1b2ec0 100644 --- a/templates/ingress.yaml +++ b/templates/ingress.yaml @@ -1,5 +1,5 @@ ---- {{- if .Values.ingress.enabled -}} +--- {{- $fullName := include "invidious.fullname" . -}} apiVersion: networking.k8s.io/v1 kind: Ingress @@ -38,5 +38,5 @@ spec: number: {{ $.Values.service.port }} {{- end }} {{- end }} -{{- end }} ... +{{- end }} |