Skip to content

Connect a SharePoint System


For connecting SharePoint system as backend system for SEAL Operator, execute the following steps:


Activate the Connector and Specify the Keys for the Connection

In SEAL Operator, activate the connector and specify the keys for the connection:

  1. Export the complete configuration of SEAL Operator from Consul to a YAML file in order to ensure that the current configuration settings are used.

    operator config export <filename>.yml --insecure
    
  2. In the section of the SharePoint connector, set cstatus to on.

    operator:
      connectors:
      ...
        sharepoint:
          cstatus: 'on'
          serviceName: operator-sharepoint
          url: 'https://localhost:3017'
      ...
    
  3. Save the <filename>.yml file and re-import it to Consul.

    operator config import <filename>.yml --insecure
    

Back to top