-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
conditional ingress for wiremock pods #1445
Conversation
@@ -438,6 +439,33 @@ public void wiremock(String namespace, String path, Phase phase) { | |||
|
|||
} | |||
|
|||
public void wiremock(String namespace, String path, Phase phase, boolean withIngress) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the idea is that we have a lot of integration tests that deploy wiremock pods, but not every test needs to have an ingress attached to it. This takes time, though we don't really need it.
@ryanjbaxter simple PR that shaves off some time when running integration tests |
@@ -260,6 +260,7 @@ private void waitForConfigMap(String namespace, ConfigMap configMap, Phase phase | |||
}); | |||
} | |||
|
|||
@Deprecated(forRemoval = true) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why not have this method call the new method?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah! good point
No description provided.