File tree 1 file changed +18
-3
lines changed
1 file changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -513,7 +513,7 @@ cd pulsar-site
513
513
# Run on a branch based on main branch
514
514
cd static/charts
515
515
# need the chart file temporarily to update the index
516
- wget https://downloads .apache.org/pulsar/helm-chart/${VERSION_WITHOUT_RC} /pulsar-${VERSION_WITHOUT_RC} .tgz
516
+ wget https://dist .apache.org/repos/dist/release /pulsar/helm-chart/${VERSION_WITHOUT_RC} /pulsar-${VERSION_WITHOUT_RC} .tgz
517
517
# store the license header temporarily
518
518
head -n 17 index.yaml > license_header.txt
519
519
# update the index
@@ -526,14 +526,29 @@ rm license_header.txt index.yaml.new
526
526
rm pulsar-${VERSION_WITHOUT_RC} .tgz
527
527
```
528
528
529
- Verify that the updated ` index.yaml ` file has the most recent version. Then run:
529
+ Verify that the updated ` index.yaml ` file has the most recent version.
530
+
531
+ Wait until the file is available:
532
+
533
+ ``` shell
534
+ while ! curl -fIL https://downloads.apache.org/pulsar/helm-chart/${VERSION_WITHOUT_RC} /pulsar-${VERSION_WITHOUT_RC} .tgz; do
535
+ echo " Waiting for pulsar-${VERSION_WITHOUT_RC} .tgz to become available..."
536
+ sleep 10
537
+ done
538
+ ```
539
+
540
+ Then run:
530
541
531
542
``` shell
532
543
git add index.yaml
533
544
git commit -m " Adding Pulsar Helm Chart ${VERSION_WITHOUT_RC} to index.yaml"
534
545
```
535
546
536
- Then open a PR.
547
+ Then commit the change.
548
+ ```
549
+ git push origin main
550
+ ```
551
+
537
552
538
553
## Create release notes for the tag in GitHub UI
539
554
You can’t perform that action at this time.
0 commit comments