Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions src/agentex/lib/cli/templates/default/manifest.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -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: "<YOUR_OPENAI_API_KEY_HERE>"
# OPENAI_BASE_URL: "<YOUR_OPENAI_BASE_URL_HERE>"
# OPENAI_ORG_ID: "<YOUR_OPENAI_ORG_ID_HERE>"
Expand All @@ -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

Expand Down
13 changes: 6 additions & 7 deletions src/agentex/lib/cli/templates/sync/manifest.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -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: "<YOUR_OPENAI_API_KEY_HERE>"
# OPENAI_BASE_URL: "<YOUR_OPENAI_BASE_URL_HERE>"
# OPENAI_ORG_ID: "<YOUR_OPENAI_ORG_ID_HERE>"
Expand All @@ -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

Expand Down
12 changes: 4 additions & 8 deletions src/agentex/lib/cli/templates/temporal/manifest.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -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: "<YOUR_OPENAI_API_KEY_HERE>"
# OPENAI_BASE_URL: "<YOUR_OPENAI_BASE_URL_HERE>"
# OPENAI_ORG_ID: "<YOUR_OPENAI_ORG_ID_HERE>"
Expand All @@ -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

Expand Down