RSS reader added

This commit is contained in:
2023-11-22 15:42:28 +01:00
parent 3b5f8da2bf
commit 8e478225b3
8 changed files with 103 additions and 0 deletions

26
apps/rss/deployment.yaml Normal file
View File

@@ -0,0 +1,26 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: rss
spec:
replicas: 1
selector:
matchLabels:
app: rss
template:
metadata:
labels:
app: rss
spec:
containers:
- name: rss-container
image: arsfeld/yarr:latest
ports:
- containerPort: 7070
volumeMounts:
- name: rss-data
mountPath: /data
volumes:
- name: rss-data
persistentVolumeClaim:
claimName: rss-claim