Bumping versions

This commit is contained in:
buildmaster
2023-01-19 03:59:35 +00:00
parent 88d607ce2e
commit ef7b0a2f7e
3 changed files with 5 additions and 5 deletions

View File

@@ -84,7 +84,7 @@ class SecretsEventReloadIT {
void testSecretReload() throws Exception {
configK8sClientIt(Phase.CREATE);
Commons.assertReloadLogStatements("added secret informer for namespace",
"added configmap informer for namespace", IMAGE_NAME);
"added configmap informer for namespace", IMAGE_NAME);
testSecretEventReload();
}

View File

@@ -101,7 +101,7 @@ class ConfigMapEventReloadIT {
void testInformFromOneNamespaceEventNotTriggered() {
manifests("one", Phase.CREATE);
Commons.assertReloadLogStatements("added configmap informer for namespace",
"added secret informer for namespace", IMAGE_NAME);
"added secret informer for namespace", IMAGE_NAME);
WebClient webClient = builder().baseUrl("localhost/left").build();
String result = webClient.method(HttpMethod.GET).retrieve().bodyToMono(String.class).retryWhen(retrySpec())
@@ -145,7 +145,7 @@ class ConfigMapEventReloadIT {
void testInformFromOneNamespaceEventTriggered() {
manifests("two", Phase.CREATE);
Commons.assertReloadLogStatements("added configmap informer for namespace",
"added secret informer for namespace", IMAGE_NAME);
"added secret informer for namespace", IMAGE_NAME);
// read the value from the right-configmap
WebClient webClient = builder().baseUrl("localhost/right").build();
@@ -186,7 +186,7 @@ class ConfigMapEventReloadIT {
void testInform() {
manifests("three", Phase.CREATE);
Commons.assertReloadLogStatements("added configmap informer for namespace",
"added secret informer for namespace", IMAGE_NAME);
"added secret informer for namespace", IMAGE_NAME);
// read the initial value from the right-configmap
WebClient rightWebClient = builder().baseUrl("localhost/right").build();

View File

@@ -83,7 +83,7 @@ class SecretsEventsReloadIT {
@Test
void test() {
Commons.assertReloadLogStatements("added secret informer for namespace",
"added configmap informer for namespace", IMAGE_NAME);
"added configmap informer for namespace", IMAGE_NAME);
WebClient webClient = builder().baseUrl("localhost/key").build();
String result = webClient.method(HttpMethod.GET).retrieve().bodyToMono(String.class).retryWhen(retrySpec())
.block();