File tree 3 files changed +12
-1
lines changed
src/test/java/com/marcnuri/helm
3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 34
34
<artifactId >assertj-core</artifactId >
35
35
<scope >test</scope >
36
36
</dependency >
37
+ <dependency >
38
+ <groupId >org.slf4j</groupId >
39
+ <artifactId >slf4j-simple</artifactId >
40
+ </dependency >
37
41
<dependency >
38
42
<groupId >org.testcontainers</groupId >
39
43
<artifactId >k3s</artifactId >
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ class HelmKubernetesTest {
49
49
50
50
@ BeforeAll
51
51
static void setUpKubernetes (@ TempDir Path tempDir ) throws IOException {
52
- k3sContainer = new K3sContainer (DockerImageName .parse ("rancher/k3s:v1.29.0 -k3s1" ));
52
+ k3sContainer = new K3sContainer (DockerImageName .parse ("rancher/k3s:v1.31.2 -k3s1" ));
53
53
k3sContainer .start ();
54
54
kubeConfig = tempDir .resolve ("config.yaml" );
55
55
Files .write (kubeConfig , k3sContainer .getKubeConfigYaml ().getBytes (StandardCharsets .UTF_8 ), StandardOpenOption .CREATE );
Original file line number Diff line number Diff line change 69
69
<!-- https://issues.apache.org/jira/browse/MSOURCES-143?page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel&focusedCommentId=17755616#comment-17755616 -->
70
70
<version .maven-source-plugin>3.3.1</version .maven-source-plugin>
71
71
<version .maven-surefire-plugin>3.5.2</version .maven-surefire-plugin>
72
+ <version .slf4j>2.0.16</version .slf4j>
72
73
<version .sonatype-staging>1.7.0</version .sonatype-staging>
73
74
<version .test-containers>1.20.3</version .test-containers>
74
75
</properties >
145
146
<version >${version.assertj} </version >
146
147
<scope >test</scope >
147
148
</dependency >
149
+ <dependency >
150
+ <groupId >org.slf4j</groupId >
151
+ <artifactId >slf4j-simple</artifactId >
152
+ <version >${version.slf4j} </version >
153
+ <scope >test</scope >
154
+ </dependency >
148
155
<dependency >
149
156
<groupId >org.testcontainers</groupId >
150
157
<artifactId >k3s</artifactId >
You can’t perform that action at this time.
0 commit comments