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

Refactor last fabric8 integration test package (1) #1824

Merged
merged 43 commits into from
Jan 7, 2025
Merged
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
40252b6
started work
wind57 Oct 4, 2024
86d2e8a
dirty
wind57 Oct 5, 2024
0589167
dirty
wind57 Oct 5, 2024
840fc59
fix
wind57 Oct 5, 2024
71d0a5e
Merge branch 'change-delete-sequence' into refactor-integration-tests-1
wind57 Oct 5, 2024
fe07a73
dirty
wind57 Oct 5, 2024
6b3200f
first working
wind57 Oct 5, 2024
e4a88a9
cleanup
wind57 Oct 5, 2024
f88a581
cleanup
wind57 Oct 5, 2024
ed6565c
cleanup
wind57 Oct 5, 2024
096cf99
dirty
wind57 Oct 6, 2024
8824f14
more improvements
wind57 Oct 6, 2024
543c8a5
Merge branch 'refactor-integration-tests-1' into refactor-integration…
wind57 Oct 6, 2024
7dda032
more improvements
wind57 Oct 6, 2024
53db36f
Merge branch 'refactor-integration-tests-1' into refactor-integration…
wind57 Oct 6, 2024
d0d3b03
dirty
wind57 Oct 6, 2024
947cc43
cleanup
wind57 Oct 6, 2024
e38293f
Merge branch 'refactor-integration-tests-1' into refactor-integration…
wind57 Oct 6, 2024
b87b82b
dirty
wind57 Oct 6, 2024
566dfd6
dirty
wind57 Oct 6, 2024
fe9b3f5
dirty
wind57 Oct 6, 2024
b138b42
static import
wind57 Oct 6, 2024
ab24227
Merge branch 'refactor-integration-tests-1' into refactor-integration…
wind57 Oct 6, 2024
6d7e298
dirty
wind57 Oct 6, 2024
7b134e6
Merge branch '3.1.x' into refactor-integration-tests-1
wind57 Oct 6, 2024
260af17
Merge branch 'refactor-integration-tests-1' into refactor-integration…
wind57 Oct 6, 2024
c5d83f6
dirty
wind57 Oct 6, 2024
f1fa96e
dirty
wind57 Oct 6, 2024
b0dcb45
first ready
wind57 Oct 7, 2024
fed5559
started basic work
wind57 Oct 9, 2024
6668e41
dirty
wind57 Oct 11, 2024
3a0f108
dirty
wind57 Oct 12, 2024
62f4ccd
dirty
wind57 Dec 4, 2024
d8579ac
dirty
wind57 Dec 12, 2024
c201be4
dirty
wind57 Dec 20, 2024
f791927
dirty
wind57 Dec 20, 2024
f1e0774
dirty
wind57 Dec 20, 2024
b1c3c38
fix
wind57 Dec 20, 2024
fcb3952
merge 3.1.x
wind57 Dec 20, 2024
9b4dc97
fix
wind57 Dec 20, 2024
ef10f74
fix
wind57 Dec 20, 2024
9dff134
fix
wind57 Dec 20, 2024
a5564fb
fix
wind57 Dec 20, 2024
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
Prev Previous commit
Next Next commit
more improvements
wind57 committed Oct 6, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 7dda032d23c81adcbbc76b5c9edd722bff9a0ae7
Original file line number Diff line number Diff line change
@@ -29,6 +29,7 @@
import org.springframework.boot.test.web.server.LocalServerPort;
import org.springframework.cloud.kubernetes.commons.discovery.KubernetesDiscoveryProperties;
import org.springframework.cloud.kubernetes.fabric8.discovery.KubernetesCatalogWatchAutoConfiguration;
import org.springframework.cloud.kubernetes.integration.tests.commons.Images;
import org.springframework.cloud.kubernetes.integration.tests.commons.Phase;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Primary;
@@ -51,6 +52,8 @@ void beforeEach() {
util.createNamespace(NAMESPACE_A);
util.createNamespace(NAMESPACE_B);

Images.loadBusybox(K3S);

util.busybox(NAMESPACE_A, Phase.CREATE);
util.busybox(NAMESPACE_B, Phase.CREATE);

Original file line number Diff line number Diff line change
@@ -28,6 +28,7 @@
import org.springframework.boot.test.web.server.LocalServerPort;
import org.springframework.cloud.kubernetes.commons.discovery.KubernetesDiscoveryProperties;
import org.springframework.cloud.kubernetes.fabric8.discovery.KubernetesCatalogWatchAutoConfiguration;
import org.springframework.cloud.kubernetes.integration.tests.commons.Images;
import org.springframework.cloud.kubernetes.integration.tests.commons.Phase;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Primary;
@@ -46,6 +47,7 @@ class Fabric8CatalogWatchWithEndpointSlicesIT extends Fabric8CatalogWatchBase {

@BeforeEach
void beforeEach() {
Images.loadBusybox(K3S);
util.busybox(NAMESPACE, Phase.CREATE);
}

Original file line number Diff line number Diff line change
@@ -28,6 +28,7 @@
import org.springframework.boot.test.web.server.LocalServerPort;
import org.springframework.cloud.kubernetes.commons.discovery.KubernetesDiscoveryProperties;
import org.springframework.cloud.kubernetes.fabric8.discovery.KubernetesCatalogWatchAutoConfiguration;
import org.springframework.cloud.kubernetes.integration.tests.commons.Images;
import org.springframework.cloud.kubernetes.integration.tests.commons.Phase;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Primary;
@@ -46,6 +47,7 @@ class Fabric8CatalogWatchWithEndpointsIT extends Fabric8CatalogWatchBase {

@BeforeEach
void beforeEach() {
Images.loadBusybox(K3S);
util.busybox(NAMESPACE, Phase.CREATE);
}