Skip to content

Commit 54c449b

Browse files
authored
chore: Add getting-started scripts PR template (#408)
1 parent f2f4695 commit 54c449b

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
## Check and Update Getting Started Script
2+
3+
<!--
4+
Make sure to update the link in 'issues/.github/ISSUE_TEMPLATE/pre-release-getting-started-scripts.md'
5+
when you rename this file.
6+
-->
7+
8+
<!--
9+
Replace 'TRACKING_ISSUE' with the applicable release tracking issue number.
10+
-->
11+
12+
Part of <https://github.com/stackabletech/issues/issues/TRACKING_ISSUE>
13+
14+
> [!NOTE]
15+
> During a Stackable release we need to check (and optionally update) the
16+
> getting-started scripts to ensure they still work after product and operator
17+
> updates.
18+
19+
```shell
20+
# Some of the scripts are in a code/ subdirectory
21+
# pushd docs/modules/superset/examples/getting_started
22+
# pushd docs/modules/superset/examples/getting_started/code
23+
pushd $(fd -td getting_started | grep examples); cd code 2>/dev/null || true
24+
25+
# Make a fresh cluster (~12 seconds)
26+
kind delete cluster && kind create cluster
27+
./getting_started.sh stackablectl
28+
29+
# Make a fresh cluster (~12 seconds)
30+
kind delete cluster && kind create cluster
31+
./getting_started.sh helm
32+
33+
popd
34+
```

template/.github/PULL_REQUEST_TEMPLATE/pre-release.md renamed to template/.github/PULL_REQUEST_TEMPLATE/pre-release-rust-deps.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
## Bump Rust Dependencies for Stackable Release XX.(X)X
22

3+
<!--
4+
Make sure to update the link in 'issues/.github/ISSUE_TEMPLATE/pre-release-operator-rust-deps.md'
5+
when you rename this file.
6+
-->
7+
38
<!--
49
Replace 'TRACKING_ISSUE' with the applicable release tracking issue number.
510
-->
611

7-
Part of <https://github.com/stackabletech/issues/TRACKING_ISSUE>
12+
Part of <https://github.com/stackabletech/issues/issues/TRACKING_ISSUE>
813

914
> [!NOTE]
1015
> During a Stackable release we need to update various Rust dependencies before

0 commit comments

Comments
 (0)