Deployment Policies Kit
Control how and when agent updates are deployed to production.
Configuration
Deployment Policies Dashboard
0/5 completeDeployments
24
Successful
0
Failed
0
Build artifactPENDINGCompile and package new version
Deploy to stagingPENDINGPush to green environment
Run smoke testsPENDINGHealth checks and integration tests
Switch trafficPENDINGRoute 100% traffic to green
Decommission bluePENDINGTear down old environment
Integration Code
import { createDeploymentPolicies } from 'agent-tools-kit/operations'
const deploy = createDeploymentPolicies({ strategy: 'blue-green' })
await deploy.release(newVersion)