Skip to content

Commit 804dddd

Browse files
authored
Fix: Embeddings indentation (#288)
1 parent e8fe42d commit 804dddd

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

charts/sourcegraph/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Use `**BREAKING**:` to denote a breaking change
55
# Changelog
66

77
<!-- START CHANGELOG -->
8+
- Fix erroneous indentation of `deploy`, `app.kubernetes.io/component` labels and `volumes` in Embeddings deployment
89

910
## Unreleased
1011

charts/sourcegraph/templates/embeddings/embeddings.Deployment.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ metadata:
1010
{{- if .Values.embeddings.labels }}
1111
{{- toYaml .Values.embeddings.labels | nindent 4 }}
1212
{{- end }}
13-
deploy: sourcegraph
14-
app.kubernetes.io/component: embeddings
13+
deploy: sourcegraph
14+
app.kubernetes.io/component: embeddings
1515
spec:
1616
minReadySeconds: 10
1717
replicas: 1
@@ -85,8 +85,8 @@ spec:
8585
{{- if .Values.embeddings.serviceAccount.create }}
8686
serviceAccountName: {{ .Values.embeddings.serviceAccount.name }}
8787
{{- end}}
88-
volumes:
89-
{{- if .Values.embeddings.extraVolumes }}
90-
{{- toYaml .Values.embeddings.extraVolumes | nindent 6 }}
91-
{{- end }}
88+
volumes:
89+
{{- if .Values.embeddings.extraVolumes }}
90+
{{- toYaml .Values.embeddings.extraVolumes | nindent 6 }}
91+
{{- end }}
9292
{{- end }}

0 commit comments

Comments
 (0)