65 lines
1.6 KiB
YAML
65 lines
1.6 KiB
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: neuron
|
|
namespace: neuron
|
|
annotations:
|
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
|
spec:
|
|
ingressClassName: traefik
|
|
tls:
|
|
- secretName: neuron-tls
|
|
hosts:
|
|
- neuron.neuralplatform.ai
|
|
- secretName: neuron-alpha-tls
|
|
hosts:
|
|
- neuron-alpha.neuralplatform.ai
|
|
- secretName: neuron-beta-tls
|
|
hosts:
|
|
- neuron-beta.neuralplatform.ai
|
|
- secretName: neuron-gamma-tls
|
|
hosts:
|
|
- neuron-gamma.neuralplatform.ai
|
|
rules:
|
|
- host: neuron.neuralplatform.ai
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: neuron
|
|
port:
|
|
number: 8001
|
|
- host: neuron-alpha.neuralplatform.ai
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: neuron-alpha
|
|
port:
|
|
number: 8001
|
|
- host: neuron-beta.neuralplatform.ai
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: neuron-beta
|
|
port:
|
|
number: 8001
|
|
- host: neuron-gamma.neuralplatform.ai
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: neuron-gamma
|
|
port:
|
|
number: 8001
|