Kong in OKD with AWS

Hi
I have installed KONG in OKD with AWS using kong-1.14.2 chart.
I have updated “values.yaml” file to deploy using DBLESS configuration which deployed successfully and I can see kong pod is running.

I see Kong admin and proxy services also created.

Now, I need to configure routes for 2 URLs , which I have created (example mentioned below)

When I browse the Proxy :

  1. I am able to browse proxy with s1 and it is redirecting successfully to s1
  2. But when I try to browse proxy with s2 it is failing with 404 Error.

Need advice on how to configure multiple routes is we have mutliple URLs to be redirected.

I am new to KONG , any help would be appreciated.

config:
_format_version: “1.1”
services:

Example configuration

  • name: s1
    url: http://s1
    routes:
    • name: kong-s1
      paths:
      • /s1
  • name: s2
    url: http://s2
    routes:
    • name: kong-s2
      paths:
      • /s2

Thanks