How to use variables in Istio VirtualService?

11/13/2020

I'm currently working on a case when we need to dynamically create services and provide access to them via URI subpaths of the main gateway.

I'm planning to use virtual services for traffic routing for them. Virtual Service for a particular service should look like:

apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
  name: subpaths-routes
spec:
  hosts:
  - mainservice.prod.svc.cluster.local
  http:
  - name: "subpath-redirection"
    match:
    - uri:
        prefix: "/bservices/svc-2345-6789"
    route:
    - destination:
        host: svc-2345-6789.prod.svc.cluster.local

But there may be a huge number of such services (like thousands). All follow the same pattern of routing. I would like to know if Istio has a mechanism to specify VirtualService with variables/parameters like the following:

apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
  name: subpaths-routes
spec:
  hosts:
  - mainservice.prod.svc.cluster.local
  http:
  - name: "subpath-redirection"
    match:
    - uri:
        prefix: "/bservices/"{{ variable }}
    route:
    - destination:
        host: {{ variable }}.prod.svc.cluster.local

In Nginx, one can do a similar thing by specifying something like this:

location ~ /service/(?<variable>[0-9a-zA-Z\_\-]+)/ {
  proxy_pass http://$variable:8080;
}

Is there a way in Istio to accomplish that? And if there is not, how would thousands of VSs impact the performance of request processing? Is It expensive to keep them in terms of CPU and RAM being consumed?

Thank you in advance!

-- fonhorst
istio
kubernetes
routes

1 Answer

11/16/2020

How to use variables in Istio VirtualService?

As far as I know there is no such option in istio to specify a variable in prefix and host, if it was only a prefix then you could try with regex instead of prefix.


If you would like to automate it in some way, I mean create a variable and put in in both, prefix and host, then you could try do to it with helm.

There are few examples for virtual service in helm.


how would thousands of VSs impact the performance of request processing?

There is github issue about that, as @lanceliuu mentioned there

When we create ~1k virtualservices in a single cluster, the ingress gateway is picking up new virtualservice slowly.

So that might be one of the issues with thousands of Virtual Services.

Is It expensive to keep them in terms of CPU and RAM being consumed?

I would say it would require testing. I checked in above github issue and they mentioned that there is no mem/cpu pressure for istio components, but I can't say how expensive is that.

In theory you could create 1 big virtual service instead of thousands, but as mentioned in documentation you should rather Split large virtual services into multiple resources.


Additional resources:

-- Jakub
Source: StackOverflow