Skip to content

Commit 7dda032

Browse files
committed
more improvements
1 parent 8824f14 commit 7dda032

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

spring-cloud-kubernetes-integration-tests/spring-cloud-kubernetes-fabric8-client-catalog-watcher/src/test/java/org/springframework/cloud/kubernetes/fabric8/catalog/watch/Fabric8CatalogWatchWithEndpointSlicesAndNamespaceFilterIT.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
import org.springframework.boot.test.web.server.LocalServerPort;
3030
import org.springframework.cloud.kubernetes.commons.discovery.KubernetesDiscoveryProperties;
3131
import org.springframework.cloud.kubernetes.fabric8.discovery.KubernetesCatalogWatchAutoConfiguration;
32+
import org.springframework.cloud.kubernetes.integration.tests.commons.Images;
3233
import org.springframework.cloud.kubernetes.integration.tests.commons.Phase;
3334
import org.springframework.context.annotation.Bean;
3435
import org.springframework.context.annotation.Primary;
@@ -51,6 +52,8 @@ void beforeEach() {
5152
util.createNamespace(NAMESPACE_A);
5253
util.createNamespace(NAMESPACE_B);
5354

55+
Images.loadBusybox(K3S);
56+
5457
util.busybox(NAMESPACE_A, Phase.CREATE);
5558
util.busybox(NAMESPACE_B, Phase.CREATE);
5659

spring-cloud-kubernetes-integration-tests/spring-cloud-kubernetes-fabric8-client-catalog-watcher/src/test/java/org/springframework/cloud/kubernetes/fabric8/catalog/watch/Fabric8CatalogWatchWithEndpointSlicesIT.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
import org.springframework.boot.test.web.server.LocalServerPort;
2929
import org.springframework.cloud.kubernetes.commons.discovery.KubernetesDiscoveryProperties;
3030
import org.springframework.cloud.kubernetes.fabric8.discovery.KubernetesCatalogWatchAutoConfiguration;
31+
import org.springframework.cloud.kubernetes.integration.tests.commons.Images;
3132
import org.springframework.cloud.kubernetes.integration.tests.commons.Phase;
3233
import org.springframework.context.annotation.Bean;
3334
import org.springframework.context.annotation.Primary;
@@ -46,6 +47,7 @@ class Fabric8CatalogWatchWithEndpointSlicesIT extends Fabric8CatalogWatchBase {
4647

4748
@BeforeEach
4849
void beforeEach() {
50+
Images.loadBusybox(K3S);
4951
util.busybox(NAMESPACE, Phase.CREATE);
5052
}
5153

spring-cloud-kubernetes-integration-tests/spring-cloud-kubernetes-fabric8-client-catalog-watcher/src/test/java/org/springframework/cloud/kubernetes/fabric8/catalog/watch/Fabric8CatalogWatchWithEndpointsIT.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
import org.springframework.boot.test.web.server.LocalServerPort;
2929
import org.springframework.cloud.kubernetes.commons.discovery.KubernetesDiscoveryProperties;
3030
import org.springframework.cloud.kubernetes.fabric8.discovery.KubernetesCatalogWatchAutoConfiguration;
31+
import org.springframework.cloud.kubernetes.integration.tests.commons.Images;
3132
import org.springframework.cloud.kubernetes.integration.tests.commons.Phase;
3233
import org.springframework.context.annotation.Bean;
3334
import org.springframework.context.annotation.Primary;
@@ -46,6 +47,7 @@ class Fabric8CatalogWatchWithEndpointsIT extends Fabric8CatalogWatchBase {
4647

4748
@BeforeEach
4849
void beforeEach() {
50+
Images.loadBusybox(K3S);
4951
util.busybox(NAMESPACE, Phase.CREATE);
5052
}
5153

0 commit comments

Comments
 (0)