Skip to content

Commit 9d69612

Browse files
[Edge AI Suites] IRD and metro apps: Update image tags to release 2026.0.0 version (#2292)
Signed-off-by: Katakol, Rohit <rohit.katakol@intel.com> Co-authored-by: Jagadish, Ashish <ashish.jagadish@intel.com>
1 parent 15de409 commit 9d69612

File tree

45 files changed

+84
-84
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+84
-84
lines changed

manufacturing-ai-suite/industrial-edge-insights-vision/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ HOST_IP=
44
REST_SERVER_PORT=8080
55

66
# DL Streamer Pipeline Server
7-
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3
7+
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24
88
RTSP_CAMERA_IP=
99

1010
# MinIO service & client

manufacturing-ai-suite/industrial-edge-insights-vision/.env_pallet-defect-detection

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ HOST_IP=
44
REST_SERVER_PORT=8080
55

66
# DL Streamer Pipeline Server
7-
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3
7+
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24
88
RTSP_CAMERA_IP=
99

1010
# MinIO service & client

manufacturing-ai-suite/industrial-edge-insights-vision/.env_pcb-anomaly-detection

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ HOST_IP=
44
REST_SERVER_PORT=8080
55

66
# DL Streamer Pipeline Server
7-
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3
7+
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24
88
RTSP_CAMERA_IP=
99

1010
# MinIO service & client

manufacturing-ai-suite/industrial-edge-insights-vision/.env_weld-porosity

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ HOST_IP=
44
REST_SERVER_PORT=8080
55

66
# DL Streamer Pipeline Server
7-
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3
7+
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24
88
RTSP_CAMERA_IP=
99

1010
# MinIO service & client

manufacturing-ai-suite/industrial-edge-insights-vision/.env_worker-safety-gear-detection

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ HOST_IP=
44
REST_SERVER_PORT=8080
55

66
# DL Streamer Pipeline Server
7-
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3
7+
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24
88
RTSP_CAMERA_IP=
99

1010
# MinIO service & client

manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pallet-defect-detection/get-started/deploy-with-helm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@
3333
- Download helm chart with the following command
3434

3535
```bash
36-
helm pull oci://registry-1.docker.io/intel/pallet-defect-detection-reference-implementation --version 2.6.0-rc3
36+
helm pull oci://registry-1.docker.io/intel/pallet-defect-detection-reference-implementation --version 2.6.0
3737
```
3838

3939
- Unzip the package using the following command
4040

4141
```bash
42-
tar -xvf pallet-defect-detection-reference-implementation-2.6.0-rc3.tgz
42+
tar -xvf pallet-defect-detection-reference-implementation-2.6.0.tgz
4343
```
4444

4545
- Replace the helm directory

manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pallet-defect-detection/how-to-guides/integrate-balluff-sdk.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ cd edge-ai-libraries/microservices/dlstreamer-pipeline-server
2424
Create a Docker file named `BalluffDockerfile` inside your `dlstreamer-pipeline-server` directory with the following content.
2525

2626
```dockerfile
27-
FROM intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3
27+
FROM intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24
2828

2929
USER root
3030

@@ -41,7 +41,7 @@ RUN chmod +x /home/pipeline-server/src-gst-gencamsrc/autogen.sh
4141
RUN chmod +x /home/pipeline-server/install_gencamsrc_gstreamer_plugin.sh
4242
RUN /home/pipeline-server/install_gencamsrc_gstreamer_plugin.sh
4343

44-
# For Ubuntu24 intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3 base image
44+
# For Ubuntu24 intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24 base image
4545
RUN apt-get update && apt-get install -y libwxgtk-webview3.2-dev
4646

4747
# For Ubuntu 22 with intel/dlstreamer-pipeline-server:3.1.0-ubuntu22, uncomment the line below and comment the above line
@@ -67,7 +67,7 @@ USER intelmicroserviceuser
6767
Run the following command to build the image:
6868

6969
```bash
70-
docker build -t intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3-gencamsrc-balluff -f BalluffDockerfile .
70+
docker build -t intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-gencamsrc-balluff -f BalluffDockerfile .
7171
```
7272

7373
This command builds your Docker image using the steps defined above.
@@ -76,7 +76,7 @@ This command builds your Docker image using the steps defined above.
7676

7777
After the build completes, update .env and start the container:
7878

79-
> update .env DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3-gencamsrc-balluff
79+
> update .env DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-gencamsrc-balluff
8080
8181
```bash
8282
docker compose up -d
@@ -111,7 +111,7 @@ cp .env_pallet-defect-detection .env
111111
Update the `.env` file with the newly created image as below and modify any other required variables.
112112

113113
```bash
114-
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3-gencamsrc-balluff
114+
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-gencamsrc-balluff
115115
```
116116

117117

manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pallet-defect-detection/how-to-guides/integrate-pylon-sdk.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ cd edge-ai-libraries/microservices/dlstreamer-pipeline-server
2222
Create a Docker file named `BaslerDockerfile` inside your `dlstreamer-pipeline-server` directory with the following content.
2323

2424
```dockerfile
25-
FROM intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3
25+
FROM intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24
2626

2727
USER root
2828

@@ -53,7 +53,7 @@ USER intelmicroserviceuser
5353
Run the following command to build the image:
5454

5555
```bash
56-
docker build -t intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3-gencamsrc-basler -f BaslerDockerfile .
56+
docker build -t intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-gencamsrc-basler -f BaslerDockerfile .
5757
```
5858

5959
This command builds your Docker image using the steps defined above.
@@ -62,7 +62,7 @@ This command builds your Docker image using the steps defined above.
6262

6363
After the build completes, update .env and start the container:
6464

65-
> update .env DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3-gencamsrc-basler
65+
> update .env DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-gencamsrc-basler
6666
6767
```bash
6868
docker compose up -d
@@ -97,7 +97,7 @@ cp .env_pallet-defect-detection .env
9797
Update the `.env` file with the newly created image as below and modify any other required variables.
9898

9999
```bash
100-
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3-gencamsrc-basler
100+
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-gencamsrc-basler
101101
```
102102

103103
### Step 3: Run the Setup Script

manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/pcb-anomaly-detection/get-started/deploy-with-helm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@
3131

3232
- Download helm chart with the following command
3333

34-
`helm pull oci://registry-1.docker.io/intel/pcb-anomaly-detection --version 1.2.0-rc3`
34+
`helm pull oci://registry-1.docker.io/intel/pcb-anomaly-detection --version 1.2.0`
3535
- unzip the package using the following command
3636

37-
`tar -xvf pcb-anomaly-detection-1.2.0-rc3.tgz`
37+
`tar -xvf pcb-anomaly-detection-1.2.0.tgz`
3838
- Replace the helm directory
3939

4040
`rm -rf helm && mv pcb-anomaly-detection helm`

manufacturing-ai-suite/industrial-edge-insights-vision/docs/user-guide/weld-porosity/get-started/deploy-with-helm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@
3030

3131
- Download helm chart with the following command
3232

33-
`helm pull oci://registry-1.docker.io/intel/weld-porosity-sample-application --version 1.4.0-rc3`
33+
`helm pull oci://registry-1.docker.io/intel/weld-porosity-sample-application --version 1.4.0`
3434
- unzip the package using the following command
3535

36-
`tar -xvf weld-porosity-sample-application-1.4.0-rc3.tgz`
36+
`tar -xvf weld-porosity-sample-application-1.4.0.tgz`
3737
- Replace the helm directory
3838

3939
`rm -rf helm && mv weld-porosity-sample-application helm`

0 commit comments

Comments
 (0)