https://linen.dev logo
#help
Title
# help
k

kareem elkasaby

03/31/2023, 1:27 AM
hello any one know how to dynamically access the newly created mock apis through ingress on k8s ?
s

Shlomy Sheps

04/02/2023, 11:08 AM
if you using java you can set up a connection from the client as so:
Copy code
@Before("@NuanceE2eTests and not @IMAE2ETests")
public void setUpWireMock() {
    wiremock = new WireMock("https", nuanceConnectorConfig.getHost(), 443);
    resetTheMockServer();
}
where host is the cluster endpoint on kubernetes
2 Views