traefik / traefik-migration-tool

A migration tool from Traefik v1 to Traefik v2
https://docs.traefik.io/migration/v1-to-v2/
Apache License 2.0
151 stars 35 forks source link

apiVersion: networking.k8s.io/v1beta1 kind: Ingress #3

Closed BertrandGouny closed 4 years ago

BertrandGouny commented 4 years ago

Hello, ingress with this kind of definition are ignored :

apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
  name: test-ingress
  annotations:
    nginx.ingress.kubernetes.io/rewrite-target: /
spec:
  rules:
  - http:
      paths:
      - path: /testpath
        backend:
          serviceName: test
          servicePort: 80

this example is from official documentation : https://kubernetes.io/docs/concepts/services-networking/ingress/

error : ingress.go:90: object is not an ingress ignore it: *v1beta1.Ingress

ldez commented 4 years ago

Hello,

I problem is fixed in v0.9.0

BertrandGouny commented 4 years ago

Thanks !