Skip to content

Commit

Permalink
feature: add csv-jsonl-worker to helm chart
Browse files Browse the repository at this point in the history
  • Loading branch information
cdxker committed Dec 7, 2024
1 parent 9853154 commit 56f6dc2
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/push-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

file_worker:
file_worker:
name: Push File Worker image
runs-on: ${{ matrix.runner }}
strategy:
Expand Down
25 changes: 25 additions & 0 deletions helm/templates/csv-jsonl-worker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: csv-jsonl-worker
labels:
app.kubernetes.io/name: csv-jsonl-worker
app.kubernetes.io/instance: {{ $.Release.Name }}
spec:
replicas: {{ $.Values.containers.crawl_worker.replicas | default 1 }}
selector:
matchLabels:
app.kubernetes.io/name: csv-jsonl-worker
app.kubernetes.io/instance: {{ $.Release.Name }}
template:
metadata:
labels:
app.kubernetes.io/name: csv-jsonl-worker
app.kubernetes.io/instance: {{ $.Release.Name }}
spec:
containers:
- name: csv-jsonl-worker
image: {{ printf "%s:%s" "trieve/csv-jsonl-worker" $.Values.containers.csv_jsonl_worker.tag }}
envFrom:
- configMapRef:
name: trieve-server-config
3 changes: 3 additions & 0 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ containers:
clone_qdrant:
tag: latest
resources: {}
csv_jsonl_worker:
tag: latest
resources: {}
search:
tag: latest
resources: {}
Expand Down

0 comments on commit 56f6dc2

Please sign in to comment.