-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix directory path in chart publish pipeline. (#404)
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,15 +84,15 @@ commands: | |
- run: | ||
name: Build new packages and index.yaml | ||
command: | | ||
helm package deployment/armada/ -d circleci-charts-test/armada/ | ||
helm package deployment/executor -d circleci-charts-test/armada/ | ||
helm package deployment/executor-cluster-monitoring/ -d circleci-charts-test/armada/ | ||
helm repo index circleci-charts-test/ | ||
helm package deployment/armada/ -d charts/armada/ | ||
helm package deployment/executor -d charts/armada/ | ||
helm package deployment/executor-cluster-monitoring/ -d charts/armada/ | ||
helm repo index charts/ | ||
- run: | ||
name: Commit and push updated charts | ||
command: | | ||
cd circleci-charts-test | ||
cd charts | ||
git -c user.name='GR OSS' -c [email protected] commit -qam "Pushing new helm charts at version $RELEASE_TAG" | ||
eval "$(ssh-agent -s)" | ||
echo -e "$ARMADA_CHART_UPDATE_KEY" | ssh-add - > /dev/null | ||
|