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
There are a bunch of demos which directly use Helm charts to install some required parts of the
demo / stack. These charts need updating before we start testing the stable to nightly upgrade.
Most of the charts are located in the stacks/_templated folder. Additional folders are: stacks/observability and stacks/signal-processing. It is recommended to search for releaseName
to find all referenced charts.
Next, search for the latest version of the desired chart, eg grafana/grafana:
# Display the latest versions of a chart
$ helm search repo grafana/grafana --versions | head -5
NAME CHART VERSION APP VERSION
grafana/grafana 8.6.0 11.3.0
grafana/grafana 8.5.12 11.3.0
grafana/grafana 8.5.11 11.3.0
grafana/grafana 8.5.10 11.3.0
Use the applicable chart version displayed to replace the current one in the YAML files. Make sure
to add the app version in the comments. Eg:
version: 3.2.1 # 1.2.3
Take a look at previous PRs for additional guidance, eg. #119.
The text was updated successfully, but these errors were encountered:
Pre-Release Demo Chart Updates
Part of stackabletech/issues#686.
There are a bunch of demos which directly use Helm charts to install some required parts of the
demo / stack. These charts need updating before we start testing the stable to nightly upgrade.
Most of the charts are located in the
stacks/_templated
folder. Additional folders are:stacks/observability
andstacks/signal-processing
. It is recommended to search forreleaseName
to find all referenced charts.
Update Instructions
These instructions help to update the charts:
# List all available repos helm repo list
Make sure, you have the following repos added:
To add any that are missing, run:
Then make sure you have the latest indexes:
Next, search for the latest version of the desired chart, eg
grafana/grafana
:Use the applicable chart version displayed to replace the current one in the YAML files. Make sure
to add the app version in the comments. Eg:
Take a look at previous PRs for additional guidance, eg. #119.
The text was updated successfully, but these errors were encountered: