ttrss: add mercury api

This commit is contained in:
Ruben Hensen
2025-01-20 17:02:13 +01:00
parent 85a9b198ca
commit 53a73aa897
3 changed files with 127 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: mercury
spec:
replicas: 1
selector:
matchLabels:
app: mercury
template:
metadata:
labels:
app: mercury
spec:
containers:
- image: wangqiru/mercury-parser-api:latest
name: mercury
ports:
- name: http
containerPort: 3000
hostPort: 3000
protocol: TCP
restartPolicy: Always
terminationGracePeriodSeconds: 5
+11
View File
@@ -0,0 +1,11 @@
apiVersion: v1
kind: Service
metadata:
name: mercury-svc
spec:
ports:
- name: http-svc
port: 3000
targetPort: 3000
selector:
app: mercury