Unable to pass cors "*" as args to helm install

Hi @ChangappaMA ,

I used these values for myself and then it worked for me -

# rasa: Settings common for all Rasa containers
rasa:
    # tag refers to the Rasa image tag
    tag: "2.7.1-full"
    # override the default arguments to run in the container
    args: []
    # add extra arguments to the command in the container
    extraArgs: ['--enable-api', '--cors', "*"]
    # additionalChannelCredentials which should be used by Rasa to connect to various
    # input channels
    additionalChannelCredentials:
        socketio:
            user_message_evt: user_uttered
            bot_message_evt: bot_uttered
            session_persistence: true
1 Like