I have installed Rasa X 0.39.0 (CE) using Helm Chart on Centos 8.
The installation was successful and I can access the RASA X login page.
However it seems the initial user password that I set in the values.yml does not accepted by the login page.
Below are my values.yml file
# rasax specific settings
rasax:
# initialUser is the user which is created upon the initial start of Rasa X
initialUser:
# password for the Rasa X user
password: "myinitial"
# passwordSalt Rasa X uses to salt the user passwords
passwordSalt: "mysalt"
# token Rasa X accepts as authentication token from other Rasa services
token: "mytoken"
# jwtSecret which is used to sign the jwtTokens of the users
jwtSecret: "myjwt"
# Rasa X configuration you did in previous steps
# ...
tag: "0.39.0"
# rasa: Settings common for all Rasa containers
rasa:
# token Rasa accepts as authentication token from other Rasa services
token: "myrasatoken"
# Rasa Open Source configuration you did in previous steps
# ...
# tag refers to the Rasa image tag
tag: "2.5.0-full"
# RabbitMQ specific settings
rabbitmq:
# rabbitmq settings of the subchart
rabbitmq:
# password which is used for the authentication
password: "myrabbit"
# global settings of the used subcharts
global:
# postgresql: global settings of the postgresql subchart
postgresql:
# postgresqlPassword is the password which is used when the postgresqlUsername equals "postgres"
postgresqlPassword: "mypostgres"
# redis: global settings of the redis subchart
redis:
# password to use in case there no external secret was provided
password: "myredis"
I’ve tried to reload the change made in values.yml to my Rasa X using ‘helm upgrade’ command but got the message below :
Hi, finally I able to solve this by uninstall my problem deployment ( helm namespace )
and in my values.yml I’ve skipped the Helm Chart Step 4 Specify Rasa X and Rasa Open Source Versions. Do not know what will impact by not mentioning the below values in my rasa-x deployment :
rasax specific settings
rasax:
# Rasa X configuration you did in previous steps
# …
tag: “0.40.1”
rasa: Settings common for all Rasa containers
rasa:
# Rasa Open Source configuration you did in previous steps
# …
# tag refers to the Rasa image tag
tag: “2.6.2-full”
cmd to delete helm namespace :
helm uninstall --namespace <namespace_name>