One Off Service Routing

Hello,
I’ve setup my Kong ingress, which looks something like this:

konghq.com/strip-path: “true”
path: /v1/serviceA
backend:
serviceName: serviceA
path: /v1/serviceB
backend:
serviceName: serviceB

Now I’d like to add something like this:
path: /v1/serviceB/hello
backend:
serviceName: serviceC/hello

Is this possible to do? Specifically, routing one “sub” endpoint to a different service and including part of the URL with it, and only for one off case (specifically, I do want strip-path to be true for all other services)

Not within the same Ingress, no. The strip_path annotation applies equally to everything within it. You’d need to split it into multiple Ingress definitions.