Skip to content

Commit 6b078ba

Browse files
[Metro][STIA][SRPA] Update tag in release-2026.0 and add 3rd party license (#1868)
1 parent 9673008 commit 6b078ba

File tree

7 files changed

+1084
-6
lines changed

7 files changed

+1084
-6
lines changed

metro-ai-suite/smart-route-planning-agent/docs/user-guide/get-started/environment-variables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This section explains the environment variables used to configure the Smart Rout
1212
| Variable | Default | Description |
1313
|----------|---------|-------------|
1414
| `HOST_IP` | Auto-detected | Host IP address for the application. Automatically detected from the network interface. Falls back to `127.0.0.1` if detection fails. |
15-
| `TAG` | `latest` | Docker image tag to use when building and running containers. |
15+
| `TAG` | `1.0.0-rc1` | Docker image tag to use when building and running containers. |
1616
| `REGISTRY` | (empty) | Docker registry path for pulling or pushing images. |
1717

1818
## Network Configuration

metro-ai-suite/smart-route-planning-agent/setup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export HOST_IP
8787
# Add HOST_IP to no_proxy only if not already present
8888
[[ $no_proxy != *"${HOST_IP}"* ]] && export no_proxy="${no_proxy},${HOST_IP}"
8989

90-
export TAG=${TAG:-latest}
90+
export TAG=${TAG:-1.0.0-rc1}
9191
# Construct registry path properly to avoid double slashes
9292
if [[ -n "$REGISTRY" ]]; then
9393
export REGISTRY="${REGISTRY%/}/"
@@ -201,7 +201,7 @@ case "$1" in
201201
# Remove project-related images only with --all
202202
if [ "$2" = "--all" ]; then
203203
echo -e "${YELLOW}Removing container images...${NC}"
204-
docker rmi -f "${REGISTRY:-}smart-route-planning-agent:${TAG:-latest}" 2>/dev/null || true
204+
docker rmi -f "${REGISTRY:-}smart-route-planning-agent:${TAG:-1.0.0-rc1}" 2>/dev/null || true
205205
echo -e "${GREEN}Images removed.${NC}"
206206
fi
207207

metro-ai-suite/smart-route-planning-agent/src/compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ networks:
77

88
services:
99
route-planner-agent:
10-
image: ${REGISTRY:-}smart-route-planning-agent:${TAG:-latest}
10+
image: ${REGISTRY:-}smart-route-planning-agent:${TAG:-1.0.0-rc1}
1111
build:
1212
context: .
1313
dockerfile: Dockerfile

metro-ai-suite/smart-route-planning-agent/third_party_programs.txt

Lines changed: 539 additions & 0 deletions
Large diffs are not rendered by default.

metro-ai-suite/smart-traffic-intersection-agent/docker/agent-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ services:
5252
build:
5353
context: ${APP_DIR:-..}/src
5454
dockerfile: Dockerfile
55-
image: ${REGISTRY:-}smart-traffic-intersection-agent:${TAG:-latest}
55+
image: ${REGISTRY:-}smart-traffic-intersection-agent:${TAG:-1.0.0-rc1}
5656
ports:
5757
- "${AGENT_BACKEND_PORT:-}:8081"
5858
- "${AGENT_UI_PORT:-}:7860"

metro-ai-suite/smart-traffic-intersection-agent/docs/user-guide/get-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ an introduction.
2323
- **Registry configuration**: To pull pre-built images from a specific registry, set the `REGISTRY` and `TAG` parameters. Following is the recommended default setting.
2424
```bash
2525
export REGISTRY="intel"
26-
export TAG="latest"
26+
export TAG="1.0.0-rc1"
2727
```
2828

2929

metro-ai-suite/smart-traffic-intersection-agent/third_party_programs.txt

Lines changed: 539 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)