board?
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Simple_Not
2023-07-01 23:58:54 +10:00
parent 36795411a9
commit 23569ef919
5 changed files with 98 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: flask-htmx-ingress
namespace: vdk2ch
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /$1
spec:
rules:
- host: master.board.vdk2ch.ru
http:
paths:
- path: /v1
pathType: Prefix
backend:
service:
name: flask-htmx-master-service
port:
number: 80
- host: dev.board.vdk2ch.ru
http:
paths:
- path: /v1
pathType: Prefix
backend:
service:
name: flask-htmx-dev-service
port:
number: 80