File tree Expand file tree Collapse file tree 5 files changed +14
-4
lines changed Expand file tree Collapse file tree 5 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 10
10
namespace : trieve
11
11
source :
12
12
repoURL : https://devflowinc.github.io/trieve-helm
13
- targetRevision : 0.2.43
13
+ targetRevision : 0.2.44
14
14
chart : trieve
15
15
helm :
16
16
releaseName : trieve-local
29
29
postgres :
30
30
# Enables Postgres via the subchart
31
31
enabled : true
32
+ additionalLabels :
33
+ owner : gen-ai
32
34
# Installs cloudnative-pg operator
33
35
installCrds : true
34
36
# Pulls from secret if postgres.enabled = true
@@ -145,6 +147,9 @@ spec:
145
147
templates :
146
148
podTemplates :
147
149
- name : clickhouse-pod-template
150
+ metadata :
151
+ labels :
152
+ owner : gen-ai
148
153
spec :
149
154
containers :
150
155
- name : clickhouse
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : trieve
3
3
description : Helm chart expressing Trieve deployment without any dependencies
4
4
type : application
5
- version : 0.2.44
5
+ version : 0.2.45
6
6
appVersion : " 0.12.0"
7
7
dependencies :
8
8
- name : qdrant
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ metadata:
5
5
labels :
6
6
app.kubernetes.io/name : {{ $.Release.Name }}-trieve-postgres
7
7
app.kubernetes.io/instance : {{ .Release.Name }}
8
- {{- with .Values.global. additionalLabels }}
8
+ {{- with .Values.additionalLabels }}
9
9
{{- toYaml . | nindent 4 }}
10
10
{{- end }}
11
11
spec :
Original file line number Diff line number Diff line change 1
1
installCrds : true
2
2
3
+ additionalLabels : {}
4
+ # owner: gen-ai
5
+
3
6
clusterSpec :
4
7
instances : 3
5
8
Original file line number Diff line number Diff line change 1
1
global :
2
2
additionalLabels :
3
3
# Add additional labels to the deployment
4
- # owner: gen-ai
4
+ owner : gen-ai
5
5
6
6
additionalAnnotations :
7
7
# Add additional annotations to the deployment
@@ -19,6 +19,8 @@ postgres:
19
19
enabled : true
20
20
# Installs cloudnative-pg operator
21
21
installCrds : true
22
+ # Override additionalLabels to prevent merge conflict with remote chart
23
+ additionalLabels : {}
22
24
# Pulls from secret if postgres.enabled = true
23
25
# dbURI: "postgres://postgres:[email protected] :5432/trieve"
24
26
# This requires installing cloud-native-pg operator https://cloudnative-pg.io/documentation/1.24/installation_upgrade/
You can’t perform that action at this time.
0 commit comments