Installing Rasa X 1.1

Hello Team! I was able to install Rasa X in a fresh machine using the Ephemeral installer linked here (GitHub - RasaHQ/REI: Rasa Ephermal Installer)

However, this installs Rasa X 1.0.1 with Rasa Open Source Framework 2.8. I would like to know how to install the latest version of Rasa X, which is 1.1 at this moment, and that provides support for Rasa Open Source Framework 3.1. I’ve followed the guidelines on the Rasa X installation page and created a values.yml file with the following information:

rasax:
  tag: "1.1.0"
eventService:
  tag: "1.1.0"
dbMigrationService:
  tag: "1.1.0"
rasa:
  tag: "3.1-full"
  versions:
    rasaProduction:
      enabled: true
    rasaWorker:
      enabled: true

After doing this, I try to create a new Rasa X instance with the following command: sudo rasactl start --create --values-file values.yml which triggers a timeout and doesn’t fully create the new instance.

Any ideas why? Am I doing something wrong in the values.yml file?

Thanks

After a bit of struggle, I could find the answer. I was not using the full tag for the Rasa Open Source version. This “yml” file works like a charm to upgrade:

rasax:
  tag: "1.1.0"
eventService:
  tag: "1.1.0"
dbMigrationService:
  tag: "1.1.0"
rasa:
  tag: "3.1.0-full"
  versions:
    rasaProduction:
      enabled: true
    rasaWorker:
      enabled: true