For the complete documentation index, see llms.txt. This page is also available as Markdown.

Config Changes to Add OpsMx Assistant (NLI) in SSD

Follow the steps below and do the given configuration changes to add OpsMx-Assistant(NLI) in SSD.

  • Add the opsmx-assistant as a service in the namespace that NLI is deployed.

  • Update the configuration to support the OpsMx Assistant.

  • Once the ssd-ui is loaded, the OpsMx Assistant button will appear at the top-right corner of the homepage, enabled and ready to use.

Configuration Changes:

  1. Add these lines in the ssd-ui-nginxconf before /ui

# Opsmx-assistant — MUST be before /ui
        location ^~ /ui/assistant/ {
          proxy_pass http://opsmx-assistant:8080/;
          proxy_http_version 1.1;
          proxy_set_header Host $host;
          proxy_set_header X-Real-IP $remote_addr;
          proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
          add_header Access-Control-Allow-Origin $http_origin always;
          add_header Access-Control-Allow-Credentials true always;
          add_header Access-Control-Allow-Methods 'GET, OPTIONS' always;
          add_header Access-Control-Allow-Headers 'Content-Type' always;
        }
  1. Add these lines in app-config

Last updated