1515build :
1616 context :
1717 # Root directory for the build context
18- root : ../ # Keep this as the default root
18+ root : ../ # Keep this as the default root
1919
2020 # Paths to include in the Docker build context
2121 # Must include:
@@ -34,14 +34,13 @@ build:
3434 # Helps keep build context small and builds fast
3535 dockerignore : 000_hello_acp/.dockerignore
3636
37-
3837# Local Development Configuration
3938# -----------------------------
4039# Only used when running the agent locally
4140local_development :
4241 agent :
43- port : 8000 # Port where your local ACP server is running
44- host_address : host.docker.internal # Host address for Docker networking (host.docker.internal for Docker, localhost for direct)
42+ port : 8000 # Port where your local ACP server is running
43+ host_address : host.docker.internal # Host address for Docker networking (host.docker.internal for Docker, localhost for direct)
4544
4645 # File paths for local development (relative to this manifest.yaml)
4746 paths :
@@ -53,7 +52,6 @@ local_development:
5352 # /absolute/path/acp.py (absolute path)
5453 acp : project/acp.py
5554
56-
5755# Agent Configuration
5856# -----------------
5957agent :
@@ -83,39 +81,39 @@ agent:
8381 # secret_name: openai-api-key
8482 # secret_key: api-key
8583
86- # Optional: Set Environment variables for running your agent locally as well
84+ # Optional: Set Environment variables for running your agent locally as well
8785 # as for deployment later on
8886 # env:
8987 # - name: OPENAI_BASE_URL
9088 # value: "https://api.openai.com/v1"
9189 # - name: ACCOUNT_ID
9290 # value: "your_account_id_here"
9391
94-
9592# Deployment Configuration
9693# -----------------------
9794# Configuration for deploying your agent to Kubernetes clusters
9895deployment :
9996 # Container image configuration
10097 image :
10198 repository : " " # Update with your container registry
102- tag : " latest" # Default tag, should be versioned in production
99+ tag : " latest" # Default tag, should be versioned in production
103100
104101 # Global deployment settings that apply to all clusters
105102 # These can be overridden in cluster-specific files (deploy/*.yaml)
106103 global :
107104 agent :
108105 name : " s000-hello-acp"
109106 description : " An AgentEx agent that just says hello and acknowledges the user's message"
110-
107+
111108 # Default replica count
112109 replicaCount : 1
113-
110+
114111 # Default resource requirements
115112 resources :
116113 requests :
117114 cpu : " 500m"
118115 memory : " 1Gi"
119116 limits :
120117 cpu : " 1000m"
121- memory : " 2Gi"
118+ memory : " 2Gi"
119+
0 commit comments