diff --git a/.github/workflows/helm-community.yml b/.github/workflows/helm-community.yml index 2f467506a..e6bd83184 100644 --- a/.github/workflows/helm-community.yml +++ b/.github/workflows/helm-community.yml @@ -84,9 +84,15 @@ jobs: --from-file=.dockerconfigjson=$HOME/.docker/config.json \ --type=kubernetes.io/dockerconfigjson + - name: Add dependency chart repos + run: | + helm repo add self https://alfresco.github.io/alfresco-helm-charts/ + helm repo add codecentric https://codecentric.github.io/helm-charts/ + helm repo add elastic https://helm.elastic.co/ + - name: Helm install run: | - helm dep up . + helm dep build . helm install ${{ matrix.name }} . \ --set global.search.sharedSecret="$(openssl rand -hex 24)" \ --set global.known_urls=http://localhost \ diff --git a/.github/workflows/helm-enterprise.yml b/.github/workflows/helm-enterprise.yml index d790b1731..7bfbce65a 100644 --- a/.github/workflows/helm-enterprise.yml +++ b/.github/workflows/helm-enterprise.yml @@ -125,9 +125,14 @@ jobs: echo "helm_install_params=--set dtas.additionalArgs[0]='-k not test_renditions'" >> "$GITHUB_OUTPUT" fi + - name: Add dependency chart repos + run: | + helm repo add self https://alfresco.github.io/alfresco-helm-charts/ + helm repo add elastic https://helm.elastic.co/ + - name: Helm install run: >- - helm dep up ./helm/alfresco-content-services && + helm dep build ./helm/alfresco-content-services && helm install acs ./helm/alfresco-content-services --set global.search.sharedSecret="$(openssl rand -hex 24)" --set global.known_urls=http://localhost diff --git a/helm/acs-sso-example/docs/sso-guide.md b/helm/acs-sso-example/docs/sso-guide.md index 925e6b28d..32ef34cb2 100644 --- a/helm/acs-sso-example/docs/sso-guide.md +++ b/helm/acs-sso-example/docs/sso-guide.md @@ -466,7 +466,7 @@ alfresco-content-app: We can now build and deploy the chart: ```bash -helm dep up # pull dependencies +helm dep build # pull dependencies helm install --generate-name --atomic . ```