ACS-12161 Bump Batch Indexing to 5.7.0-A.5 (#1686)

* ACS-12161 Bump Batch Indexing to 5.7.0-A.5

* ACS-12161 Added newly introduced env parameter
This commit is contained in:
Satyam Sah
2026-07-13 15:06:46 +05:30
committed by GitHub
parent 52832f1100
commit 0e5c7c9465
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
SOLR6_TAG=2.0.21-A.2
ACTIVEMQ_TAG=6.2.0-jre17-rockylinux8
ELASTICSEARCH_TAG=8.17.0
BATCH_INDEXING_TAG=5.7.0-A.3
BATCH_INDEXING_TAG=5.7.0-A.5
POSTGRES_TAG=17.9
MYSQL_TAG=8.0.30
MARIADB_TAG=11.8
@@ -125,6 +125,7 @@ public class AlfrescoStackInitializerESBasicAuth extends AlfrescoStackInitialize
" - index_patterns:\n" +
" - \"" + indexName + "\"\n" +
" - \"alfresco-reindex-state\"\n" +
" - \"alfresco-reindex-dead-letter\"\n" +
" allowed_actions:\n" +
" - \"*\"\n";
}
@@ -143,6 +144,7 @@ public class AlfrescoStackInitializerESBasicAuth extends AlfrescoStackInitialize
GenericContainer container = super.createBatchIndexingContainer();
container.withEnv("SPRING_ELASTICSEARCH_REST_USERNAME", SEARCH_ENGINE_USERNAME);
container.withEnv("SPRING_ELASTICSEARCH_REST_PASSWORD", SEARCH_ENGINE_PASSWORD);
container.withEnv("ALFRESCO_REINDEX_CONTINUOUS_ALFRESCOINDEXNAME", CUSTOM_ALFRESCO_INDEX);
return container;
}