File tree Expand file tree Collapse file tree 3 files changed +15
-21
lines changed
src/agentex/lib/cli/templates Expand file tree Collapse file tree 3 files changed +15
-21
lines changed Original file line number Diff line number Diff line change 8686
8787 # Optional: Set Environment variables for running your agent locally as well
8888 # as for deployment later on
89- # env:
89+ env: {}
9090 # OPENAI_API_KEY: "<YOUR _OPENAI_API_KEY_HERE >"
9191 # OPENAI_BASE_URL: "<YOUR _OPENAI_BASE_URL_HERE >"
9292 # OPENAI_ORG_ID: "<YOUR _OPENAI_ORG_ID_HERE >"
@@ -100,13 +100,12 @@ deployment:
100100 repository: "" # Update with your container registry
101101 tag: "latest" # Default tag, should be versioned in production
102102
103+ imagePullSecrets: [] # Update with your image pull secret names
104+ # - name: my-registry-secret
105+
103106 # Global deployment settings that apply to all clusters
104- # These can be overridden in cluster-specific files (deploy/* .yaml)
107+ # These can be overridden in cluster-specific environments (environments .yaml)
105108 global:
106- agent:
107- name: "{{ agent_name }}"
108- description: "{{ description }}"
109-
110109 # Default replica count
111110 replicaCount: 1
112111
Original file line number Diff line number Diff line change @@ -74,14 +74,14 @@ agent:
7474 # Optional: Credentials mapping
7575 # Maps Kubernetes secrets to environment variables
7676 # Common credentials include:
77- # credentials:
77+ credentials: [] # Update with your credentials
7878 # - env_var_name: OPENAI_API_KEY
7979 # secret_name: openai-api-key
8080 # secret_key: api-key
8181
8282 # Optional: Set Environment variables for running your agent locally as well
8383 # as for deployment later on
84- # env:
84+ env: {} # Update with your environment variables
8585 # OPENAI_API_KEY: "<YOUR _OPENAI_API_KEY_HERE >"
8686 # OPENAI_BASE_URL: "<YOUR _OPENAI_BASE_URL_HERE >"
8787 # OPENAI_ORG_ID: "<YOUR _OPENAI_ORG_ID_HERE >"
@@ -95,14 +95,13 @@ deployment:
9595 image:
9696 repository: "" # Update with your container registry
9797 tag: "latest" # Default tag, should be versioned in production
98+
99+ imagePullSecrets: [] # Update with your image pull secret names
100+ # - name: my-registry-secret
98101
99102 # Global deployment settings that apply to all clusters
100- # These can be overridden in cluster-specific files (deploy/* .yaml)
103+ # These can be overridden in cluster-specific environments (environments .yaml)
101104 global:
102- agent:
103- name: "{{ agent_name }}"
104- description: "{{ description }}"
105-
106105 # Default replica count
107106 replicaCount: 1
108107
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ agent:
106106
107107 # Optional: Set Environment variables for running your agent locally as well
108108 # as for deployment later on
109- # env:
109+ env: {}
110110 # OPENAI_API_KEY: "<YOUR _OPENAI_API_KEY_HERE >"
111111 # OPENAI_BASE_URL: "<YOUR _OPENAI_BASE_URL_HERE >"
112112 # OPENAI_ORG_ID: "<YOUR _OPENAI_ORG_ID_HERE >"
@@ -121,16 +121,12 @@ deployment:
121121 repository: "" # Update with your container registry
122122 tag: "latest" # Default tag, should be versioned in production
123123
124- imagePullSecrets:
125- - name: my-registry-secret # Update with your image pull secret name
124+ imagePullSecrets: [] # Update with your image pull secret name
125+ # - name: my-registry-secret
126126
127127 # Global deployment settings that apply to all clusters
128- # These can be overridden using --override-file with custom configuration files
128+ # These can be overridden in cluster-specific environments (environments.yaml)
129129 global:
130- agent:
131- name: "{{ agent_name }}"
132- description: "{{ description }}"
133-
134130 # Default replica count
135131 replicaCount: 1
136132
You can’t perform that action at this time.
0 commit comments