Skip to content

Commit

Permalink
OPSEXP-2590 Use helm build for fetching deps (#1200)
Browse files Browse the repository at this point in the history
  • Loading branch information
gionn authored Sep 25, 2024
1 parent 5a7319a commit ee9199a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/helm-community.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/helm-enterprise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion helm/acs-sso-example/docs/sso-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
```

Expand Down

0 comments on commit ee9199a

Please sign in to comment.