This commit is contained in:
2026-01-23 21:26:29 +08:00
parent 1bda97bae3
commit db2ae8dd7b
3 changed files with 135 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
---
# Convex - convex.kevisual.cn
apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: convex-https
namespace: default
spec:
entryPoints:
- websecure
routes:
- match: Host(`convex.kevisual.cn`)
kind: Rule
services:
- name: convex-external
port: 3210
tls:
certResolver: letsencrypt
---
# Convex 服务 (端口 3210, 本地)
apiVersion: v1
kind: Service
metadata:
name: convex-external
namespace: default
spec:
type: ClusterIP
ports:
- port: 3210
targetPort: 3210
protocol: TCP
name: http
---
apiVersion: v1
kind: Endpoints
metadata:
name: convex-external
namespace: default
subsets:
- addresses:
- ip: 118.196.32.29
ports:
- port: 3210
name: http