forked from Joelx/rasax-deployment-guide
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
73f71c5
commit 8e06640
Showing
1 changed file
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
# debugMode enables / disables the debug mode for Rasa and Rasa X | ||
debugMode: true | ||
nginx: | ||
# enabled: true | ||
# subPath: "/rasax" | ||
#customConfConfigMap: "custom-nginx-conf" | ||
#certificateSecret: "rasa-webservice-ingress-tls" | ||
service: | ||
enabled: true | ||
# connect LoadBalancer directly to VMs' internal IP | ||
# You get this value with: $ hostname -I | ||
externalIPs: [10.16.140.71] | ||
|
||
rasax: | ||
# initialUser is the user which is created upon the initial start of Rasa X | ||
initialUser: | ||
# password for the Rasa X user | ||
password: "aSecureRandomString" | ||
# passwordSalt Rasa X uses to salt the user passwords | ||
passwordSalt: "AnotherSecureRandomString" | ||
# token Rasa X accepts as authentication token from other Rasa services | ||
token: "AnotherSecureRandomString" | ||
# jwtSecret which is used to sign the jwtTokens of the users | ||
jwtSecret: "AnotherSecureRandomString" | ||
# tag refers to the Rasa X image tag | ||
tag: "1.1.4" | ||
# extraEnvs: | ||
# - name: ROOT_URL | ||
#value: "localhost/rasa-x" | ||
# value: "http://10.30.27.11:4000/rasa | ||
rasa: | ||
# token Rasa accepts as authentication token from other Rasa services | ||
token: "AnotherSecureRandomString" | ||
# tag refers to the Rasa image tag | ||
# name: "rasa" | ||
name: "ayoubberd/custom-rasa" | ||
tag: "3.6.16" | ||
additionalChannelCredentials: | ||
rest: | ||
socketio: | ||
user_message_evt: user_uttered | ||
bot_message_evt: bot_uttered | ||
session_persistence: true/false | ||
versions: | ||
rasaProduction: | ||
enabled: true | ||
replicaCount: 1 | ||
rasaWorker: | ||
enabled: true | ||
rabbitmq: | ||
# rabbitmq settings of the subchart | ||
rabbitmq: | ||
# password which is used for the authentication | ||
password: "AnotherSecureRandomString" | ||
auth: | ||
erlangCookie: "AnotherSecureRandomString" | ||
global: | ||
# postgresql: global settings of the postgresql subchart | ||
postgresql: | ||
# postgresqlPassword is the password which is used when the postgresqlUsername equals "postgres" | ||
postgresqlPassword: "AnotherSecureRandomString" | ||
# redis: global settings of the postgresql subchart | ||
redis: | ||
# password to use in case there no external secret was provided | ||
password: "AnotherSecureRandomString" | ||
app: | ||
install: true | ||
name: "ayoubberd/example-action-server" | ||
tag: "latest" | ||
replicaCount: 1 |