Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1012 Bytes

pre-release-getting-started-script.md

File metadata and controls

34 lines (26 loc) · 1012 Bytes

Check and Update Getting Started Script

Part of https://github.com/stackabletech/issues/issues/TRACKING_ISSUE

Note

During a Stackable release we need to check (and optionally update) the getting-started scripts to ensure they still work after product and operator updates.

# Some of the scripts are in a code/ subdirectory
# pushd docs/modules/superset/examples/getting_started
# pushd docs/modules/superset/examples/getting_started/code
pushd $(fd -td getting_started | grep examples); cd code 2>/dev/null || true

# Make a fresh cluster (~12 seconds)
kind delete cluster && kind create cluster
./getting_started.sh stackablectl

# Make a fresh cluster (~12 seconds)
kind delete cluster && kind create cluster
./getting_started.sh helm

popd