File tree Expand file tree Collapse file tree 3 files changed +54
-3
lines changed
Expand file tree Collapse file tree 3 files changed +54
-3
lines changed Original file line number Diff line number Diff line change 1+ kind : Service
2+ apiVersion : v1
3+ metadata :
4+ name : tika
5+ labels :
6+ app.kubernetes.io/instance : trieve
7+ app.kubernetes.io/managed-by : Helm
8+ app.kubernetes.io/name : tika
9+ app.kubernetes.io/version : 1.16.0
10+ helm.sh/chart : trieve-0.1.0
11+ meta.helm.sh/release-name : trieve
12+ meta.helm.sh/release-namespace : default
13+ spec :
14+ type : ClusterIP
15+ ports :
16+ - port : 9998
17+ targetPort : 9998
18+ protocol : TCP
19+ name : tika
20+ selector :
21+ app.kubernetes.io/name : tika
22+ app.kubernetes.io/instance : {{ .Release.Name }}
23+ ---
24+ apiVersion : apps/v1
25+ kind : Deployment
26+ metadata :
27+ name : tika
28+ labels :
29+ app.kubernetes.io/name : tika
30+ app.kubernetes.io/instance : {{ .Release.Name }}
31+ app.kubernetes.io/managed-by : Helm
32+ spec :
33+ selector :
34+ matchLabels :
35+ app.kubernetes.io/name : tika
36+ app.kubernetes.io/instance : {{ .Release.Name }}
37+ template :
38+ metadata :
39+ labels :
40+ app.kubernetes.io/name : tika
41+ app.kubernetes.io/instance : {{ .Release.Name }}
42+ app.kubernetes.io/managed-by : Helm
43+ spec :
44+ containers :
45+ - name : tika
46+ resources :
47+ requests :
48+ memory : 5Gi
49+ image : " apache/tika:2.9.1.0-full"
50+ ports :
51+ - containerPort : 9998
Original file line number Diff line number Diff line change 4949 AWS_REGION : {{ .Values.config.s3.region }}
5050 {{- end }}
5151 COOKIE_SECURE : {{ .Values.config.trieve.cookieSecure | quote }}
52- TIKA_URL : tika.default.svc.cluster.local
52+ TIKA_URL : http:// tika.default.svc.cluster.local:9998
5353 OPENAI_BASE_URL : {{ .Values.config.openai.baseUrl }}
5454 {{- if .Values.config.stripe.secret }}
5555 STRIPE_SECRET : {{ .Values.config.stripe.secret }}
Original file line number Diff line number Diff line change @@ -6,8 +6,6 @@ metadata:
66 labels:
77 app.kubernetes.io /name: {{ .name }}
88 app.kubernetes.io /instance: {{ $ .instance }}
9- annotations:
10- checksum/config: {{ include (print $ .Template.BasePath " /settings/backend-configmap.yaml" ) . | sha256sum }}
119spec:
1210 replicas: {{ .replicas | default 1 }}
1311 selector:
1614 app.kubernetes.io /instance: {{ $ .Release.Name }}
1715 template :
1816 metadata:
17+ annotations:
18+ checksum/config: {{ include (print $ .Template.BasePath " /settings/backend-configmap.yaml" ) . | sha256sum }}
1919 labels:
2020 app.kubernetes.io /name: {{ .name }}
2121 app.kubernetes.io /instance: {{ $ .Release.Name }}
You can’t perform that action at this time.
0 commit comments