mirror of
https://github.com/mendableai/firecrawl.git
synced 2024-11-16 11:42:24 +08:00
31 lines
473 B
YAML
31 lines
473 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: redis
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: redis
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: redis
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: redis
|
||
|
image: redis:alpine
|
||
|
args: ["redis-server", "--bind", "0.0.0.0"]
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
name: redis
|
||
|
spec:
|
||
|
selector:
|
||
|
app: redis
|
||
|
ports:
|
||
|
- protocol: TCP
|
||
|
port: 6379
|
||
|
targetPort: 6379
|