mirror of
https://github.com/KevinMidboe/k9e.no.git
synced 2026-01-10 19:26:06 +00:00
Kube ingress
This commit is contained in:
@@ -44,6 +44,7 @@ steps:
|
|||||||
- pull_request
|
- pull_request
|
||||||
branch:
|
branch:
|
||||||
- main
|
- main
|
||||||
|
- feat/ingress
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
@@ -75,11 +76,12 @@ steps:
|
|||||||
- pull_request
|
- pull_request
|
||||||
branch:
|
branch:
|
||||||
- main
|
- main
|
||||||
|
- feat/ingress
|
||||||
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- Build
|
- Build
|
||||||
---
|
---
|
||||||
kind: signature
|
kind: signature
|
||||||
hmac: 21637711852b1b5a29ae8fb084cc536daa06f6223a6c3d8a622fdbd2b2df527b
|
hmac: 1d062e2faf0fcc8b1e6140c76d54d7305cd0fea7c7f35cc070f05aaaa5cf0f3e
|
||||||
|
|
||||||
...
|
...
|
||||||
|
|||||||
17
.kubernetes/ingress.yml
Normal file
17
.kubernetes/ingress.yml
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
apiVersion: networking.k8s.io/v1
|
||||||
|
kind: Ingress
|
||||||
|
metadata:
|
||||||
|
name: k9e-ingress
|
||||||
|
namespace: k9e
|
||||||
|
spec:
|
||||||
|
rules:
|
||||||
|
- host: k9e.kazan.schleppe
|
||||||
|
http:
|
||||||
|
paths:
|
||||||
|
- path: /
|
||||||
|
pathType: Prefix
|
||||||
|
backend:
|
||||||
|
service:
|
||||||
|
name: k9e-service
|
||||||
|
port:
|
||||||
|
number: 80
|
||||||
Reference in New Issue
Block a user