diff --git a/src/agentex/lib/cli/templates/default/manifest.yaml.j2 b/src/agentex/lib/cli/templates/default/manifest.yaml.j2 index 7a9a74d7..18406097 100644 --- a/src/agentex/lib/cli/templates/default/manifest.yaml.j2 +++ b/src/agentex/lib/cli/templates/default/manifest.yaml.j2 @@ -86,7 +86,7 @@ agent: # Optional: Set Environment variables for running your agent locally as well # as for deployment later on - # env: + env: {} # OPENAI_API_KEY: "" # OPENAI_BASE_URL: "" # OPENAI_ORG_ID: "" @@ -100,13 +100,12 @@ deployment: repository: "" # Update with your container registry tag: "latest" # Default tag, should be versioned in production + imagePullSecrets: [] # Update with your image pull secret names + # - name: my-registry-secret + # Global deployment settings that apply to all clusters - # These can be overridden in cluster-specific files (deploy/*.yaml) + # These can be overridden in cluster-specific environments (environments.yaml) global: - agent: - name: "{{ agent_name }}" - description: "{{ description }}" - # Default replica count replicaCount: 1 diff --git a/src/agentex/lib/cli/templates/sync/manifest.yaml.j2 b/src/agentex/lib/cli/templates/sync/manifest.yaml.j2 index 213849ab..b006c617 100644 --- a/src/agentex/lib/cli/templates/sync/manifest.yaml.j2 +++ b/src/agentex/lib/cli/templates/sync/manifest.yaml.j2 @@ -74,14 +74,14 @@ agent: # Optional: Credentials mapping # Maps Kubernetes secrets to environment variables # Common credentials include: - # credentials: + credentials: [] # Update with your credentials # - env_var_name: OPENAI_API_KEY # secret_name: openai-api-key # secret_key: api-key # Optional: Set Environment variables for running your agent locally as well # as for deployment later on - # env: + env: {} # Update with your environment variables # OPENAI_API_KEY: "" # OPENAI_BASE_URL: "" # OPENAI_ORG_ID: "" @@ -95,14 +95,13 @@ deployment: image: repository: "" # Update with your container registry tag: "latest" # Default tag, should be versioned in production + + imagePullSecrets: [] # Update with your image pull secret names + # - name: my-registry-secret # Global deployment settings that apply to all clusters - # These can be overridden in cluster-specific files (deploy/*.yaml) + # These can be overridden in cluster-specific environments (environments.yaml) global: - agent: - name: "{{ agent_name }}" - description: "{{ description }}" - # Default replica count replicaCount: 1 diff --git a/src/agentex/lib/cli/templates/temporal/manifest.yaml.j2 b/src/agentex/lib/cli/templates/temporal/manifest.yaml.j2 index a1142f5c..a6433ce7 100644 --- a/src/agentex/lib/cli/templates/temporal/manifest.yaml.j2 +++ b/src/agentex/lib/cli/templates/temporal/manifest.yaml.j2 @@ -106,7 +106,7 @@ agent: # Optional: Set Environment variables for running your agent locally as well # as for deployment later on - # env: + env: {} # OPENAI_API_KEY: "" # OPENAI_BASE_URL: "" # OPENAI_ORG_ID: "" @@ -121,16 +121,12 @@ deployment: repository: "" # Update with your container registry tag: "latest" # Default tag, should be versioned in production - imagePullSecrets: - - name: my-registry-secret # Update with your image pull secret name + imagePullSecrets: [] # Update with your image pull secret name + # - name: my-registry-secret # Global deployment settings that apply to all clusters - # These can be overridden using --override-file with custom configuration files + # These can be overridden in cluster-specific environments (environments.yaml) global: - agent: - name: "{{ agent_name }}" - description: "{{ description }}" - # Default replica count replicaCount: 1