KongIngress doesn't work for me

Hello @megastallman,

Ingress resource in Kubernetes provides you to express routing decision based on Host header and path of your request.
A sample of how you could configure your first rule will be (/s1/v3/a1 [GET, POST]) :

metadata:
  name: my-ingress
  annotations:
    plugins.konghq.com: co
spec:
  rules:
  - host: example.com
    http:
      paths:
      - path: /s1/v3/a1
        backend:
          serviceName: my-service # will be your service
          servicePort: 80
---
apiVersion: configuration.konghq.com/v1
kind: KongIngress
metadata:
  name: my-ingress # not the name is same as the name of the ingress resource
route:
  methods:
  - GET
  - POST