Skip to content

Commit

Permalink
Sleep between calls of K8s compatibility script (#919)
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeSCahill authored Dec 13, 2024
1 parent e944b3e commit afdbaf5
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/generate-kubernetes-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,26 @@ jobs:
token: ${{ env.ACTIONS_BOT_TOKEN }}
- name: Install dependencies
run: cd scripts/generate-k8s-compatibility-matrix && npm install
- name: Run script to generate compatibility matrix
- name: Run script to generate compatibility matrix for Redpanda
run: |
node scripts/generate-k8s-compatibility-matrix/generate-rp-matrix.js \
${{ github.event.inputs.min_rp_version }} redpanda \
> ./redpanda-docs/modules/upgrade/partials/k-redpanda-compatibility-matrix.adoc
sleep 50
- name: Run script to generate compatibility matrix for Console
run: |
node scripts/generate-k8s-compatibility-matrix/generate-rp-matrix.js \
${{ github.event.inputs.min_rp_version }} console \
> ./redpanda-docs/modules/upgrade/partials/k-redpanda-console-chart-dependencies.adoc
sleep 50
- name: Run script to generate compatibility matrix for Operator
run: |
node scripts/generate-k8s-compatibility-matrix/generate-rp-matrix.js \
${{ github.event.inputs.min_rp_version }} operator \
> ./redpanda-docs/modules/upgrade/partials/k-operator-compatibility-matrix.adoc
# Check for any changes made in the documentation.
- name: Check if changes were made
id: check_changes
Expand Down

0 comments on commit afdbaf5

Please sign in to comment.