-
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
Align fabric8 integration tests to the newest version #1166
Align fabric8 integration tests to the newest version #1166
Conversation
@@ -11,4 +11,5 @@ | |||
|
|||
<logger name="org.testcontainers" level="INFO"/> | |||
<logger name="com.github.dockerjava" level="WARN"/> | |||
<logger name="io.fabric8.kubernetes.client" level="ERROR"/> |
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.
fabric8 okhttp client logs too much, on already lots of logs that we have in integration tests...
|
||
Fabric8Utils.waitForDeployment(client, appDeploymentName, NAMESPACE, 2, 600); | ||
|
||
Ingress appIngress = client.network().v1().ingresses().load(getAppIngress()).get(); | ||
appIngressName = appIngress.getMetadata().getName(); | ||
client.network().v1().ingresses().inNamespace(NAMESPACE).create(appIngress); | ||
client.network().v1().ingresses().inNamespace(NAMESPACE).resource(appIngress).create(); |
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.
pretty trivial changes like this everywhere
pretty simple, non-invasive PR, touches only integration tests... @ryanjbaxter |
No description provided.