# Only use KongIngress

**URL:** https://discuss.konghq.com/t/only-use-kongingress/6228
**Category:** Questions
**Tags:** kubernetes
**Created:** [May 7, 2020, 1:21am UTC](https://discuss.konghq.com/t/only-use-kongingress/6228 "2020-05-07T01:21:22Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![GQH1993](https://yyz2.discourse-cdn.com/flex036/user_avatar/discuss.konghq.com/gqh1993/32/2073_2.png) [@GQH1993](https://discuss.konghq.com/u/GQH1993)
#### Post date: [May 7, 2020, 1:21am UTC](https://discuss.konghq.com/t/only-use-kongingress/6228/1 "2020-05-07T01:21:22Z")

</div>

Hello, friends！  
Why can’t we just use KongIngress for route forwarding? Kong for route forwarding also depends on the route and service in the memory of Kong. Why should we rely on the Ingress and service of K8S?

---

<div class="post-metadata">

### Author: ![traines](https://yyz2.discourse-cdn.com/flex036/user_avatar/discuss.konghq.com/traines/32/158_2.png) [@traines](https://discuss.konghq.com/u/traines)
#### Post date: [May 7, 2020, 10:35pm UTC](https://discuss.konghq.com/t/only-use-kongingress/6228/2 "2020-05-07T22:35:46Z")

</div>

`Ingress` is an official Kubernetes standard, supported by all ingress controllers. However, the settings and rules it provides do not fully express all configuration options available in all proxies, so most controllers also augment it with additional vendor-specific settings: `KongIngress` and the `konghq.com/...` annotations cover Kong configuration that doesn’t fit into the standard `Ingress` and `Service` specifications, such as selecting routes based on the request method.

There’s [ongoing work to iterate on the `Ingress` spec](https://github.com/kubernetes-sigs/service-apis) and add new standard settings to address limitations that controller developers have found with the existing specification, so over time configuration will likely move from `KongIngress` to equivalent standard settings in `Ingress`.

---

<div class="post-metadata">

### Author: ![GQH1993](https://yyz2.discourse-cdn.com/flex036/user_avatar/discuss.konghq.com/gqh1993/32/2073_2.png) [@GQH1993](https://discuss.konghq.com/u/GQH1993)
#### Post date: [May 9, 2020, 2:08am UTC](https://discuss.konghq.com/t/only-use-kongingress/6228/3 "2020-05-09T02:08:06Z")

</div>

- Thank you for your answers and look forward to the new features！
