the implementation in kubernetes does not work for me the user key as I can find it thanks for your help community
Can you elaborate?
I put it in the values.yml file but it didn’t work for me … I don’t know if I would have to do another step
Can you share me the steps you performed while deployment. There might be something you have missed
Helm Chart Installation - on kubernetes
1.create a namespace in kubernetes called (rasa)
$ kubectl create namespace rasa
- create a values.yml file as the documentation says is this:
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: mifamiliabot # passwordSalt Rasa X uses to salt the user passwords passwordSalt: mifamiliabot # token Rasa X accepts as authentication token from other Rasa services token: mifamiliabot # jwtSecret which is used to sign the jwtTokens of the users jwtSecret: mifamiliabot
rasa: Settings common for all Rasa containers
rasa: # token Rasa accepts as authentication token from other Rasa services token: mifamiliabot
RabbitMQ specific settings
rabbitmq: # rabbitmq settings of the subchart rabbitmq: # password which is used for the authentication password: mifamiliabot
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: mifamiliabot # redis: global settings of the postgresql subchart redis: # password to use in case there no external secret was provided password: mifamiliabot
rasax specific settings
rasax: # Rasa X configuration you did in previous steps # … tag: “0.35.0”
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.2.5-full”
- then run the helm command
Add the repository which contains the Rasa X Helm chart
helm repo add rasa-x https://rasahq.github.io/rasa-x-helm
Deploy Rasa X
helm install
–generate-name
–namespace rasa
–values values.yml
rasa-x/rasa-x
- then i got the service
kubectl --namespace rasa
get service
-l app.kubernetes.io/component=nginx
-o jsonpath="{.items…status…loadBalancer…ingress[0].ip}"
You can then access the deployment on http://:8000
but the credentials to enter rasa do not work for me I get a red sign that the user password is incorrect
thanks for your collaboration I appreciate you very much
So, inside the values.yml file open that in notepad change the password, and keep it simple like rasa123 or something don’t encrypt password since you are just learning it will be needed in production but it’s alright for now