RSS reader added
This commit is contained in:
26
apps/rss/deployment.yaml
Normal file
26
apps/rss/deployment.yaml
Normal 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
|
Reference in New Issue
Block a user