mirror of
https://github.com/nold360/hive-apps
synced 2024-12-23 06:01:18 +00:00
Fix(heimdall): Ingress
This commit is contained in:
parent
03ae11c380
commit
29c4b37e50
3 changed files with 27 additions and 12 deletions
26
projects/heimdall/manifests/heimdall-ingress.yaml
Normal file
26
projects/heimdall/manifests/heimdall-ingress.yaml
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
---
|
||||||
|
apiVersion: networking.k8s.io/v1
|
||||||
|
kind: Ingress
|
||||||
|
metadata:
|
||||||
|
annotations:
|
||||||
|
cert-manager.io/cluster-issuer: vault-issuer
|
||||||
|
traefik.ingress.kubernetes.io/router.tls: "true"
|
||||||
|
name: heimdall
|
||||||
|
namespace: heimdall
|
||||||
|
spec:
|
||||||
|
ingressClassName: ingress-internal-traefik
|
||||||
|
rules:
|
||||||
|
- host: home.dc
|
||||||
|
http:
|
||||||
|
paths:
|
||||||
|
- backend:
|
||||||
|
service:
|
||||||
|
name: heimdall
|
||||||
|
port:
|
||||||
|
number: 10014
|
||||||
|
path: /
|
||||||
|
pathType: Prefix
|
||||||
|
tls:
|
||||||
|
- hosts:
|
||||||
|
- home.dc
|
||||||
|
secretName: heimdall-tls
|
|
@ -5,5 +5,3 @@ apps:
|
||||||
repoURL: https://charts.truecharts.org
|
repoURL: https://charts.truecharts.org
|
||||||
chart: heimdall
|
chart: heimdall
|
||||||
targetRevision: 11.0.44
|
targetRevision: 11.0.44
|
||||||
include:
|
|
||||||
- ingress-internal
|
|
||||||
|
|
|
@ -20,16 +20,7 @@ service:
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
main:
|
main:
|
||||||
enabled: true
|
enabled: false
|
||||||
hosts:
|
|
||||||
- host: heimdall.dc
|
|
||||||
paths:
|
|
||||||
- path: /
|
|
||||||
pathType: Prefix
|
|
||||||
tls:
|
|
||||||
- secretName: heimdall-tls
|
|
||||||
hosts:
|
|
||||||
- heimdall.dc
|
|
||||||
|
|
||||||
probes:
|
probes:
|
||||||
startup:
|
startup:
|
||||||
|
|
Loading…
Reference in a new issue