use ingressroute
ci / build (push) Waiting to run
Details
ci / build (push) Waiting to run
Details
This commit is contained in:
parent
68c994b6f9
commit
3a6b6179f3
|
@ -38,6 +38,51 @@ spec:
|
||||||
port: 8001
|
port: 8001
|
||||||
targetPort: 5678
|
targetPort: 5678
|
||||||
|
|
||||||
|
---
|
||||||
|
apiVersion: traefik.containo.us/v1alpha1
|
||||||
|
kind: IngressRoute
|
||||||
|
metadata:
|
||||||
|
name: echo
|
||||||
|
namespace: futureporn
|
||||||
|
|
||||||
|
spec:
|
||||||
|
entryPoints:
|
||||||
|
- web
|
||||||
|
|
||||||
|
routes:
|
||||||
|
- match: Host(`echo.fp.sbtp.xyz`)
|
||||||
|
kind: Rule
|
||||||
|
services:
|
||||||
|
- name: echo
|
||||||
|
port: 80
|
||||||
|
|
||||||
|
|
||||||
|
# ---
|
||||||
|
# apiVersion: networking.k8s.io/v1
|
||||||
|
# kind: Ingress
|
||||||
|
# metadata:
|
||||||
|
# name: echo
|
||||||
|
# namespace: futureporn
|
||||||
|
# annotations:
|
||||||
|
# traefik.ingress.kubernetes.io/router.entrypoints: web
|
||||||
|
# traefik.ingress.kubernetes.io/router.tls: "false"
|
||||||
|
# # cert-manager.io/cluster-issuer: "{{ .Values.certManager.issuer }}"
|
||||||
|
# spec:
|
||||||
|
# rules:
|
||||||
|
# - host: "{{ .Values.echo.hostname }}"
|
||||||
|
# http:
|
||||||
|
# paths:
|
||||||
|
# - path: /
|
||||||
|
# pathType: Prefix
|
||||||
|
# backend:
|
||||||
|
# service:
|
||||||
|
# name: echo
|
||||||
|
# port:
|
||||||
|
# number: 8001
|
||||||
|
# tls:
|
||||||
|
# - secretName: echo-cert
|
||||||
|
|
||||||
|
|
||||||
{{ if eq .Values.environment "development" }}
|
{{ if eq .Values.environment "development" }}
|
||||||
---
|
---
|
||||||
apiVersion: chisel-operator.io/v1
|
apiVersion: chisel-operator.io/v1
|
||||||
|
@ -50,28 +95,3 @@ spec:
|
||||||
port: 9090
|
port: 9090
|
||||||
auth: chisel
|
auth: chisel
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
---
|
|
||||||
apiVersion: networking.k8s.io/v1
|
|
||||||
kind: Ingress
|
|
||||||
metadata:
|
|
||||||
name: echo
|
|
||||||
namespace: futureporn
|
|
||||||
annotations:
|
|
||||||
traefik.ingress.kubernetes.io/router.entrypoints: web
|
|
||||||
traefik.ingress.kubernetes.io/router.tls: "false"
|
|
||||||
# cert-manager.io/cluster-issuer: "{{ .Values.certManager.issuer }}"
|
|
||||||
spec:
|
|
||||||
rules:
|
|
||||||
- host: "{{ .Values.echo.hostname }}"
|
|
||||||
http:
|
|
||||||
paths:
|
|
||||||
- path: /
|
|
||||||
pathType: Prefix
|
|
||||||
backend:
|
|
||||||
service:
|
|
||||||
name: echo
|
|
||||||
port:
|
|
||||||
number: 8001
|
|
||||||
tls:
|
|
||||||
- secretName: echo-cert
|
|
||||||
|
|
Loading…
Reference in New Issue