Skip to content

Commit 1ba5d9f

Browse files
Apply suggestions
Co-authored-by: Nick <[email protected]>
1 parent 6bd8007 commit 1ba5d9f

File tree

1 file changed

+18
-6
lines changed

1 file changed

+18
-6
lines changed

.github/ISSUE_TEMPLATE/pre-release-demos-nightly.md

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
name: Pre-Release Demo Testing on Nightly
3-
about: This template can be used to track the testing of demos on nightly leading up to the next Stackable release
2+
name: Pre-Release Demo Upgrade Testing from Stable to Nightly
3+
about: This template can be used to track the uprade testing of demos from stable to nightly leading up to the next Stackable release
44
title: "chore(tracking): Test demos on nightly versions"
55
labels: ['epic']
66
assignees: ''
@@ -22,22 +22,34 @@ Part of <https://github.com/stackabletech/issues/issues/TRACKING_ISSUE>
2222

2323
For each demo, run the following commands:
2424

25+
> [!NOTE]
26+
> Record any issues or anomalies during the process in a comment on this issue.
27+
> Eg:
28+
> ```
29+
> :green_circle: **airflow-scheduled-job**
30+
>
31+
> The CRD had been updated and I needed to change the following in the manifest:
32+
> ...
33+
> ```
34+
2535
```shell
26-
# Install demo
27-
stackablectl demo <DEMO_NAME>
36+
# Install demo (stable)
37+
stackablectl demo install <DEMO_NAME>
2838
2939
# Uninstall operators
3040
stackablectl release uninstall <CURRENT_RELEASE>
3141
3242
# Update CRDs to nightly version (on main)
3343
# Repeat this for every operator used by the demo
3444
kubectl replace -f https://raw.githubusercontent.com/stackabletech/commons-operator/main/deploy/helm/commons-operator/crds/crds.yaml
45+
kubectl replace -f https://raw.githubusercontent.com/stackabletech/...-operator/main/deploy/helm/...-operator/crds/crds.yaml
3546
36-
# Install dev version of operators
47+
# Install nightly version of operators
3748
stackablectl operator install commons ...
3849
3950
# Optionally update the product versions in the CRDs, e.g.:
40-
kubectl edit hbaseclusters/hbase
51+
kubectl patch hbaseclusters/hbase --type='json' -p='[{"op": "replace", "path": "/spec/image/productVersion", "value":"x.x.x"}]' # changed
52+
4153
```
4254
4355
<!--

0 commit comments

Comments
 (0)