You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For a server with 8 vCPUs, following the rule of **2 vCPUs per agent**, you can deploy **4 agents** using this script:
188
+
For a server with 8 vCPUs, following the rule of **2 vCPUs per agent** (this is a subjective recommendation - adjust based on your workload requirements and performance monitoring), you can deploy **4 agents** using this script:
186
189
187
190
Create a file `deploy-agents.sh`:
188
191
189
192
```bash
193
+
190
194
#!/bin/bash
191
195
# Multi-agent deployment script
192
196
# Rule: 2 vCPUs per agent
@@ -196,7 +200,7 @@ set -e
196
200
197
201
# Configuration
198
202
TOTAL_VCPUS=$(nproc)
199
-
VCPUS_PER_AGENT=2
203
+
VCPUS_PER_AGENT=2 # Adjust this value based on your workload needs
@@ -360,4 +357,17 @@ The image uses IMDSv2 (Instance Metadata Service v2) to securely retrieve AWS in
360
357
361
358
---
362
359
363
-
*Docker image for Azure DevOps agents with AWS Secrets Manager integration - Optimized for modern CI/CD pipelines and DevOps automation.*
360
+
*Docker image for Azure DevOps agents with AWS Secrets Manager integration - Optimized for modern CI/CD pipelines and DevOps automation.*
361
+
362
+
## Disclaimer
363
+
364
+
**This software is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software.**
365
+
366
+
The developer cannot be held responsible for any problems, data loss, security issues, or any other consequences that may arise from the use of this software. Users are solely responsible for:
367
+
- Proper configuration and deployment
368
+
- Security of credentials and tokens
369
+
- Resource allocation and monitoring
370
+
- Compliance with Azure DevOps and AWS terms of service
0 commit comments