Migration from StackState
SUSE Observability Self-hosted
Due to the rename of the product and also due to breaking changes in the topology data format it is not possible to upgrade from StackState to SUSE Observability via a standard Helm upgrade command. This migration guide will help you set up SUSE Observability exactly the same as StackState.
SUSE Observability will be a new installation, without the already existing historical data. Optionally the historical data can be kept accessible until SUSE Observability has built up sufficient history. This guide covers both scenarios.
Depending on the chosen scenario the steps to migrate are different. Running side-by-side is slightly more complicated and will require more resources. The overall steps, applicable to both scenarios are:
Install the latest version of StackState 6.x
Create and download a configuration backup
Install and configure SUSE Observability, scenario specific steps
Update Open Telemetry collectors configuration
Migrate the agent
Throughout this guide all examples assume the following setup, customize the commands to match your exact setup:
Kubernetes cluster is accesses using a context named
observability
StackState is installed in the
stackstate
namespaceSUSE Observability will be installed in the
suse-observability
namespace
Install latest version of StackState 6.x
Only the latest version of StackState 6.x has a configuration backup that contains all configuration in a format that is compatible with SUSE Observability. Please make sure you have the latest version installed by running helm list --namespace stackstate
(use the namespace where StackState is installed):
Helm chart version should be
1.12.0
Application version should be
6.0.0-snapshot.20241023094532-stackstate-6.x-7be52ad
If you don't have that version please upgrade first following the standard upgrade steps.
Create a configuration backup and download the backup
First we create a configuration backup of the StackState configuration, after this you shouldn't make any configuration changes anymore in StackState (they will not be transfered to SUSE Observability). To do this first familiarize yourself with the configuration backup and get the required scripts using the configuration backup docs for StackState 6.x.
From the restore
directory that contains the scripts run these commands:
Set the active context and namespace:
Create a backup (this will require 1Gi of memory and 1 core in the cluster), this may take a while to create a Kubernetes job and start the pod:
In the output of the command you'll see the filename for the backup, something like
sts-backup-20241024-1423.sty
. Copy the filename and use it to download the backup:
You should now have the configuration backup file on your computer.
Install and configure SUSE Observability
This is where the 2 options are different. Follow the instructions for your preferred scenario.
Uninstall StackState
Uninstalling StackState before installing SUSE Observability has 2 advantages, first of all it frees up resources in the cluster, so no temporary extra nodes are needed. Second, it removes the ingress configuration for StackState freeing up the StackState URL to be re-used by SUSE Observability. The only disadvantage is there will be a period from this point until setting up the configuration of SUSE Observability where you won't have monitoring available with StackState nor SUSE Observability.
Uninstalling StackState will also remove your historical data (topology and all other telemetry data too). To uninstall StackState follow the uninstallation docs.
Install SUSE Observability
Install SUSE Observability in a different namespace from StackState to avoid any conflicts. Recommended is to use the same namespace as in the documentation, suse-observability
.
The biggest change for installation is that there is now support for profiles, please select the profile that matches your observed cluster using the requirements and use it to generate the values as documented in the installation guide. Customized Helm values for StackState are compatible with SUSE Observability. However, the values to customize resources must be removed in favor of the new profiles, we'll keep those in a file called custom-values-no-resources.yaml
. You can use the same ingress settings, such that SUSE Observability effectively will replace StackState from a user and agent perspective.
To install SUSE Observability follow the installation guide with a few small modifications to the value generation to do the migration:
use the selected profile that matches your environment and your (updated) custom values.
get the
global.receiverApiKey
from the StackState values and provide it as extra argument to the value generationfor the base URL that must be provided we use the same URL as the current StackState installation:
https://stackstate.demo.stackstate.io
So the value generation step looks like this (using our example again, with the smallest profile):
The Helm install command is the same as in the installation docs with the option to include the custom-values-no-resources.yaml
values file if you have any. Also make sure to include the ingress configuration values, this can be the same one as was used for StackState. In the example we'll use:
The installation will by default generate a new admin password. If you are running with the standard authentication and want to keep the same admin password as before you will need to specify it in the value generation step (or edit it after generating the values).
Restore the configuration backup
Now that SUSE Observability is installed the configuration backup can be restored. The SUSE Observability Helm chart comes with a similar set of backup tools documented here. These are not the same as for StackState 6.x, so make sure to get the scripts from the restore
directory of the SUSE Observability Helm chart for restoring the backup.
From the restore
directory of the SUSE Observability Helm chart run these commands to restore the backup:
Set the active context and namespace:
Upload the backup file previously created, in this case
sts-backup-20241024-1423.sty
(make sure to use the full path if needed):Restore the backup (this will require 1Gi of memory and 1 core in the cluster), this may take a while to create a Kubernetes job and start the pod:
Make sure to answer yes
to confirm removing all data is ok. 4. Scale all deployments back up:
Now SUSE Observability has the exact same setup as StackState and we're ready to start using it. Note that, because the same URL is used, a browser refresh may be required the first time.
Update Open Telemetry collectors configuration
SUSE Observability has a change in its authentication. StackState used a bearer token with the scheme StackState
, but SUSE Observability uses the scheme SUSEObservability
. Update the values for your installed Open Telemetry Collectors to switch from:
to
Use the updated values to upgrade the installed collectors with the helm upgrade
command, see also deploying the Open Telemetry Collector for more details.
Upgrade stackpacks
Navigate to https://your-stackstate-instance/#/stackpacks/
or open the StackPacks overview via the main menu. From there go through all installed stackpacks and hit the "Upgrade" button to get the new SUSE Observability version of the stackpack.
Migrate agents
The final step in migrating to SUSE Observability is to update all your installed agents. This does not have to be done immediately but can be done at a convenient time for each specific cluster, because SUSE Observability is backward compatible with the StackState agent.
Migrating is an easy 2 step process:
Uninstall the StackState agent
Install the SUSE Observability agent
It is important the old agent is uninstalled first, because it is not possible to run both agents at the same time. Uninstalling the agent on a cluster is done like this:
In case you used a different namespace or release name update the command accordingly.
Navigate to https://your-stackstate-instance/#/stackpacks/kubernetes-v2
. Find the cluster you're upgrading the agent on in the list of StackPack instances and copy and run the helm install command for your Kubernetes distribution. If you have custom values you can include them without modification with a --values
argument, the SUSE Observability agent values use the same naming as the StackState agent.
Last updated