diff --git a/.github/workflows/helm-community.yml b/.github/workflows/helm-community.yml index d15cce03b..8a6ce3368 100644 --- a/.github/workflows/helm-community.yml +++ b/.github/workflows/helm-community.yml @@ -84,17 +84,19 @@ jobs: --from-file=.dockerconfigjson=$HOME/.docker/config.json \ --type=kubernetes.io/dockerconfigjson + - name: Helm dependencies build + run: helm dep build + working-directory: ${{ matrix.name }} + - name: Helm install - run: | - helm dep up . - helm install ${{ matrix.name }} . \ - --set global.search.sharedSecret="$(openssl rand -hex 24)" \ - --set global.known_urls=http://localhost \ - --set global.alfrescoRegistryPullSecrets=regcred \ - --wait --timeout 6m0s \ - --values ${{ matrix.values }} \ + run: >- + helm install ${{ matrix.name }} helm/${{ matrix.name }} + --set global.search.sharedSecret="$(openssl rand -hex 24)" + --set global.known_urls=http://localhost + --set global.alfrescoRegistryPullSecrets=regcred + --wait --timeout 6m0s + --values ${{ matrix.values }} --values ../../test/community-integration-test-values.yaml - working-directory: helm/${{ matrix.name }} - name: Spit cluster status if: always() diff --git a/.github/workflows/helm-enterprise.yml b/.github/workflows/helm-enterprise.yml index 4d5e89e89..5cfb4326d 100644 --- a/.github/workflows/helm-enterprise.yml +++ b/.github/workflows/helm-enterprise.yml @@ -124,9 +124,12 @@ jobs: echo "helm_install_params=--set dtas.additionalArgs[0]='-k not test_renditions'" >> "$GITHUB_OUTPUT" fi + - name: Helm dependencies build + run: helm dep build + working-directory: ${{ matrix.name }} + - name: Helm install run: >- - helm dep up ./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