mirror of
https://github.com/mendableai/firecrawl.git
synced 2024-11-16 03:32:22 +08:00
2dc7be3869
This commit removes the liveness and readiness probes configuration from the Kubernetes worker manifest. Additionally, a Service definition for the worker application has been removed. These changes might be necessary to update the deployment strategy or simplify the configuration.
27 lines
582 B
YAML
27 lines
582 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: worker
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: worker
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: worker
|
|
spec:
|
|
imagePullSecrets:
|
|
- name: docker-registry-secret
|
|
containers:
|
|
- name: worker
|
|
image: ghcr.io/winkk-dev/firecrawl:latest
|
|
imagePullPolicy: Always
|
|
args: [ "pnpm", "run", "workers" ]
|
|
envFrom:
|
|
- configMapRef:
|
|
name: firecrawl-config
|
|
#- secretRef:
|
|
# name: firecrawl-secret
|