Skip to content

Commit afdbaf5

Browse files
authored
Sleep between calls of K8s compatibility script (#919)
1 parent e944b3e commit afdbaf5

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/generate-kubernetes-compatibility.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,26 @@ jobs:
4040
token: ${{ env.ACTIONS_BOT_TOKEN }}
4141
- name: Install dependencies
4242
run: cd scripts/generate-k8s-compatibility-matrix && npm install
43-
- name: Run script to generate compatibility matrix
43+
- name: Run script to generate compatibility matrix for Redpanda
4444
run: |
4545
node scripts/generate-k8s-compatibility-matrix/generate-rp-matrix.js \
4646
${{ github.event.inputs.min_rp_version }} redpanda \
4747
> ./redpanda-docs/modules/upgrade/partials/k-redpanda-compatibility-matrix.adoc
48+
sleep 50
49+
50+
- name: Run script to generate compatibility matrix for Console
51+
run: |
4852
node scripts/generate-k8s-compatibility-matrix/generate-rp-matrix.js \
4953
${{ github.event.inputs.min_rp_version }} console \
5054
> ./redpanda-docs/modules/upgrade/partials/k-redpanda-console-chart-dependencies.adoc
55+
sleep 50
56+
57+
- name: Run script to generate compatibility matrix for Operator
58+
run: |
5159
node scripts/generate-k8s-compatibility-matrix/generate-rp-matrix.js \
5260
${{ github.event.inputs.min_rp_version }} operator \
5361
> ./redpanda-docs/modules/upgrade/partials/k-operator-compatibility-matrix.adoc
62+
5463
# Check for any changes made in the documentation.
5564
- name: Check if changes were made
5665
id: check_changes

0 commit comments

Comments
 (0)