forked from argoproj/argo-helm
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from codefresh-io/v1.7.3-cap-CR-19893
argo-events v1.7.3-cap-CR-19893
- Loading branch information
Showing
160 changed files
with
5,114 additions
and
2,736 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,21 @@ | ||
# CLOMonitor metadata file | ||
# This file must be located at the root of the repository | ||
|
||
# Checks exemptions | ||
exemptions: | ||
- check: dependency_update_tool | ||
reason: "Helm deps are not currently scanned. Maintainers are watching developments to dependabot-core #2237" # Justification of this exemption (mandatory, it will be displayed on the UI) | ||
- check: sbom | ||
reason: "Tracking Helm dependencies is not yet a stable practice." | ||
|
||
# TODO: | ||
# License scanning information | ||
# licenseScanning: | ||
# URL with the repository's license scanning results | ||
# | ||
# CLOMonitor can extract license scanning results from FOSSA and Snyk badges | ||
# in the repository README.md file automatically. If your repository uses a | ||
# different scanning solution, this url can be set to pass the corresponding | ||
# check. | ||
# url: https://license-scanning-results.url | ||
|
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,4 @@ | ||
[*.{md,md.gotmpl}] | ||
indent_style = space | ||
indent_size = 4 | ||
trim_trailing_whitespace = false |
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,8 @@ | ||
## Reference: https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: weekly | ||
day: "saturday" |
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 |
---|---|---|
|
@@ -19,21 +19,17 @@ jobs: | |
with: | ||
version: v3.10.1 # Also update in publish.yaml | ||
|
||
- name: Setup Kubectl | ||
uses: azure/setup-kubectl@v3 | ||
id: install | ||
|
||
- name: Set up python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.9 | ||
|
||
- name: Setup Chart Linting | ||
id: lint | ||
uses: helm/[email protected].0 | ||
uses: helm/[email protected].1 | ||
with: | ||
# Note: Also update in scripts/lint.sh | ||
version: v3.7.0 | ||
version: v3.7.1 | ||
|
||
- name: List changed charts | ||
id: list-changed | ||
|
@@ -45,6 +41,7 @@ jobs: | |
echo "::set-output name=changed::true" | ||
echo "::set-output name=changed_charts::$charts" | ||
fi | ||
- name: Run chart-testing (lint) | ||
run: ct lint --debug --config ./.github/configs/ct-lint.yaml --target-branch ${{ github.base_ref }} --lint-conf ./.github/configs/lintconf.yaml | ||
|
||
|
@@ -64,6 +61,15 @@ jobs: | |
if: steps.list-changed.outputs.changed == 'true' | ||
with: | ||
config: .github/configs/kind-config.yaml | ||
|
||
- name: Deploy latest ArgoCD CRDs when testing ArgoCD extensions | ||
if: | | ||
contains(steps.list-changed.outputs.changed_charts, 'argocd-image-updater') || | ||
contains(steps.list-changed.outputs.changed_charts, 'argocd-apps') | ||
run: | | ||
helm repo add dandydeveloper https://dandydeveloper.github.io/charts/ | ||
helm dependency build charts/argo-cd/ | ||
helm template charts/argo-cd/ --set server.extensions.enabled=true -s templates/crds/* | kubectl apply -f - | ||
- name: Skip HPA tests of ArgoCD | ||
if: contains(steps.list-changed.outputs.changed_charts, 'argo-cd') | ||
|
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 |
---|---|---|
|
@@ -31,13 +31,15 @@ jobs: | |
run: | | ||
git config user.name "$GITHUB_ACTOR" | ||
git config user.email "[email protected]" | ||
- name: Package chart | ||
## This is required to consider the old Circle-CI Index and to stay compatible with all the old releases. | ||
- name: Fetch current Chart Index | ||
run: | | ||
rm -rf .cr-release-packages | ||
mkdir .cr-release-packages | ||
helm package charts/argo-events -u -d .cr-release-packages/ | ||
- name: Run chart-releaser | ||
uses: helm/chart-releaser-action@main | ||
uses: helm/chart-releaser-action@v1.4.1 | ||
with: | ||
config: "./.github/configs/cr.yaml" | ||
skip_packaging: true | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
dependencies: | ||
- name: redis-ha | ||
repository: https://dandydeveloper.github.io/charts/ | ||
version: 4.22.2 | ||
digest: sha256:b6dc7774d0cc20a7a889d10e61f3dd653bdacd7836558f4875688b5cb5051d80 | ||
generated: "2022-09-19T12:39:19.736045+02:00" | ||
version: 4.22.3 | ||
digest: sha256:ef6269e4e073dad10c230ccfb069fc013608111c895c5e7568450bb3967cf195 | ||
generated: "2022-11-03T12:04:33.673857+09:00" |
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.