File tree Expand file tree Collapse file tree 3 files changed +47
-3
lines changed
Expand file tree Collapse file tree 3 files changed +47
-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/name : tika
8+ spec :
9+ type : ClusterIP
10+ ports :
11+ - port : 9998
12+ targetPort : 9998
13+ protocol : TCP
14+ name : tika
15+ selector :
16+ app.kubernetes.io/name : tika
17+ app.kubernetes.io/instance : {{ .Release.Name }}
18+ ---
19+ apiVersion : apps/v1
20+ kind : Deployment
21+ metadata :
22+ name : tika
23+ labels :
24+ app.kubernetes.io/name : tika
25+ app.kubernetes.io/instance : {{ .Release.Name }}
26+ spec :
27+ selector :
28+ matchLabels :
29+ app.kubernetes.io/name : tika
30+ app.kubernetes.io/instance : {{ .Release.Name }}
31+ template :
32+ metadata :
33+ labels :
34+ app.kubernetes.io/name : tika
35+ app.kubernetes.io/instance : {{ .Release.Name }}
36+ spec :
37+ containers :
38+ - name : tika
39+ resources :
40+ requests :
41+ memory : 5Gi
42+ image : apache/tika:2.9.1.0-full
43+ ports :
44+ - 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