From e9c96fc42d4bd0d23dfd7b4e72bd33fe30a8c62f Mon Sep 17 00:00:00 2001 From: Techassi Date: Mon, 11 Nov 2024 15:17:41 +0100 Subject: [PATCH 1/3] chore: Remove issue template --- .../pre-release-demos-nightly.md | 122 ------------------ 1 file changed, 122 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/pre-release-demos-nightly.md diff --git a/.github/ISSUE_TEMPLATE/pre-release-demos-nightly.md b/.github/ISSUE_TEMPLATE/pre-release-demos-nightly.md deleted file mode 100644 index c32f0c9..0000000 --- a/.github/ISSUE_TEMPLATE/pre-release-demos-nightly.md +++ /dev/null @@ -1,122 +0,0 @@ ---- -name: Pre-Release Demo Upgrade Testing from Stable to Nightly -about: This template can be used to track the upgrade testing of demos from stable to nightly leading up to the next Stackable release -title: "chore(tracking): Test demos on nightly versions" -labels: ['epic'] -assignees: '' ---- - - - - - -## Pre-Release Demo Testing on Nightly - -Part of - -> [!CAUTION] -> Ensure the [`next` branch is merged to `main`][1], otherwise you will be testing based on old product versions. -> -> This is needed until [stackablectl can deploy demos for a release][2]. -> -> [1]: https://github.com/stackabletech/demos/compare/main...next -> [2]: https://github.com/stackabletech/stackable-cockpit/issues/310 - -This is testing: - -1. The demos documented in nightly (with the updated product versions) still work. -2. That the operators can be upgraded from the current release to the nightly release and do not negatively impact the products. - -> [!NOTE] -> Record any issues or anomalies during the process in a comment on this issue. -> Eg: -> ``` -> :green_circle: **airflow-scheduled-job** -> -> The CRD had been updated and I needed to change the following in the manifest: -> ... -> ``` - -Replace the items in the task lists below with the applicable Pull Requests (if any). - - - -```[tasklist] -### Testing Demos on Nightly -- [ ] [airflow-scheduled-job](https://docs.stackable.tech/home/nightly/demos/airflow-scheduled-job) -- [ ] [data-lakehouse-iceberg-trino-spark](https://docs.stackable.tech/home/nightly/demos/data-lakehouse-iceberg-trino-spark) -- [ ] [end-to-end-security](https://docs.stackable.tech/home/nightly/demos/end-to-end-security) -- [ ] [hbase-hdfs-load-cycling-data](https://docs.stackable.tech/home/nightly/demos/hbase-hdfs-load-cycling-data) -- [ ] [jupyterhub-pyspark-hdfs-anomaly-detection-taxi-data](https://docs.stackable.tech/home/nightly/demos/jupyterhub-pyspark-hdfs-anomaly-detection-taxi-data) -- [ ] [logging](https://docs.stackable.tech/home/nightly/demos/logging) -- [ ] [nifi-kafka-druid-earthquake-data](https://docs.stackable.tech/home/nightly/demos/nifi-kafka-druid-earthquake-data) -- [ ] [nifi-kafka-druid-water-level-data](https://docs.stackable.tech/home/nightly/demos/nifi-kafka-druid-water-level-data) -- [ ] [signal-processing](https://docs.stackable.tech/home/nightly/demos/signal-processing) -- [ ] [spark-k8s-anomaly-detection-taxi-data](https://docs.stackable.tech/home/nightly/demos/spark-k8s-anomaly-detection-taxi-data) -- [ ] [trino-iceberg](https://docs.stackable.tech/home/nightly/demos/trino-iceberg) -- [ ] [trino-taxi-data](https://docs.stackable.tech/home/nightly/demos/trino-taxi-data) -``` - -
-Instructions - -These instructions are for deploying the nightly demo, as well as upgrading the operators and CRDS. - -```shell -# Install demo (stable operators) -stackablectl demo install - -# --- IMPORTANT --- -# Run through the nightly demo instructions (refer to the tasklist below). - -# Get a list of installed operators -stackablectl operator installed --output=plain - -# --- OPTIONAL --- -# Sometimes it is necessary to upgrade Helm charts. Look for other Helm Charts -# which might need updating. - -# First, see which charts are installed. You can ignore the stackable-operator -# charts, or anything that might have been installed outside of this demo. -helm list - -# Next, add the applicable Helm Chart repositories. For example: -helm repo add minio https://charts.min.io/ -helm repo add bitnami https://charts.bitnami.com/bitnami - -# Finally, upgrade the Charts. For example: -helm upgrade minio minio/minio --version x.x.x -helm upgrade postgresql-hive bitnami/postgresql --version x.x.x -# --- OPTIONAL END --- - -# Uninstall operators -stackablectl release uninstall - -# Update CRDs to nightly version (on main) -# Repeat this for every operator used by the demo -kubectl replace -f https://raw.githubusercontent.com/stackabletech/commons-operator/main/deploy/helm/commons-operator/crds/crds.yaml -kubectl replace -f https://raw.githubusercontent.com/stackabletech/...-operator/main/deploy/helm/...-operator/crds/crds.yaml - -# Install nightly version of operators (use the list from the earlier step -# before deleting the operators) -stackablectl operator install commons ... - -# Optionally update the product versions in the CRDs, e.g.: -kubectl patch hbaseclusters/hbase --type='json' -p='[{"op": "replace", "path": "/spec/image/productVersion", "value":"x.x.x"}]' # changed -``` - -
From b8c4e5153eaa8c0f194430611a72ee30feb78295 Mon Sep 17 00:00:00 2001 From: Techassi Date: Mon, 11 Nov 2024 15:21:59 +0100 Subject: [PATCH 2/3] chore: Update issue template link --- .github/ISSUE_TEMPLATE/release.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/release.md b/.github/ISSUE_TEMPLATE/release.md index b9b9d67..0a62d93 100644 --- a/.github/ISSUE_TEMPLATE/release.md +++ b/.github/ISSUE_TEMPLATE/release.md @@ -44,7 +44,7 @@ Replace the items in the task lists below with the applicable Pull Requests / Is ### Pre-release - [ ] Run all of the test suites in Jenkins (with all product versions, not just "nightly") - [ ] [Check and update getting-started script](https://github.com/stackabletech/issues/issues/new?template=pre-release-getting-started-scripts.md) -- [ ] [Test and update demos stable to nightly](https://github.com/stackabletech/issues/issues/new?template=pre-release-demos-nightly.md) +- [ ] [Test and update demos stable to nightly](https://github.com/stackabletech/demos/issues/new?template=pre-release-nightly-testing.md) - [ ] Ensure integration tests are successful on OpenShift - [ ] Check stackable-utils scripts in dry-run mode work ``` From eeaae4a0f5443dcac52b1a98eae7a5d13b95ad90 Mon Sep 17 00:00:00 2001 From: Techassi Date: Tue, 12 Nov 2024 11:46:56 +0100 Subject: [PATCH 3/3] chore: Add demo chart updates item --- .github/ISSUE_TEMPLATE/release.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE/release.md b/.github/ISSUE_TEMPLATE/release.md index 0a62d93..b087a2f 100644 --- a/.github/ISSUE_TEMPLATE/release.md +++ b/.github/ISSUE_TEMPLATE/release.md @@ -44,6 +44,7 @@ Replace the items in the task lists below with the applicable Pull Requests / Is ### Pre-release - [ ] Run all of the test suites in Jenkins (with all product versions, not just "nightly") - [ ] [Check and update getting-started script](https://github.com/stackabletech/issues/issues/new?template=pre-release-getting-started-scripts.md) +- [ ] [Check and update demo charts](https://github.com/stackabletech/demos/issues/new?template=pre-release-chart-updates.md) - [ ] [Test and update demos stable to nightly](https://github.com/stackabletech/demos/issues/new?template=pre-release-nightly-testing.md) - [ ] Ensure integration tests are successful on OpenShift - [ ] Check stackable-utils scripts in dry-run mode work