Skip to content

sonic-net/sonic-restapi

Folders and files

NameName
Last commit message
Last commit date
Jun 28, 2023
Jan 2, 2020
May 10, 2023
Jan 2, 2020
Jan 2, 2020
Jan 9, 2020
Jan 2, 2020
Jan 2, 2020
Oct 8, 2021
Oct 17, 2023
Jan 2, 2020
May 10, 2023
Dec 1, 2023
Oct 8, 2021
Apr 17, 2023
Jan 2, 2020
Oct 17, 2023
Jan 2, 2020
May 31, 2024
Feb 24, 2022
May 31, 2024
Sep 21, 2022
Feb 24, 2022
May 31, 2024
Dec 4, 2020
Dec 6, 2023
Oct 6, 2021
Jun 28, 2023
Jan 2, 2020
Aug 16, 2022
Aug 16, 2022
Jun 28, 2023
Oct 8, 2021
Oct 12, 2023
Sep 8, 2022
Jan 2, 2020
Jan 2, 2020

Repository files navigation

SONiC-restapi

Description

This is a configuration agent which exposes HTTPS endpoints to perform dynamic network configuration on switches running SONiC. It restful API server is go-server-server

Getting Started

Build Rest-API

  1. Execute ./build.sh
  2. The above should generate 2 Docker images, 1 which is used for local development on your VM and 1 which is used for deployment on a TOR
  3. Run docker images to check if rest-api dockers were generated
    REPOSITORY                     TAG                 IMAGE ID            CREATED             SIZE 
    rest-api-image latest d2815fcb7356 2 days ago 222MB
    rest-api-image-test_local latest e62219a0bae2 2 days ago 222MB
  4. rest-api-image-test_local is for local testing on a dev VM and rest-api-image is for TOR testing/deployment
  5. The production image is also stored into a compressed archive rest-api-image.gz

Running Rest-API container

Run Rest-API container locally on a VM and execute unit tests

  1. docker run -d --rm -p8090:8090 -p6379:6379 --name rest-api --cap-add NET_ADMIN --privileged -t rest-api-image-test_local:latest
  2. cd test
  3. pytest -v

Login to Rest-API container and check logs

  1. docker exec -it rest-api bash
  2. vim /tmp/rest-api.err.log

Run Rest-API container on a switch

  1. scp/copy over the generated archive(rest-api-image.gz) to your switch
  2. docker load < rest-api-image.gz
  3. docker run -d -p=8090:8090/tcp -v /var/run/redis/redis.sock:/var/run/redis/redis.sock --name rest-api --cap-add NET_ADMIN --privileged -t rest-api-image:latest