Skip to content

Commit 3658efd

Browse files
committed
feat(firecrawl): make imagePullSecrets configurable
1 parent 627f35a commit 3658efd

6 files changed

Lines changed: 15 additions & 4 deletions

File tree

charts/firecrawl/templates/api.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ spec:
1313
labels:
1414
app: firecrawl-api
1515
spec:
16+
{{- with .Values.imagePullSecrets }}
1617
imagePullSecrets:
17-
- name: trieve-pull-secret
18+
{{- toYaml . | nindent 8 }}
19+
{{- end }}
1820
containers:
1921
- name: firecrawl-api
2022
image: {{ printf "trieve/firecrawl:%s" $.Values.firecrawl_tag }}

charts/firecrawl/templates/clean-cronjob.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ spec:
1212
spec:
1313
template:
1414
spec:
15+
{{- with .Values.imagePullSecrets }}
1516
imagePullSecrets:
16-
- name: trieve-pull-secret
17+
{{- toYaml . | nindent 12 }}
18+
{{- end }}
1719
restartPolicy: OnFailure
1820
containers:
1921
- name: curl-container

charts/firecrawl/templates/playwright-service.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ spec:
1313
labels:
1414
app: playwright-service
1515
spec:
16+
{{- with .Values.imagePullSecrets }}
1617
imagePullSecrets:
17-
- name: trieve-pull-secret
18+
{{- toYaml . | nindent 8 }}
19+
{{- end }}
1820
containers:
1921
- name: playwright-service
2022
image: {{ printf "trieve/puppeteer-service-ts:%s" $.Values.puppeeter_service_tag }}

charts/firecrawl/templates/worker.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ spec:
1313
labels:
1414
app: firecrawl-worker
1515
spec:
16+
{{- with .Values.imagePullSecrets }}
1617
imagePullSecrets:
17-
- name: trieve-pull-secret
18+
{{- toYaml . | nindent 8 }}
19+
{{- end }}
1820
containers:
1921
- name: firecrawl-worker
2022
image: {{ printf "trieve/firecrawl:%s" $.Values.firecrawl_tag }}

charts/firecrawl/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
puppeeter_service_tag: v0.0.13
22
firecrawl_tag: v0.0.55
33

4+
# imagePullSecrets:
5+
# - name: trieve-pull-secret
6+
47
redisUri: "redis://:firecrawl-redis-password@firecrawl-redis-master:6379"
58
redisSecret: {}
69
# name: firecrawl-redis-secret
49 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)