From 74960b9b092d465d7d2772b6ed7f3c16819bd845 Mon Sep 17 00:00:00 2001 From: Alexandre Chapellon Date: Thu, 19 Oct 2023 16:53:46 +0200 Subject: [PATCH] fixup search ernterprise chart - 3.0.0-alpha.4 --- charts/alfresco-search-enterprise/Chart.yaml | 2 +- charts/alfresco-search-enterprise/README.md | 2 +- .../templates/reindexing-job.yaml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/charts/alfresco-search-enterprise/Chart.yaml b/charts/alfresco-search-enterprise/Chart.yaml index 52d661f79..84a41a95b 100644 --- a/charts/alfresco-search-enterprise/Chart.yaml +++ b/charts/alfresco-search-enterprise/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 name: alfresco-search-enterprise description: A Helm chart for deploying Alfresco Elasticsearch connector type: application -version: 3.0.0-alpha.3 +version: 3.0.0-alpha.4 appVersion: 3.3.1 dependencies: - name: alfresco-common diff --git a/charts/alfresco-search-enterprise/README.md b/charts/alfresco-search-enterprise/README.md index 0fc6c7656..ce6fec16e 100644 --- a/charts/alfresco-search-enterprise/README.md +++ b/charts/alfresco-search-enterprise/README.md @@ -1,6 +1,6 @@ # alfresco-search-enterprise -![Version: 3.0.0-alpha.3](https://img.shields.io/badge/Version-3.0.0--alpha.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.3.1](https://img.shields.io/badge/AppVersion-3.3.1-informational?style=flat-square) +![Version: 3.0.0-alpha.4](https://img.shields.io/badge/Version-3.0.0--alpha.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.3.1](https://img.shields.io/badge/AppVersion-3.3.1-informational?style=flat-square) A Helm chart for deploying Alfresco Elasticsearch connector diff --git a/charts/alfresco-search-enterprise/templates/reindexing-job.yaml b/charts/alfresco-search-enterprise/templates/reindexing-job.yaml index 167bd33f9..f1f688d89 100644 --- a/charts/alfresco-search-enterprise/templates/reindexing-job.yaml +++ b/charts/alfresco-search-enterprise/templates/reindexing-job.yaml @@ -87,11 +87,11 @@ spec: name: {{ $repoCm }} key: {{ .Values.reindexing.repository.existingConfigMap.keys.url }} command: [ "/bin/sh","-c" ] - # Delay running the reindexing to give Alfresco Repository a chance to fully initialise + # Delay running the reindexing to give Alfresco Repository a chance to initialise its database args: - | - while [ $(curl -sw '%{http_code}' $(REPOSITORY_URL)/api/-default-/public/alfresco/versions/1/probes/-ready- -o /dev/null) -ne 200 ] - do echo 'Waiting for the Alfresco Repository...' + while [ $(curl -sw '%{http_code}' ${REPOSITORY_URL}/api/-default-/public/alfresco/versions/1/probes/-ready- -o /dev/null) -ne 200 ] + do echo 'Waiting for the Alfresco repository to come up at $REPOSITORY_URL ...' sleep 5 done echo 'Alfresco is ready, delay reindexing to give a chance to fully initialise.'