All - Activity - tczekajlo - Rasa Community Forum
Rasa deployment - quick install/helm - Upload model stopped working
Hi, can you provide more info?
How did you upgrade it to 2.8.2? Commands that you execute would be useful. Do you see any errors in the logs for the rasa-production pod or rasa-x pod? Do you use debug mode?
Enable https with Custom certificate
Hi, You can do it by using an ingress resource, e.g.
values.yaml
ingress:
tls:
- secretName: rasa-x-tls
hosts:
- rasa-x.example.com
Notice that you have to create a secret with TLS certificates, see: Ingress | Kubernetes
HTTPS configuration in values.yaml for nginx ingress
Hi, It’s not fully clear to me what you’re using here. Are you using ingress-nginx as an ingress controller? If you want to redirect HTTP to HTTPS and use ingress resources, you should use annotations/configuration depending on your ingress controller that is used.
Building custom image on 2.3.4
I see where is the issue, can you update docker to the latest version? (or update only buildx)
Download the latest binary release from Release v0.12.0 · docker/buildx · GitHub and copy it to ~/.docker/cli-plugins folder with name docker-buildx.
Change the permission to execute:
chmod a+x ~/.do…
How to expose Nginx Service RasaX on Minikube?
In the minikube documentation, you can find how to expose/access services that use a load balancer - Accessing apps | minikube
minikube tunnel runs as a process, creating a network route on the host to the service CIDR of the cluster using the cluster’s IP address as a gateway. The tunnel command …
GitHub Custom Action failure: unexpected token `|', conditional binary operator expected
I am working on a server that is not yet available on the Internet yet. I don’t know how I haven’t thought of that… What are those steps I should add in the workflow by then?
It up to you how you wanna deal with it, e.g. you can use this action Kubernetes Set Context · Actions · GitHub Marketplace
RASA Custom Action Server is not working
Can you show your Dockerfile? Additionally, If you execute pip list within a container that you use along with your custom Docker image, can you see the typing_extensions on a list?
Rasa X server deployment keeps loading
Do you have SELinux enabled (or do you use any other additional security policies) on CentOS7? I’d check dmesg and SELinux logs if there is any additional information.
If yes, you can check pods with CrashLoopBackOff status in order to get more details on what’s wrong with your deployment. Commands that you can use, e.g.:
kubectl describe pod <pod_name>
kubectl logs <pod_name>
Can't install Rasa using Docker
Hi, The rasa container runs as the 1001 user, that’s why you can see an error related to permissions. You can run the container with the same id as the host use id by adding the -u flag to the run command, e.g.
sudo docker run -u $(id -u) -v $(pwd):/app rasa/rasa:2.2.4-full init --no-prompt
Running Rasa development Version from RasaHQ
Hi, If you follow the README then probably you use poetry that uses a virtual environment. Try to run the following command:
$ poetry run rasa
How to make rasa-x accessible through a subpath (e.g /rasa) using our nginx ingress controller?
My point here was that it’s the example that you can take and try to modify in order to achieve what you want. For example, you can try to use nginx.ingress.kubernetes.io/rewrite-target: /$2 annotation and a path: /rasa(/|$)(.*).
Trouble With Rasa X 0.34 and Custom Action Server
It looks like you don’t need to override volume for the app service in the docker-compose. You mentioned that you build your Docker image, your image contains everything that you need then. Try something like this:
docker-compose.override.yml
services:
app:
restart: always
image: 'my_u…'