-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable dependabot for version updates (#479)
* Enable dependabot for version updates This PR includes a dependabot configuration file that instructs dependabot to look for version updates to container images in the following charts: - csi-vxflexos - csm-authorization - karavi-observability Other charts can be updated by following a similar pattern to alter the chart values and templates, and then adding the chart to the .github/dependabot file. Tested by running `helm template --dependency-update <chart-name>` and manually inspecting the resulting yaml for proper image specifications. Signed-off-by: Eric Young <eric.young@emc.com> --------- Signed-off-by: Eric Young <eric.young@emc.com>
- Loading branch information
1 parent
6ec6b75
commit 6e0b47d
Showing
14 changed files
with
152 additions
and
56 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 |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file | ||
|
||
version: 2 | ||
updates: | ||
# github actions | ||
- package-ecosystem: "github-actions" | ||
target-branch: "release-v1.12.0" | ||
directory: "/" | ||
schedule: | ||
# Check for updates to GitHub Actions every week | ||
interval: "weekly" | ||
day: "saturday" | ||
groups: | ||
github-actions: | ||
patterns: | ||
- "*" | ||
|
||
# csi-vxflexos packages | ||
- package-ecosystem: docker | ||
target-branch: "release-v1.12.0" | ||
directories: | ||
- /charts/csi-vxflexos | ||
labels: | ||
- dependencies | ||
schedule: | ||
# check daily | ||
interval: daily | ||
# at 6pm UTC | ||
time: "18:00" | ||
groups: | ||
csi-vxflexos: | ||
patterns: | ||
- "*" | ||
|
||
# csm-authorization packages | ||
- package-ecosystem: docker | ||
target-branch: "release-v1.12.0" | ||
directories: | ||
- /charts/csm-authorization | ||
labels: | ||
- dependencies | ||
schedule: | ||
# check daily | ||
interval: daily | ||
# at 6pm UTC | ||
time: "18:00" | ||
groups: | ||
csm-authorization: | ||
patterns: | ||
- "*" | ||
|
||
# karavi-observability packages | ||
- package-ecosystem: docker | ||
target-branch: "release-v1.12.0" | ||
directories: | ||
- /charts/karavi-observability | ||
labels: | ||
- dependencies | ||
schedule: | ||
# check daily | ||
interval: daily | ||
# at 6pm UTC | ||
time: "18:00" | ||
ignore: | ||
# ignore all updates to otel/opentelemetry-collector | ||
- dependency-name: "otel/opentelemetry-collector" | ||
groups: | ||
karavi-observability: | ||
patterns: | ||
- "*" |
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
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
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
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
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
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
Oops, something went wrong.