From 636ff02cc058a13eb1c166a94598eb7e9044e2e8 Mon Sep 17 00:00:00 2001 From: abearixong Date: Fri, 20 Feb 2026 18:11:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=20RSSHub=20=E7=9A=84=20Ingre?= =?UTF-8?q?ssRoute=E3=80=81Service=20=E5=92=8C=20Endpoints=20=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=EF=BC=8C=E6=94=AF=E6=8C=81=E9=80=9A=E8=BF=87=20Traefi?= =?UTF-8?q?k=20=E8=BF=9B=E8=A1=8C=20HTTPS=20=E8=AE=BF=E9=97=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- k8s/xiongxiao.me/apps/rsshub/app.yaml | 45 +++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 k8s/xiongxiao.me/apps/rsshub/app.yaml diff --git a/k8s/xiongxiao.me/apps/rsshub/app.yaml b/k8s/xiongxiao.me/apps/rsshub/app.yaml new file mode 100644 index 0000000..1f48d18 --- /dev/null +++ b/k8s/xiongxiao.me/apps/rsshub/app.yaml @@ -0,0 +1,45 @@ +--- +# RSSHub - rsshub.xiongxiao.me (端口 1200) +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: rsshub-https + namespace: default +spec: + entryPoints: + - websecure + routes: + - match: Host(`rsshub.xiongxiao.me`) + kind: Rule + services: + - name: rsshub-external + port: 1200 + tls: + certResolver: letsencrypt + +--- +# RSSHub 服务 (端口 1200, 本地) +apiVersion: v1 +kind: Service +metadata: + name: rsshub-external + namespace: default +spec: + type: ClusterIP + ports: + - port: 1200 + targetPort: 1200 + protocol: TCP + name: http +--- +apiVersion: v1 +kind: Endpoints +metadata: + name: rsshub-external + namespace: default +subsets: +- addresses: + - ip: 121.4.112.18 + ports: + - port: 1200 + name: http