-
Notifications
You must be signed in to change notification settings - Fork 29
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 #582 from rstudio/add-ci-lint-and-ci-install-dirs
Move ci directory outside of the chart directory structure, and break it into two. One set of values for linting, one for installation testing
- Loading branch information
Showing
63 changed files
with
231 additions
and
96 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 |
---|---|---|
|
@@ -27,6 +27,14 @@ jobs: | |
- name: Set up chart-testing | ||
uses: helm/[email protected] | ||
|
||
- name: Symlink ci-lint -> ci | ||
run: | | ||
for dir in ci/*/lint; do | ||
dir=${dir#ci/} | ||
dir=${dir%/lint} | ||
ln -s ../../ci/${dir}/lint charts/${dir}/ci | ||
done | ||
- name: Run chart-testing (list-changed) | ||
id: list-changed | ||
run: | | ||
|
@@ -71,82 +79,90 @@ jobs: | |
if: steps.ct-lint.outcome == 'failure' || steps.ct-lint-all.outcome == 'failure' | ||
run: exit 1 | ||
|
||
# install: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Checkout | ||
# uses: actions/checkout@v4 | ||
# with: | ||
# fetch-depth: 0 | ||
# | ||
# - name: Set up Helm | ||
# uses: azure/[email protected] | ||
# with: | ||
# version: v3.6.3 | ||
# | ||
# - uses: actions/setup-python@v5 | ||
# with: | ||
# python-version: "3.10" | ||
# | ||
# - name: Set up chart-testing | ||
# uses: helm/[email protected] | ||
# | ||
# - name: Run chart-testing (list-changed) | ||
# id: list-changed | ||
# run: | | ||
# changed=$(ct list-changed --target-branch main --chart-dirs charts --chart-dirs other-charts) | ||
# if [[ -n "$changed" ]]; then | ||
# echo 'changed=true' >> $GITHUB_OUTPUT | ||
# fi | ||
# | ||
# - name: Create kind cluster | ||
# uses: helm/[email protected] | ||
# if: ${{ steps.list-changed.outputs.changed == 'true' || github.ref == 'refs/heads/main' }} | ||
# | ||
# - name: Install SealedSecrets Helm Chart | ||
# if: ${{ steps.list-changed.outputs.changed == 'true' || github.ref == 'refs/heads/main' }} | ||
# run: | | ||
# helm repo add sealed-secrets https://bitnami-labs.github.io/sealed-secrets | ||
# helm install sealed-secrets sealed-secrets/sealed-secrets | ||
# | ||
# # no allow-failure until https://github.com/actions/toolkit/issues/399 | ||
# - name: Run chart-testing (install changed) | ||
# id: ct-install | ||
# if: ${{ github.ref != 'refs/heads/main' && steps.list-changed.outputs.changed == 'true' }} | ||
# run: ct install --target-branch main --chart-dirs charts --chart-dirs other-charts | ||
# continue-on-error: true | ||
# | ||
# # no allow-failure until https://github.com/actions/toolkit/issues/399 | ||
# - name: Run chart-testing (install all) | ||
# id: ct-install-all | ||
# if: ${{ github.ref == 'refs/heads/main' }} | ||
# run: ct install --target-branch main --all --chart-dirs charts --chart-dirs other-charts | ||
# continue-on-error: true | ||
# | ||
# - name: Notify Slack of chart install failure | ||
# if: steps.ct-install.outcome == 'failure' || steps.ct-install-all.outcome == 'failure' | ||
# uses: slackapi/[email protected] | ||
# with: | ||
# payload-delimiter: "_" | ||
# payload: | | ||
# { | ||
# "blocks": [ | ||
# { | ||
# "type": "section", | ||
# "text": { | ||
# "type": "mrkdwn", | ||
# "text": "Failure during test installation of ${{ steps.ct-install.outcome == 'failure' && 'changed' || 'all' }} charts. ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" | ||
# } | ||
# } | ||
# ] | ||
# } | ||
# env: | ||
# SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
# SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK | ||
# | ||
# - name: Fail the workflow if failed installs | ||
# if: steps.ct-install.outcome == 'failure' || steps.ct-install-all.outcome == 'failure' | ||
# run: exit 1 | ||
install: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Helm | ||
uses: azure/[email protected] | ||
with: | ||
version: v3.6.3 | ||
|
||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Set up chart-testing | ||
uses: helm/[email protected] | ||
|
||
- name: Symlink ci-install -> ci | ||
run: | | ||
for dir in ci/*/install; do | ||
dir=${dir#ci/} | ||
dir=${dir%/install} | ||
ln -s ../../ci/${dir}/install charts/${dir}/ci | ||
done | ||
- name: Run chart-testing (list-changed) | ||
id: list-changed | ||
run: | | ||
changed=$(ct list-changed --target-branch main --chart-dirs charts --chart-dirs other-charts) | ||
if [[ -n "$changed" ]]; then | ||
echo 'changed=true' >> $GITHUB_OUTPUT | ||
fi | ||
- name: Create kind cluster | ||
uses: helm/[email protected] | ||
if: ${{ steps.list-changed.outputs.changed == 'true' || github.ref == 'refs/heads/main' }} | ||
|
||
- name: Install SealedSecrets Helm Chart | ||
if: ${{ steps.list-changed.outputs.changed == 'true' || github.ref == 'refs/heads/main' }} | ||
run: | | ||
helm repo add sealed-secrets https://bitnami-labs.github.io/sealed-secrets | ||
helm install sealed-secrets sealed-secrets/sealed-secrets | ||
# no allow-failure until https://github.com/actions/toolkit/issues/399 | ||
- name: Run chart-testing (install changed) | ||
id: ct-install | ||
if: ${{ github.ref != 'refs/heads/main' && steps.list-changed.outputs.changed == 'true' }} | ||
run: ct install --target-branch main --chart-dirs charts --chart-dirs other-charts | ||
continue-on-error: true | ||
|
||
# no allow-failure until https://github.com/actions/toolkit/issues/399 | ||
- name: Run chart-testing (install all) | ||
id: ct-install-all | ||
if: ${{ github.ref == 'refs/heads/main' }} | ||
run: ct install --target-branch main --all --chart-dirs charts --chart-dirs other-charts | ||
continue-on-error: true | ||
|
||
- name: Notify Slack of chart install failure | ||
if: steps.ct-install.outcome == 'failure' || steps.ct-install-all.outcome == 'failure' | ||
uses: slackapi/[email protected] | ||
with: | ||
payload-delimiter: "_" | ||
payload: | | ||
{ | ||
"blocks": [ | ||
{ | ||
"type": "section", | ||
"text": { | ||
"type": "mrkdwn", | ||
"text": "Failure during test installation of ${{ steps.ct-install.outcome == 'failure' && 'changed' || 'all' }} charts. ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" | ||
} | ||
} | ||
] | ||
} | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK | ||
|
||
- name: Fail the workflow if failed installs | ||
if: steps.ct-install.outcome == 'failure' || steps.ct-install-all.outcome == 'failure' | ||
run: exit 1 | ||
|
||
check-versions-connect: | ||
runs-on: ubuntu-latest | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
config: | ||
LocalStorage: | ||
Enabled: true | ||
Location: "/chronicle-data" | ||
RetentionPeriod: "30d" |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,2 @@ | ||
readinessProbe: | ||
enabled: false |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,2 @@ | ||
readinessProbe: | ||
enabled: false |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,2 @@ | ||
readinessProbe: | ||
enabled: false |
File renamed without changes.
File renamed without changes.
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.