Hi,
In GerritCluster resource, for the primary I have set sshport as 29418 and for replica, set 29419 for the same.
I was expecting the VirtualService to be created such that 29419 is routed to gerrit-replica:29419. But what I have is:
```
tcp:
- match:
- port: 29418
route:
- destination:
host: gerrit-service.gerrit.svc.cluster.local
port:
number: 29418
- match:
- port: 29418
route:
- destination:
host: gerrit-replica-service.gerrit.svc.cluster.local
port:
number: 29418
```
Is this expected?
Thanks
Saheer