Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Info

This article is valid for Digital Access 6.2 and later.

...

Note
  • Manager node is the node that hosts the administration service.
  • Worker node is a node that hosts other services, not running the administration service.
  • Make sure 1003 is available for user id and group id.


Prerequisites

  • Two Digital Access components with services and docker swarm available 
  • The following ports shall be open to traffic to and from each Docker host participating on an overlay network:
    • TCP port 2377 for cluster management communications
    • TCP and UDP port 7946 for communication among nodes
    • UDP port 4789 for overlay network traffic
  • For more details refer to: https://docs.docker.com/network/overlay/
  • Keep a note of IP addresses of nodes where access point is running.

...

  1. SSH to the node running the administration service, that is, the manager node.
  2. Get the cluster join token by running this command. This token will be used for joining worker nodes to the manager node.


Code Block
titleGet token
sudo docker swarm join-token worker

...



The output of the command will be like:

Panel
titleOutput

docker swarm join --token SWMTKN-1-5dxny21y4oslz87lqjzz4wj2wejy6vicjtqwq33mvqqni42ki2-1gvl9xiqcrlxuxoafesxampwq 192.168.253.139:2377


Stop services

Stop the running services.

...

  1.  Update labels for each service which you want to run on worker nodes.
  2.  <node ID> is the id of the node on which the service will be running.

    Code Block
    titleCommands to update labels
    sudo docker node update --label-add da-policy-service=true <worker node ID>
    sudo docker node update --label-add da-access-point=true <worker node ID>


  3. Deploy your stack using this command. To run the command your working directory should be docker-compose.


    Code Block
    titleDeploy DA stack
    sudo docker stack deploy --compose-file docker-compose.yml -c network.yml -c versiontag.yml <your da stack name>

...

titleUpdate labels for each service

  • docker stack deploy is the command to deploy services as stack. 
  • compose file flag is used to provide the file name of base docker-compose file. 
  • -c is short for –compose-file flag. It is used to provide override files for docker -compose. 
  • <your da stack name> is the name of the stack. You can change it based on requirements.


Additional information