# Rasa X Deployment Changes

Rasa X version 0.33.0 or higher is only compatible with Rasa Open Source 2.x. If you are on Rasa Open Source 1.x, please check the [compatibility matrix](https://legacy-docs-rasa-x.rasa.com/docs/rasa-x/changelog/compatibility-matrix) for a compatible version.

To change values for an installed Rasa X deployment, follow the steps below.

## Steps to Change Values

- helm
- rasactl

1. Set the relevant values in your `values.yml`.

2. Get the release name which Helm used during the installation. If you are unsure which release name was used, use the following command to find it:
   
   ```
   helm list --namespace <your namespace>
   ```

3. Upgrade the deployment

```
   helm repo update
   
   helm upgrade \
       --values values.yml \
       --namespace <your namespace> \
       --reuse-values \
       <your release name> rasa-x/rasa-x
   ```
