-
Notifications
You must be signed in to change notification settings - Fork 98
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
Resume K8s integration tests #1314
Conversation
…t scope to functional test modules, as required after the split of such artifacts in the Fabri8 Kubernetes client project
…t Accept header for the HTTP call that verifies the version
…am-Protocol-Version header
… to use the correct ones, i.e. apps/replicasets
… .metadata.annotations in a Service resource and avoid NPE, when creatiing an URL for the service itself
ec9699d
to
064fafe
Compare
…fix imports plus expected body contentsin HelloWorldIT
6578487
to
e2b0ccb
Compare
e2b0ccb
to
05bb397
Compare
05bb397
to
e0e477c
Compare
@@ -25,6 +25,11 @@ | |||
<artifactId>junit</artifactId> | |||
<scope>test</scope> | |||
</dependency> | |||
<dependency> | |||
<groupId>io.fabric8</groupId> |
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.
Just some minor thing. Can we add this dependency under kubernetes/pom.xml instead of adding to each sub modules ?
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.
@jimma the dependency is needed by 5 out of 9 child projects, and we don't really want for others that don't need it to inherit it, e.g.: the istio
module should not depend on this artifact as they don't need it. The dependency management is already defined by the root POM, so in the end I don't think we should bring it up.
Do you agree?
I am merging this, based on the approval and related discussion with @jimma about the pending comment, which has been agreed upon to be marked as resolved. |
Short description of what this resolves:
Changes aim at resuming Arquillian Cube tests for Kubernetes integration.
Changes proposed in this pull request:
Fixes #1313