You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These instructions are for deploying and completing the stable demo, and then
upgading operators, CRDs, and products to the nightly versions well as upgrading
the operators and CRDS.
# Install demo (stable operators) for the stable release (YY.M).# Until https://github.com/stackabletech/stackable-cockpit/issues/310 is merged,# this will need to be done by pointing stackablectl to local files checked out# from the stable release branch.
stackablectl demo install <DEMO_NAME># --- IMPORTANT ---# Run through the stable demo instructions (refer to the tasklist above).# 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 to what is defined in `main`.# 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 for the stable release (24.11)
stackablectl release uninstall 24.11
# Update CRDs to nightly version (on main)# Repeat this for every operator used by the demo (use the list from the earlier step before deleting the operators)
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=0.0.0-dev ...
# Optionally update the product versions in the CRDs (to the latest non-experimental version for the new release), e.g.:
kubectl patch hbaseclusters/hbase --type='json' -p='[{"op": "replace", "path": "/spec/image/productVersion", "value":"x.x.x"}]'# changed
Nightly from Scratch Testing Instructions
These instructions are for deploying and completing the nightly demo from scratch.
# Install demo (nightly operators) for the nightly release.
stackablectl demo install <DEMO_NAME> --release dev
# --- IMPORTANT ---# Run through the nightly demo instructions (refer to the tasklist above).
The text was updated successfully, but these errors were encountered:
Pre-Release Demo Testing on Nightly
Part of stackabletech/issues#686
This is testing:
not negatively impact the products.
Note
Record any issues or anomalies during the process in a comment on this issue.
Eg:
Replace the items in the task lists below with the applicable Pull Requests (if any).
Testing Demos on Nightly
Stable to Nightly Upgrade Testing Instructions
These instructions are for deploying and completing the stable demo, and then
upgading operators, CRDs, and products to the nightly versions well as upgrading
the operators and CRDS.
Tip
Be sure to select the stable docs version on https://docs.stackable.tech/home/stable/demos/.
Nightly from Scratch Testing Instructions
These instructions are for deploying and completing the nightly demo from scratch.
Tip
Be sure to select the nightly docs version on https://docs.stackable.tech/home/nightly/demos/.
The text was updated successfully, but these errors were encountered: