tall-queen-61078
03/26/2022, 12:35 PMFailed to log in! SyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON dataincalculable-ocean-74010
03/28/2022, 5:27 PMtall-queen-61078
03/31/2022, 7:37 AM# Configure ports
ports:
# The name of this one can't be changed as it is used for the readiness and
# liveness probes, but you can adjust its config to your liking
traefik:
port: 9000
expose: false
# The exposed port for this service
exposedPort: 9000
# The port protocol (TCP/UDP)
protocol: TCP
api:
port: 8080
expose: true
exposedPort: 8080
protocol: TCP
service:
enabled: true
type: ClusterIPtall-queen-61078
03/31/2022, 7:38 AM---
apiVersion: <http://traefik.containo.us/v1alpha1|traefik.containo.us/v1alpha1>
kind: IngressRoute
metadata:
name: datahub-frontend
namespace: default
spec:
entryPoints:
- api
- websecure
routes:
- kind: Rule
match: Host(`<http://host.myhost.net|host.myhost.net>`) && PathPrefix(`/`)
priority: 1
services:
- name: datahub-datahub-frontend
port: 9002
- kind: Rule
match: Host(`<http://host-api.myhost.net|host-api.myhost.net>`) && PathPrefix(`/`)
priority: 2
services:
- name: datahub-datahub-gms
port: 8080tall-queen-61078
03/31/2022, 7:39 AM---
apiVersion: <http://networking.k8s.io/v1|networking.k8s.io/v1>
kind: Ingress
metadata:
namespace: default
name: ingress
annotations:
<http://kubernetes.io/ingress.class|kubernetes.io/ingress.class>: alb
<http://alb.ingress.kubernetes.io/certificate-arn|alb.ingress.kubernetes.io/certificate-arn>: arn:aws:acm:eu-central-1:account:certificate/123123123
<http://alb.ingress.kubernetes.io/scheme|alb.ingress.kubernetes.io/scheme>: "internal"
<http://alb.ingress.kubernetes.io/target-type|alb.ingress.kubernetes.io/target-type>: "ip"
<http://alb.ingress.kubernetes.io/target-group-attributes|alb.ingress.kubernetes.io/target-group-attributes>: stickiness.enabled=true,stickiness.lb_cookie.duration_seconds=60
<http://alb.ingress.kubernetes.io/listen-ports|alb.ingress.kubernetes.io/listen-ports>: '[{"HTTP":80,"HTTPS": 443}]'
<http://alb.ingress.kubernetes.io/subnets|alb.ingress.kubernetes.io/subnets>: subnet-1, subnet-2, subnet-3
<http://alb.ingress.kubernetes.io/healthcheck-path|alb.ingress.kubernetes.io/healthcheck-path>: "/"
<http://alb.ingress.kubernetes.io/success-codes|alb.ingress.kubernetes.io/success-codes>: "200,404"
spec:
rules:
- host:
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: traefik
port:
number: 443
- path: /
pathType: Prefix
backend:
service:
name: traefik
port:
number: 8080incalculable-ocean-74010
03/31/2022, 10:47 AMearly-lamp-41924
04/01/2022, 6:35 PM