-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into updatecli_e1402b6d8d2de8d5cb6b5781288018523d…
…ca37047a42e257b49476af91f62e37
- Loading branch information
Showing
4 changed files
with
83 additions
and
2 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 |
---|---|---|
|
@@ -21,6 +21,9 @@ jobs: | |
git config user.email "[email protected]" | ||
- name: Install Helm | ||
uses: azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 # v3 | ||
# Needed for mirrorbits-parent subchart dependencies | ||
- name: Add jenkins-infra Helm repository | ||
run: helm repo add jenkins-infra https://jenkins-infra.github.io/helm-charts | ||
- name: Run chart-releaser | ||
uses: helm/chart-releaser-action@be16258da8010256c6e82849661221415f031968 # v1.5.0 | ||
env: | ||
|
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
charts/ |
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
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 |
---|---|---|
@@ -0,0 +1,77 @@ | ||
name: Bump `mirrorbits-parent` subchart versions | ||
|
||
scms: | ||
default: | ||
kind: github | ||
spec: | ||
user: "{{ .github.user }}" | ||
email: "{{ .github.email }}" | ||
owner: "{{ .github.owner }}" | ||
repository: "{{ .github.repository }}" | ||
token: "{{ requiredEnv .github.token }}" | ||
username: "{{ .github.username }}" | ||
branch: "{{ .github.branch }}" | ||
|
||
sources: | ||
lastMirrorbitsLiteChartVersion: | ||
kind: helmchart | ||
name: get last mirrorbits-lite chart version | ||
spec: | ||
url: https://jenkins-infra.github.io/helm-charts | ||
name: mirrorbits-lite | ||
lastHttpdChartVersion: | ||
kind: helmchart | ||
name: get last httpd chart version | ||
spec: | ||
url: https://jenkins-infra.github.io/helm-charts | ||
name: httpd | ||
lastRsyncdChartVersion: | ||
kind: helmchart | ||
name: get last chart version | ||
spec: | ||
url: https://jenkins-infra.github.io/helm-charts | ||
name: rsyncd | ||
|
||
targets: | ||
updateMirrorbitsLite: | ||
name: Update mirrorbits-lite subchart version | ||
sourceid: lastMirrorbitsLiteChartVersion | ||
kind: helmchart | ||
spec: | ||
name: charts/mirrorbits-parent | ||
file: Chart.yaml | ||
key: $.dependencies[0].version | ||
versionincrement: patch | ||
scmid: default | ||
updateHttpd: | ||
name: Update httpd subchart version | ||
sourceid: lastHttpdChartVersion | ||
kind: helmchart | ||
spec: | ||
name: charts/mirrorbits-parent | ||
file: Chart.yaml | ||
key: $.dependencies[1].version | ||
versionincrement: patch | ||
scmid: default | ||
updateRsyncd: | ||
name: Update rsyncd subchart version | ||
sourceid: lastRsyncdChartVersion | ||
kind: helmchart | ||
spec: | ||
name: charts/mirrorbits-parent | ||
file: Chart.yaml | ||
key: $.dependencies[2].version | ||
versionincrement: patch | ||
scmid: default | ||
|
||
actions: | ||
default: | ||
kind: github/pullrequest | ||
scmid: default | ||
title: Bump `mirrorbits-parent` subchart versions | ||
spec: | ||
labels: | ||
- dependencies | ||
- mirrorbits-lite | ||
- httpd | ||
- rsyncd |