Hi,
I am using traefik 2.9 version in K3S where traefik comes by default. So, I am using Kubernetes CRD whic has different source files ...
I am trying to achieve http scenario where we don't have any certs.
I have seen some scenarios being mentioned here for gRPC... Traefik Proxy gRPC Examples - Traefik but they are not in kuberentes friendly files , I somehow managed to create Kubernetes files but couldn't make it to work. I am using one instance of K3S and using an ip instead of domain name...
Is there any documentation for Kubernetes CRD for these sceanarios ?
Below is my config
kind: IngressRoute
metadata:
name: traefik-ingress-route
namespace: {{ .Values.application.namespace }}
spec:
entryPoints:
- web
routes:
- match: Host(`x.x.x.x')
kind: Rule
services:
- name: {{ .Values.application.service_name }}
namespace: {{ .Values.application.namespace }}
port: 9999
scheme: h2c
passHostHeader: true
apiVersion: v1
kind: Service
metadata:
name: {{ .Values.application.service_name }}
namespace: {{ .Values.application.namespace }}
annotations:
# cloud.google.com/app-protocols: '{"grpc-api-port":"HTTP2"}'
# beta.cloud.google.com/backend-config: '{"grpc-api-port": "rpc-config"}'
# cloud.google.com/backend-config: '{"ports": {"grpc-api-port": "rpc-config"}}'
# cloud.google.com/neg: '{"ingress": true}'
traefik.ingress.kubernetes.io/service.serversscheme: h2c
spec:
ports:
# - port: {{ .Values.application.port }}
- port: 9999
protocol: TCP
targetPort: grpc-tunnel
name: grpc-api-port
selector:
{{- include "application_labels" .| indent 4 }}
sessionAffinity: None
type: {{ .Values.application.service_type }}```
I can see that , in the dashboard everything looks good. When I point my mock client to x.x.x.x:8000 port, it doesn't work.
Thanks.