File tree Expand file tree Collapse file tree
agent-launcher/src/main/java/io/sentrius/agent/launcher/service Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ SENTRIUS_KEYCLOAK_VERSION=1.1.14
44SENTRIUS_AGENT_VERSION = 1.1.23
55SENTRIUS_AI_AGENT_VERSION = 1.1.4
66LLMPROXY_VERSION = 1.1.4
7- LAUNCHER_VERSION = 1.1.4
7+ LAUNCHER_VERSION = 1.1.5
88AGENTPROXY_VERSION = 1.1.5
99SSHPROXY_VERSION = 1.1.4
1010RDPPROXY_VERSION = 1.1.4
Original file line number Diff line number Diff line change @@ -164,8 +164,11 @@ public V1Pod launchAgentPod(AgentRegistrationDTO agent) throws Exception {
164164 if (agentRegistry != null ) {
165165 if ("local" .equalsIgnoreCase (agentRegistry )) {
166166 myAgentRegistry = "" ;
167- } else if (!agentRegistry .endsWith ("/" )) {
168- myAgentRegistry += "/" ;
167+ } else {
168+ myAgentRegistry = agentRegistry ;
169+ if (!myAgentRegistry .endsWith ("/" )) {
170+ myAgentRegistry += "/" ;
171+ }
169172 }
170173 }
171174 String agentId = agent .getAgentName ().toLowerCase ();
Original file line number Diff line number Diff line change @@ -499,7 +499,7 @@ helm upgrade --install sentrius-agents ./sentrius-chart-launcher --namespace ${T
499499 --set ssh.image.repository=" ${AZURE_REGISTRY} /sentrius-ssh" \
500500 --set ssh.image.pullPolicy=" IfNotPresent" \
501501 --set ssh.image.tag=${SENTRIUS_SSH_VERSION} \
502- --set sentriusaiagent.image.repository=" ${AZURE_REGISTRY} /sentrius-ai-agent " \
502+ --set sentriusaiagent.image.repository=" ${AZURE_REGISTRY} /" \
503503 --set sentriusaiagent.image.pullPolicy=" IfNotPresent" \
504504 --set sentriusaiagent.image.tag=${SENTRIUS_AI_AGENT_VERSION} \
505505 --set launcherservice.image.repository=" ${AZURE_REGISTRY} /sentrius-launcher-service" \
Original file line number Diff line number Diff line change @@ -100,8 +100,8 @@ data:
100100 spring.kafka.properties.metadata.max.age.ms=10000
101101 spring.kafka.properties.retry.backoff.ms=1000
102102
103- sentrius.agent.registry=local
104- sentrius.agent.registry.version=latest
103+ sentrius.agent.registry={{ .Values.sentriusaiagent.image.repository }}
104+ sentrius.agent.registry.version={{ .Values.sentriusaiagent.image.tag }}
105105 sentrius.agent.namespace={{ .Values.tenant }}
106106 agent.properties : |
107107 spring.main.web-application-type=servlet
Original file line number Diff line number Diff line change @@ -101,6 +101,7 @@ sentriusagent:
101101 image :
102102 repository : sentrius-agent
103103 pullPolicy : IfNotPresent
104+ tag : latest
104105 port : 8080
105106 oauth2 :
106107 client_id : java-agents
@@ -127,8 +128,9 @@ sentriusaiagent:
127128 type : NodePort
128129 nodePort : 30085
129130 image :
130- repository : sentrius-ai -agent
131+ repository : sentrius-launchable -agent
131132 pullPolicy : IfNotPresent
133+ tag : latest
132134 port : 8080
133135 oauth2 :
134136 client_id : java-agents
You can’t perform that action at this time.
0 commit comments