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>
- 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/
```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.
# ================================================================================
# 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.
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
#!/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.
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 ..."