Release images used by default for the SMO installation 59/15459/1
authoraravind.est <aravindhan.a@est.tech>
Fri, 2 Jan 2026 12:12:05 +0000 (12:12 +0000)
committeraravind.est <aravindhan.a@est.tech>
Fri, 2 Jan 2026 12:12:05 +0000 (12:12 +0000)
Snapshot images were used by default due to the unavailability of the release images.
This change uses the release repository images.

Issue-ID: NONRTRIC-1095
Change-Id: I5b11368711545c62ecfe3c9eede343243457921b
Signed-off-by: aravind.est <aravindhan.a@est.tech>
smo-install/README.md
smo-install/scripts/layer-2/2-install-oran.sh
smo-install/scripts/sub-scripts/generate-image-list.sh

index 0e7f015..c927fd3 100644 (file)
@@ -57,9 +57,6 @@ nonrtric:
 - Uses pre-built charts from Nexus repositories.
 - No chart building required.
 
-> [!NOTE]
-> **Release images are currently unavailable.** Snapshot images are used for deployment. Once release images become available, the installation will switch to use them automatically.
-
 **Repositories:**
 - SMO Release: https://nexus3.o-ran-sc.org/repository/helm.release/
 - SMO Snapshot: https://nexus3.o-ran-sc.org/repository/helm.snapshot/
@@ -147,7 +144,7 @@ To generate the list of required images, run:
 ```bash
 ./dep/smo-install/scripts/sub-scripts/generate-image-list.sh <HELM_REPO>
 ```
-Where `<HELM_REPO>` is either `oran-snapshot` or `oran-release` or `local` (depends on the helm repo configuration). The default is `oran-snapshot`.
+Where `<HELM_REPO>` is either `oran-snapshot` or `oran-release` or `local` (depends on the helm repo configuration). The default is `oran-release`.
 
 Command to pull the image depends on your container runtime.
 
index 8b2c762..75157c7 100755 (executable)
@@ -6,7 +6,7 @@
 # ================================================================================
 # Copyright (C) 2021 AT&T Intellectual Property. All rights
 #                             reserved.
-# Modification Copyright (C) 2024-2025 OpenInfra Foundation Europe. All rights reserved.
+# Modification Copyright (C) 2024-2026 OpenInfra Foundation Europe. All rights reserved.
 # ================================================================================
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -77,7 +77,7 @@ fi
 
 timestamp=$(date +%s)
 
-TARGET_HELM_REPO="oran-snapshot" # This should be changed to oran-release once the release charts are published
+TARGET_HELM_REPO="oran-release"
 
 if [ "$MODE" == "dev" ]; then
     helm cm-push ../packages/strimzi-kafka-operator-helm-3-chart-0.45.0.tgz local
index e365d00..84cac2b 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/bash
 # ============LICENSE_START=======================================================
-# Copyright (C) 2025 OpenInfra Foundation Europe. All rights reserved.
+# Copyright (C) 2025-2026 OpenInfra Foundation Europe. All rights reserved.
 # ================================================================================
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -23,7 +23,7 @@ NEXUS_PROXY_DOCKER_IO_REPO="nexus3.o-ran-sc.org:10001"
 
 HELM_REPO=$1
 if [ -z "$HELM_REPO" ]; then
-  HELM_REPO="oran-snapshot"
+  HELM_REPO="oran-release"
 fi
 
 echo "Generating image list from Helm charts in repo: $HELM_REPO ..."