33 lines
583 B
YAML
33 lines
583 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: rsshub
|
|
namespace: miniflux
|
|
labels:
|
|
app: rsshub
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: rsshub
|
|
template:
|
|
metadata:
|
|
annotations: {}
|
|
labels:
|
|
app: rsshub
|
|
spec:
|
|
nodeSelector:
|
|
region: us
|
|
containers:
|
|
- name: rsshub
|
|
image: diygod/rsshub:chromium-bundled
|
|
imagePullPolicy: Always
|
|
ports:
|
|
- containerPort: 1200
|
|
name: web
|
|
env:
|
|
- name: TZ
|
|
value: "Asia/Shanghai"
|
|
|
|
|