Skip to content

Commit 3f787a7

Browse files
committed
bugfix(firecrawl): set firecrawl-secret correctly set redisAuth
1 parent 3658efd commit 3f787a7

5 files changed

Lines changed: 28 additions & 23 deletions

File tree

argocd-app.yaml

Lines changed: 12 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,11 @@ spec:
7272
secretKeyRef:
7373
name: "trieve-unified-secret"
7474
key: "clickhousePassword"
75+
- name: REDIS_URL
76+
valueFrom:
77+
secretKeyRef:
78+
name: "trieve-unified-secret"
79+
key: "redisUrl"
7580

7681
config:
7782
asSecret: true
@@ -200,10 +205,14 @@ spec:
200205
serviceMonitor:
201206
enabled: false
202207
auth:
208+
enabled: true
209+
usePasswordFiles: false
210+
existingSecret: trieve-unified-secret
211+
existingSecretPasswordKey: "redisPassword"
203212
secretKeyRef:
204213
enabled: true
205214
secretName: "trieve-unified-secret"
206-
secretKey: "redisPassword"
215+
secretKey: "redisUrl"
207216
master:
208217
disableCommands: []
209218
persistence:
@@ -473,7 +482,7 @@ spec:
473482
operator: "Exists"
474483
effect: "NoSchedule"
475484

476-
firecrawl:
485+
firecrawl-simple:
477486
enabled: true
478487
redisSecret:
479488
name: trieve-unified-secret
@@ -495,30 +504,11 @@ spec:
495504
commonConfiguration: |-
496505
maxclients 20000
497506
metrics:
498-
enabled: true
507+
enabled: false
499508
serviceMonitor:
500-
enabled: true
501-
auth:
502-
password: "firecrawl-redis-password"
503-
master:
504-
disableCommands: []
505-
persistence:
506509
enabled: false
507-
pdb:
508-
create: false
509-
resources:
510-
requests:
511-
memory: 10Gi
512-
limits:
513-
memory: 10Gi
514-
replica:
515-
replicaCount: 0
516510

517511
syncPolicy:
518-
automated:
519-
prune: false
520-
selfHeal: false
521-
allowEmpty: true
522512
syncOptions:
523513
- ServerSideApply=true
524514
retry:

charts/firecrawl/templates/api.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ spec:
3131
secretKeyRef:
3232
name: {{ .Values.redisSecret.name }}
3333
key: {{ .Values.redisSecret.key }}
34+
- name: REDIS_RATE_LIMIT_URL
35+
valueFrom:
36+
secretKeyRef:
37+
name: {{ .Values.redisSecret.name }}
38+
key: {{ .Values.redisSecret.key }}
3439
{{- end }}
3540
envFrom:
3641
- secretRef:

charts/firecrawl/templates/playwright-service.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,11 @@ spec:
4444
secretKeyRef:
4545
name: {{ .Values.redisSecret.name }}
4646
key: {{ .Values.redisSecret.key }}
47+
- name: REDIS_RATE_LIMIT_URL
48+
valueFrom:
49+
secretKeyRef:
50+
name: {{ .Values.redisSecret.name }}
51+
key: {{ .Values.redisSecret.key }}
4752
{{- end }}
4853
---
4954
apiVersion: v1

charts/firecrawl/templates/worker.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,12 @@ spec:
3232
secretKeyRef:
3333
name: {{ .Values.redisSecret.name }}
3434
key: {{ .Values.redisSecret.key }}
35+
- name: REDIS_RATE_LIMIT_URL
36+
valueFrom:
37+
secretKeyRef:
38+
name: {{ .Values.redisSecret.name }}
39+
key: {{ .Values.redisSecret.key }}
3540
{{- end }}
3641
envFrom:
3742
- secretRef:
38-
name: firecrawl-config
43+
name: firecrawl-secret
7 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)