Skip to content

Commit

Permalink
Merge pull request RasaHQ#11728 from RasaHQ/ATO-487-rasa-pro-helm-cha…
Browse files Browse the repository at this point in the history
…rt-update

Update helm chart docs to reference latest Rasa Plus release
  • Loading branch information
m-vdb authored Nov 2, 2022
2 parents 3683c9e + 91d0755 commit 276feef
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions docs/docs/deploy/deploy-rasa-plus.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ sidebar_label: "Deploy Rasa Plus"
title: "Deploy Rasa Plus in Production"
description: Deploy Rasa Plus
---
<!-- this file is version specific, do not use `@site/...` syntax -->
import variables from '../variables.json';
import RasaProLabel from '@theme/RasaProLabel';
import RasaProBanner from '@theme/RasaProBanner';

Expand Down Expand Up @@ -78,38 +80,36 @@ Step c: Remove the file on disk, for example:

For the [Rasa Helm Chart](https://github.com/RasaHQ/helm-charts/tree/main/charts/rasa), update as follows:

```yaml
registry: europe-west3-docker.pkg.dev/rasa-releases/rasa-plus/rasa-plus
<pre><code parentName="pre" className="language-yaml">
{`registry: europe-west3-docker.pkg.dev/rasa-releases/rasa-plus/rasa-plus
command:
- rasa
image:
name: rasa-plus
tag: 0.1.1
tag: ${variables.release}
pullSecrets:
- name: rasa-plus-pull-secret
extraEnv:
- name: RASA_PRO_LICENSE
valueFrom:
secretKeyRef:
name: rasapro-license
key: licensekey
```
key: licensekey`}</code></pre>

For the [Rasa X/Enterprise Helm Chart](https://github.com/RasaHQ/rasa-x-helm), update as follows:

```yaml
images:
<pre><code parentName="pre" className="language-yaml">
{`images:
imagePullSecrets:
- name: rasa-plus-pull-secret
rasa:
command:
- rasa
name: europe-west3-docker.pkg.dev/rasa-releases/rasa-plus/rasa-plus
tag: 0.1.1
tag: ${variables.release}
extraEnv:
- name: RASA_PRO_LICENSE
valueFrom:
secretKeyRef:
name: rasapro-license
key: licensekey
```
key: licensekey`}</code></pre>

0 comments on commit 276feef

Please sign in to comment.