1.0.0 • Published 6 months ago

api-integrations-test v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

api-integrations

Repository for managing API integrations.

Frontend

See frontend's README.

Deployment management

Generating a pusher deployment

  1. Run the script.
yarn generate-pusher-deployment
  1. Select the API.
$ ts-node src/config-generation/pusher/generate-deployment.ts
? Select an API to create deployment: › - Use arrow-keys. Return to submit.
❯   api-1
    api-2
    some-api
    ...
  1. Deployment will be created under ./data/apis/<api-name>/deployments/candidate-deployments.

Managing deployments

  • Deployment folder for the each API has the below structure:
.
├── active-deployments
└── candidate-deployments
    └── api3-20231101-pusher.json
  • Deployments names are created in this format: api3-YYYYMMDD-pusher.json and there should be only one or no deployments under candidate-deployments.
  • Once a candidate-deployment is deployed by the API provider, deployment under the candidate-deployment will be manually moved under active-deployments. active-deployments will be confirmed with CI scripts. If there is no heartbeat from the deployment, CI won't allow pushing changes to the repository.
  • Deployments will identified by pusher configuration file's hash.

Heartbeat

Pusher minutely log the below string and the string will be parsed and returned through an API for this repository to check deployments.

${airnodeAddress} - ${stage} - ${pusherVersion} - ${currentTimestamp} - ${deploymentTimestamp} - ${pusherConfigHash} - ${heartbeatSignature}

Through the pusherConfigHash it will be possible to check if the correct deployment is deployed.

1.0.0

6 months ago