Skip to content
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

Bump kubernetes-client-bom from 5.1.1 to 5.2.0 #15697

Merged
merged 1 commit into from
Mar 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
<sentry.version>4.3.0</sentry.version>
<subethasmtp.version>3.1.7</subethasmtp.version>
<hibernate-quarkus-local-cache.version>0.1.0</hibernate-quarkus-local-cache.version>
<kubernetes-client.version>5.1.1</kubernetes-client.version>
<kubernetes-client.version>5.2.0</kubernetes-client.version>
<flapdoodle.mongo.version>2.2.0</flapdoodle.mongo.version>
<quarkus-spring-api.version>5.2.SP4</quarkus-spring-api.version>
<quarkus-spring-data-api.version>2.1.SP2</quarkus-spring-data-api.version>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package io.quarkus.it.kubernetes.client;

import java.util.List;
import java.util.UUID;

import javax.ws.rs.DELETE;
import javax.ws.rs.GET;
Expand Down Expand Up @@ -65,7 +66,8 @@ public Response updateFirst(@PathParam("namespace") String namespace) {
public Response createNew(@PathParam("namespace") String namespace) {
return Response
.ok(kubernetesClient.pods().inNamespace(namespace)
.create(new PodBuilder().withNewMetadata().withResourceVersion("12345")
.create(new PodBuilder().withNewMetadata()
.withName(UUID.randomUUID().toString()).withResourceVersion("12345")
.endMetadata().build()))
.build();
}
Expand Down