## When to Deploy Your Assistant

The best time to deploy your assistant and make it available to test users is once it can handle the most important happy paths or is what we call a [minimum viable assistant](https://legacy-docs-oss.rasa.com/docs/rasa/2.x/glossary).

The recommended deployment methods described below make it easy to share your assistant with test users via the [share your assistant feature in Rasa X](/content/docs/rasa-x/user-guide/share-assistant#share-your-bot/index.html). Then, when you're ready to make your assistant available via one or more [Messaging and Voice Channels](https://legacy-docs-oss.rasa.com/docs/rasa/2.x/messaging-and-voice-channels), you can easily add them to your existing deployment set up.

## Recommended Deployment Methods

The recommended way to deploy an assistant is using either the Server Quick-Install or Helm Chart options we support. Both deploy Rasa X and your assistant. They are the easiest ways to deploy your assistant, allow you to use Rasa X to view conversations and turn them into training data, and are production-ready. For more details on deployment methods see the [Rasa X Installation Guide](/content/docs/rasa-x/installation-and-setup/installation-guide/index.html).

### Server Quick-Install

The Server Quick-Install script is the easiest way to deploy Rasa X and your assistant. It installs a Kubernetes cluster on your machine with sensible defaults, getting you up and running in one command.

- Default: Make sure you meet the [OS Requirements](/content/docs/rasa-x/1.0.x/installation-and-setup/install/quick-install-script/#hardware-os-requirements/index.html), then run:
    
    ```
    curl -s get-rasa-x.rasa.com | sudo bash
    ```

- Custom: See [Customizing the Script](/content/docs/rasa-x/1.0.x/installation-and-setup/customize/#server-quick-install/index.html) and the [Server Quick-Install docs](/content/docs/rasa-x/1.0.x/installation-and-setup/install/quick-install-script/index.html) docs.

### Helm Chart

For assistants that will receive a lot of user traffic, setting up a Kubernetes or Openshift deployment via our Helm charts is the best option. This provides a scalable architecture that is also straightforward to deploy. However, you can also customize the Helm charts if you have specific requirements.

- Default: Read the [Helm Chart Installation](/content/docs/rasa-x/installation-and-setup/install/helm-chart-installation/installation/index.html) docs.

- Custom: Read the above, as well as the [Advanced Configuration](/content/docs/rasa-x/installation-and-setup/install/helm-chart-installation/installation#using-helm-to-generate-object-configurations/index.html) documentation, and customize the [open source Helm charts](https://github.com/RasaHQ/rasa-x-helm) to your needs.

## Alternative Deployment Methods

### Docker Compose

You can also run Rasa X in a Docker Compose setup, without the cluster environment. We have an install script for doing so, as well as manual instructions for any custom setups.

- Default: Read the [Docker Compose Install Script](/content/docs/rasa-x/1.0.x/installation-and-setup/install/docker-compose/#docker-compose-install-script/index.html) docs or watch the [Masterclass Video](https://www.youtube.com/watch?v=IUYdwy8HPVc) on deploying Rasa X.

- Custom: Read the [Docker Compose Manual Install](/content/docs/rasa-x/1.0.x/installation-and-setup/install/docker-compose/#docker-compose-manual-install/index.html) documentation for full customization options.

### Rasa Open Source Only Deployment

It is also possible to deploy a Rasa assistant without Rasa X using Docker Compose. To do so, you can build your Rasa Assistant locally or in Docker. Then you can deploy your model in Docker Compose.

- Building a Rasa Assistant Locally
- [Building a Rasa Assistant in Docker](https://legacy-docs-oss.rasa.com/docs/rasa/2.x/docker/building-in-docker)
- [Deploying a Rasa Open Source Assistant in Docker Compose](https://legacy-docs-oss.rasa.com/docs/rasa/2.x/docker/deploying-in-docker-compose)

## Deploying Your Action Server

### Building an Action Server Image

If you build an image that includes your action code and store it in a container registry, you can run it as part of your deployment, without having to move code between servers. In addition, you can add any additional dependencies of systems or Python libraries that are part of your action code but not included in the base `rasa/rasa-sdk` image.

#### Automating your Action Server Image Builds

In addition to manually creating a new Action Server image, you can use the [Rasa Action Server GitHub Action](https://github.com/RasaHQ/action-server-gha) to automate image builds. If GitHub Actions are new to you, it might be helpful to get familiar with [GitHub Actions Documentation](https://docs.github.com/en/actions).

The following steps assume that you already created a GitHub repository and you have a DockerHub account.

1. Add GitHub Secrets with your DockerHub login name and password. You can find details on how to create encrypted secrets for a repository in the [Github docs](https://docs.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets#creating-encrypted-secrets-for-a-repository).

The example uses the following secrets:
   - `DOCKER_HUB_LOGIN` – a login name for DockerHub
   - `DOCKER_HUB_PASSWORD` – a password for DockerHub

2. In your GitHub repository create a file [`.github/workflows/action_server.yml`](https://github.com/RasaHQ/action-server-gha/blob/master/examples/action_server.yml).

The GitHub Action workflow below builds a new docker image every time files inside the `actions/` directory have changed and the changes are pushed into the `main` branch.

```yaml
on:
  push:
    branches:
      - main
    paths:
      - 'actions/**/*'

jobs:
  build_and_deploy:
    runs-on: ubuntu-latest
    name: Build Action Server image and upgrade Rasa X deployment
    steps:
      - name: Checkout repository
        uses: actions/checkout@v2
      - id: action_server
        name: Build an action server with a custom actions
        uses: RasaHQ/action-server-gha@master
        with:
          docker_image_name: 'account_username/repository_name'
          docker_registry_login: ${{ secrets.DOCKER_HUB_LOGIN }}
          docker_registry_password: ${{ secrets.DOCKER_HUB_PASSWORD }}
          docker_image_tag: ${{ github.sha }}
```

3. Push your changes to the `main` branch. After changes are pushed, the workflow will build and push a new image into the DockerHub registry.
4. Now, you can use your new brand docker image.
5. You can also extend your workflow, so that you do not have to manually update your Rasa X deployment.

```yaml
on:
  push:
    branches:
      - main

jobs:
  build_and_deploy:
    runs-on: ubuntu-latest
    name: Build Action Server image and upgrade Rasa X deployment
    steps:
      [..]
      - name: "Upgrade a Rasa X deployment"
        run: |
          helm upgrade --install --reuse-values \
          --set app.name=${{ steps.action_server.outputs.docker_image_name }} \
          --set app.tag=${{ steps.action_server.outputs.docker_image_tag }} rasa rasa-x/rasa-x
```

As you can see it's possible to use output variables from the `action_server` step. The `steps.action_server.outputs.docker_image_name` variable returns a docker image name and the `steps.action_server.outputs.docker_image_tag` variable returns a docker image tag.

More examples on how to use and customize [Rasa GitHub Actions](https://github.com/RasaHQ/action-server-gha) you can find in the [Rasa GitHub Actions](https://github.com/RasaHQ/action-server-gha) repository.

#### Manually Building an Action Server

To create your image:

1. Make sure your actions are defined in `actions/actions.py`. The `rasa/rasa-sdk` image will automatically look for the actions in this file.
2. If your actions have any extra dependencies, create a list of them in a file, `actions/requirements-actions.txt`.
3. Create a file named `Dockerfile` in your project directory, in which you'll extend the official SDK image, copy over your code, and add any custom dependencies (if necessary). For example:

```dockerfile
# Extend the official Rasa SDK image
FROM rasa/rasa-sdk:2.8.11

# Use subdirectory as working directory
WORKDIR /app

# Copy any additional custom requirements, if necessary (uncomment next line)
# COPY actions/requirements-actions.txt ./

# Change back to root user to install dependencies
USER root

# Install extra requirements for actions code, if necessary (uncomment next line)
# RUN pip install -r requirements-actions.txt

# Copy actions folder to working directory
COPY ./actions /app/actions

# By best practices, don't run the code with root user
USER 1001
```

You can then build the image via the following command:

```bash
docker build . -t <account_username>/<repository_name>:<custom_image_tag>
```

The `<custom_image_tag>` should reference how this image will be different from others. For example, you could version or date your tags, as well as create different tags that have different code for production and development servers. You should create a new tag any time you update your code and want to re-deploy it.

### Using your Custom Action Server Image

If you're building this image to make it available from another server, for example a Rasa X or Rasa Enterprise deployment, you should push the image to a cloud repository.

This documentation assumes you are pushing your images to [DockerHub](https://hub.docker.com/). DockerHub will let you host multiple public repositories and one private repository for free. Be sure to first [create an account](https://hub.docker.com/signup/) and [create a repository](https://hub.docker.com/signup/) to store your images. You could also push images to a different Docker registry, such as [Google Container Registry](https://cloud.google.com/container-registry), [Amazon Elastic Container Registry](https://aws.amazon.com/ecr/), or [Azure Container Registry](https://azure.microsoft.com/en-us/services/container-registry/).

You can push the image to DockerHub via:

```bash
docker login --username <account_username> --password <account_password>
docker push <account_username>/<repository_name>:<custom_image_tag>
```

To authenticate and push images to a different container registry, please refer to the documentation of your chosen container registry.

How you reference the custom action image will depend on your deployment. Pick the relevant documentation for your deployment:

- [Server Quick-Install](/content/docs/rasa-x/1.0.x/installation-and-setup/customize/#quick-install-script-customizing/index.html)
- [Helm Chart](/content/docs/rasa-x/installation-and-setup/configure/add-action-server/index.html)
- [Docker Compose](/content/docs/rasa-x/1.0.x/installation-and-setup/customize/#connecting-a-custom-action-server/index.html)
- [Rasa Open Source Only](https://legacy-docs-oss.rasa.com/docs/rasa/2.x/docker/deploying-in-docker-compose#using-docker-compose-to-run-multiple-services)
