Skip to content

Commit 8864895

Browse files
authored
Update kubernetes client version to 19.0.0 (#7716)
1 parent 454fafa commit 8864895

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/k3s/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ dependencies {
99
shaded 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.8.8'
1010

1111
testImplementation 'io.fabric8:kubernetes-client:6.9.0'
12-
testImplementation 'io.kubernetes:client-java:18.0.1'
12+
testImplementation 'io.kubernetes:client-java:19.0.0'
1313
testImplementation 'org.assertj:assertj-core:3.24.2'
1414
}

modules/k3s/src/test/java/org/testcontainers/k3s/OfficialClientK3sContainerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public void shouldStartAndHaveListableNode() throws IOException, ApiException {
3535
CoreV1Api api = new CoreV1Api(client);
3636

3737
// interact with the running K3s server, e.g.:
38-
V1NodeList nodes = api.listNode(null, null, null, null, null, null, null, null, null, null);
38+
V1NodeList nodes = api.listNode(null, null, null, null, null, null, null, null, null, null, null);
3939
// }
4040

4141
assertThat(nodes.getItems()).hasSize(1);

0 commit comments

Comments
 (0)