From 019473f83210197b833c03e2efdda0fb290b9eed Mon Sep 17 00:00:00 2001 From: garciadeblas Date: Mon, 2 Feb 2026 00:54:22 +0100 Subject: [PATCH] Prepare installer files, Jenkins and workflow templates for Release NINETEEN Change-Id: I3799f2d672ecbfa8cb1de483c2b5962575a9133b Signed-off-by: garciadeblas --- installers/00-default-install-options.rc | 8 +++--- installers/10-install-client-tools.sh | 4 +-- installers/30-deploy-mgmt-cluster.sh | 2 +- installers/40-deploy-osm.sh | 6 ++--- .../capi-cloud-configs-wft.yaml | 6 ++--- .../building-blocks/cloud-accounts-wft.yaml | 6 ++--- .../cluster-management-wft.yaml | 20 +++++++------- .../building-blocks/ksu-management-wft.yaml | 26 +++++++++---------- .../nodegroup-management-wft.yaml | 6 ++--- .../building-blocks/oka-management-wft.yaml | 6 ++--- .../profile-management-wft.yaml | 8 +++--- .../full-app-management-wft.yaml | 2 +- installers/full_install_osm.sh | 4 +-- installers/helm/osm/values.yaml | 20 +++++++------- installers/install_osm.sh | 4 +-- jenkins/ci-pipelines/ci_stage_3.groovy | 2 +- 16 files changed, 65 insertions(+), 65 deletions(-) diff --git a/installers/00-default-install-options.rc b/installers/00-default-install-options.rc index 4b057ca02..752b41ca1 100644 --- a/installers/00-default-install-options.rc +++ b/installers/00-default-install-options.rc @@ -19,12 +19,12 @@ export ASSUME_YES="" export APT_PROXY_URL="" export K8S_CLUSTER_ENGINE="k3s" export DEBUG_INSTALL="" -export RELEASE="testing-daily" +export RELEASE="releasenineteen-daily" export INSTALL_AUX_CLUSTER="y" export INSTALL_MGMT_CLUSTER="y" export OSM_NAMESPACE=osm export OSM_HELM_RELEASE=osm -export OSM_DOCKER_TAG="testing-daily" +export OSM_DOCKER_TAG="releasenineteen-daily" export DOCKER_USER="opensourcemano" export DOCKER_REGISTRY_USER= export DOCKER_REGISTRY_PASSWORD= @@ -32,8 +32,8 @@ export DOCKER_REGISTRY_URL= export DOCKER_PROXY_URL= export MODULES_FOR_TESTING= export MODULE_DOCKER_TAG= -export OSM_CLIENT_VERSION="master" -export OSM_IM_VERSION="master" +export OSM_CLIENT_VERSION="v19.0" +export OSM_IM_VERSION="v19.0" export OSM_HOME_DIR=${OSM_HOME_DIR:-"$HOME/.osm"} export CREDENTIALS_DIR="${OSM_HOME_DIR}/.credentials" export WORK_REPOS_DIR="${OSM_HOME_DIR}/repos" diff --git a/installers/10-install-client-tools.sh b/installers/10-install-client-tools.sh index c32bfb0a3..2fc704b98 100755 --- a/installers/10-install-client-tools.sh +++ b/installers/10-install-client-tools.sh @@ -130,8 +130,8 @@ sudo chmod +x /usr/local/bin/yq echo "yq installed" # OSM client -OSM_CLIENT_VERSION=${OSM_CLIENT_VERSION:-"master"} -OSM_IM_VERSION=${OSM_IM_VERSION:-"master"} +OSM_CLIENT_VERSION=${OSM_CLIENT_VERSION:-"v19.0"} +OSM_IM_VERSION=${OSM_IM_VERSION:-"v19.0"} sudo DEBIAN_FRONTEND=noninteractive apt-get install -y python3 python3-setuptools python3-dev python3-pip python3-venv sudo DEBIAN_FRONTEND=noninteractive apt-get install -y libmagic1t64 sudo DEBIAN_FRONTEND=noninteractive apt-get install -y make diff --git a/installers/30-deploy-mgmt-cluster.sh b/installers/30-deploy-mgmt-cluster.sh index a7ab60822..a565f0069 100755 --- a/installers/30-deploy-mgmt-cluster.sh +++ b/installers/30-deploy-mgmt-cluster.sh @@ -117,7 +117,7 @@ TEMPLATES_DIR=$(readlink -f "${TEMPLATES_DIR}") cp -r "${TEMPLATES_DIR}"/* "${SW_CATALOGS_REPO_DIR}/" if [ -n "${OSM_DOCKER_TAG}" ]; then # Replace the OSM Docker tag in the WF templates - find "${SW_CATALOGS_REPO_DIR}/infra-configs/osm-workflows/templates/wf-templates/building-blocks" -type f -name "*.yaml" -exec sed -i "s|opensourcemano/osm-krm-functions:testing-daily|${DOCKER_REGISTRY_URL}${DOCKER_USER}/osm-krm-functions:${OSM_DOCKER_TAG}|g" {} + + find "${SW_CATALOGS_REPO_DIR}/infra-configs/osm-workflows/templates/wf-templates/building-blocks" -type f -name "*.yaml" -exec sed -i "s|opensourcemano/osm-krm-functions:releasenineteen-daily|${DOCKER_REGISTRY_URL}${DOCKER_USER}/osm-krm-functions:${OSM_DOCKER_TAG}|g" {} + fi if [ -n "${MGMT_CLUSTER_CA_FILE}" ]; then # Update secret-template for Flux bootstrap to add CA file diff --git a/installers/40-deploy-osm.sh b/installers/40-deploy-osm.sh index bf3f70920..b5bf62f49 100755 --- a/installers/40-deploy-osm.sh +++ b/installers/40-deploy-osm.sh @@ -79,9 +79,9 @@ OSM_HELM_OPTS="" # [ -n "${DOCKER_REGISTRY_URL}" ] && OSM_HELM_OPTS="${OSM_HELM_OPTS} --set global.image.repository=${DOCKER_REGISTRY_URL}${DOCKER_USER}" OSM_HELM_OPTS="${OSM_HELM_OPTS} --set global.image.repositoryBase=${DOCKER_REGISTRY_URL}${DOCKER_USER}" OSM_HELM_OPTS="${OSM_HELM_OPTS} --set airflow.defaultAirflowRepository=${DOCKER_REGISTRY_URL}${DOCKER_USER}/airflow" -[ ! "$OSM_DOCKER_TAG" == "testing-daily" ] && OSM_HELM_OPTS="${OSM_HELM_OPTS} --set-string global.image.tag=${OSM_DOCKER_TAG}" -[ ! "$OSM_DOCKER_TAG" == "testing-daily" ] && OSM_HELM_OPTS="${OSM_HELM_OPTS} --set-string airflow.defaultAirflowTag=${OSM_DOCKER_TAG}" -[ ! "$OSM_DOCKER_TAG" == "testing-daily" ] && OSM_HELM_OPTS="${OSM_HELM_OPTS} --set prometheus.server.sidecarContainers.prometheus-config-sidecar.image=${DOCKER_REGISTRY_URL}${DOCKER_USER}/prometheus:${OSM_DOCKER_TAG}" +[ ! "$OSM_DOCKER_TAG" == "releasenineteen-daily" ] && OSM_HELM_OPTS="${OSM_HELM_OPTS} --set-string global.image.tag=${OSM_DOCKER_TAG}" +[ ! "$OSM_DOCKER_TAG" == "releasenineteen-daily" ] && OSM_HELM_OPTS="${OSM_HELM_OPTS} --set-string airflow.defaultAirflowTag=${OSM_DOCKER_TAG}" +[ ! "$OSM_DOCKER_TAG" == "releasenineteen-daily" ] && OSM_HELM_OPTS="${OSM_HELM_OPTS} --set prometheus.server.sidecarContainers.prometheus-config-sidecar.image=${DOCKER_REGISTRY_URL}${DOCKER_USER}/prometheus:${OSM_DOCKER_TAG}" OSM_HELM_OPTS="${OSM_HELM_OPTS} --set global.hostname=${OSM_BASE_DOMAIN}" if [ -n "${OSM_CLUSTER_INGRESS_CLASS}" ]; then diff --git a/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/capi-cloud-configs-wft.yaml b/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/capi-cloud-configs-wft.yaml index df6aed635..67b26506d 100644 --- a/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/capi-cloud-configs-wft.yaml +++ b/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/capi-cloud-configs-wft.yaml @@ -65,7 +65,7 @@ spec: value: "sw-catalogs-osm" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: OPENSTACK_CLOUDS_YAML @@ -162,7 +162,7 @@ spec: value: "sw-catalogs-osm" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: OPENSTACK_CLOUDS_YAML @@ -245,7 +245,7 @@ spec: value: "fleet-osm" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: DEBUG diff --git a/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/cloud-accounts-wft.yaml b/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/cloud-accounts-wft.yaml index 883123b0c..d7b471228 100644 --- a/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/cloud-accounts-wft.yaml +++ b/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/cloud-accounts-wft.yaml @@ -72,7 +72,7 @@ spec: value: "sw-catalogs-osm" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: CRED_SECRET_CONTENT @@ -166,7 +166,7 @@ spec: value: "sw-catalogs-osm" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: CRED_SECRET_CONTENT @@ -241,7 +241,7 @@ spec: value: "fleet-osm" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: DEBUG diff --git a/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/cluster-management-wft.yaml b/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/cluster-management-wft.yaml index 58454c7ff..a82bc9d9a 100644 --- a/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/cluster-management-wft.yaml +++ b/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/cluster-management-wft.yaml @@ -82,7 +82,7 @@ spec: value: "false" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: PRIVATE_KEY_NEW_CLUSTER @@ -190,7 +190,7 @@ spec: value: "false" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: PRIVATE_KEY_NEW_CLUSTER @@ -309,7 +309,7 @@ spec: value: "false" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: PRIVATE_KEY_NEW_CLUSTER @@ -430,7 +430,7 @@ spec: value: "false" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: PRIVATE_KEY_NEW_CLUSTER @@ -544,7 +544,7 @@ spec: value: "false" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: PRIVATE_KEY_NEW_CLUSTER @@ -654,7 +654,7 @@ spec: value: "false" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: PRIVATE_KEY_NEW_CLUSTER @@ -753,7 +753,7 @@ spec: value: "false" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: PRIVATE_KEY_NEW_CLUSTER @@ -822,7 +822,7 @@ spec: value: "false" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: DEBUG @@ -869,7 +869,7 @@ spec: value: "{{inputs.parameters.mgmt_cluster_name}}" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always command: ["/app/scripts/entrypoint.sh"] args: @@ -926,7 +926,7 @@ spec: value: "{{inputs.parameters.fleet_repo_dir}}/{{inputs.parameters.project_name}}/managed-resources/_management" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always command: ["/app/scripts/entrypoint.sh"] args: diff --git a/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/ksu-management-wft.yaml b/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/ksu-management-wft.yaml index 427ae4d23..667034147 100644 --- a/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/ksu-management-wft.yaml +++ b/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/ksu-management-wft.yaml @@ -86,7 +86,7 @@ spec: - name: debug value: "false" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: SECRET_VALUES @@ -203,7 +203,7 @@ spec: - name: debug value: "false" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: SECRET_VALUES @@ -324,7 +324,7 @@ spec: value: "false" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: SECRET_VALUES @@ -440,7 +440,7 @@ spec: value: "false" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: SECRET_VALUES @@ -519,7 +519,7 @@ spec: - name: debug value: "false" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: DEBUG @@ -584,7 +584,7 @@ spec: - name: debug value: "false" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: DEBUG @@ -655,7 +655,7 @@ spec: - name: output_file value: "/results/resourcelist.{{inputs.parameters.rand_str}}.yaml" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: INFILE @@ -717,7 +717,7 @@ spec: - name: output_file value: "/results/resourcelist.{{inputs.parameters.rand_str}}.yaml" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: INFILE @@ -774,7 +774,7 @@ spec: - name: output_file value: "/results/resourcelist.{{inputs.parameters.rand_str}}.yaml" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: INFILE @@ -836,7 +836,7 @@ spec: - name: output_file value: "/results/resourcelist.{{inputs.parameters.rand_str}}.yaml" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: INFILE @@ -1044,7 +1044,7 @@ spec: - name: output_file value: "/results/resourcelist.{{inputs.parameters.rand_str}}.yaml" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: INFILE @@ -1102,7 +1102,7 @@ spec: - name: output_file value: "/results/manifest.{{inputs.parameters.rand_str}}.yaml" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: INSTREAM @@ -1162,7 +1162,7 @@ spec: - name: output_file value: "/results/manifest.{{inputs.parameters.rand_str}}.yaml" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: INSTREAM diff --git a/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/nodegroup-management-wft.yaml b/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/nodegroup-management-wft.yaml index 9746478ae..e2ae29c3a 100644 --- a/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/nodegroup-management-wft.yaml +++ b/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/nodegroup-management-wft.yaml @@ -78,7 +78,7 @@ spec: value: "false" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: PRIVATE_KEY_NEW_CLUSTER @@ -172,7 +172,7 @@ spec: value: "false" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: PRIVATE_KEY_NEW_CLUSTER @@ -240,7 +240,7 @@ spec: value: "{{inputs.parameters.fleet_repo_dir}}/{{inputs.parameters.project_name}}/managed-resources/_management" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always command: ["/app/scripts/entrypoint.sh"] args: diff --git a/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/oka-management-wft.yaml b/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/oka-management-wft.yaml index 28a628ecc..fd2ef6789 100644 --- a/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/oka-management-wft.yaml +++ b/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/oka-management-wft.yaml @@ -52,7 +52,7 @@ spec: value: "/oka" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: DEBUG @@ -113,7 +113,7 @@ spec: value: "/oka" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: DEBUG @@ -167,7 +167,7 @@ spec: value: "sw-catalogs-osm" container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always env: - name: DEBUG diff --git a/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/profile-management-wft.yaml b/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/profile-management-wft.yaml index 4a1a9d703..b2a28d5a9 100644 --- a/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/profile-management-wft.yaml +++ b/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/building-blocks/profile-management-wft.yaml @@ -48,7 +48,7 @@ spec: persistentVolumeClaim: claimName: '{{inputs.parameters.fleet_volume_name}}' container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always volumeMounts: - name: fleet-repo-volume @@ -91,7 +91,7 @@ spec: persistentVolumeClaim: claimName: '{{inputs.parameters.fleet_volume_name}}' container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always volumeMounts: - name: fleet-repo-volume @@ -133,7 +133,7 @@ spec: persistentVolumeClaim: claimName: '{{inputs.parameters.fleet_volume_name}}' container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always volumeMounts: - name: fleet-repo-volume @@ -176,7 +176,7 @@ spec: persistentVolumeClaim: claimName: '{{inputs.parameters.fleet_volume_name}}' container: - image: opensourcemano/osm-krm-functions:testing-daily + image: opensourcemano/osm-krm-functions:releasenineteen-daily # imagePullPolicy: Always volumeMounts: - name: fleet-repo-volume diff --git a/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/canned-operations/full-app-management-wft.yaml b/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/canned-operations/full-app-management-wft.yaml index 6ebb38d97..990da893c 100644 --- a/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/canned-operations/full-app-management-wft.yaml +++ b/installers/flux/templates/sw-catalogs/infra-configs/osm-workflows/templates/wf-templates/canned-operations/full-app-management-wft.yaml @@ -89,7 +89,7 @@ spec: Repository for the OSM SDK container image. Default is the standardized OSM SDK operations image that provides consistent behavior across workflows. - name: osm_sdk_image_tag - value: "testing-daily" + value: "releasenineteen-daily" description: | Tag for the OSM SDK container image. Default is '24h' which provides a stable, time-limited image for workflow execution. diff --git a/installers/full_install_osm.sh b/installers/full_install_osm.sh index 299f3dec5..71a9e9d81 100755 --- a/installers/full_install_osm.sh +++ b/installers/full_install_osm.sh @@ -151,7 +151,7 @@ done # Installation starts here # Get README and create OSM_TRACK_INSTALLATION_ID -curl -s https://osm-download.etsi.org/ftp/osm-18.0-eighteen/README.txt > /dev/null 2>&1 +curl -s https://osm-download.etsi.org/ftp/osm-19.0-nineteen/README.txt > /dev/null 2>&1 export OSM_TRACK_INSTALLATION_ID="$(date +%s)-$(head /dev/urandom | tr -dc A-Za-z0-9 | head -c 16)" # Get OS info to be tracked @@ -237,7 +237,7 @@ echo -e "Adding local K8s cluster _system-osm-k8s to OSM ..." $OSM_DEVOPS/installers/50-provision-osm.sh || FATAL_TRACK provision-osm "50-provision-osm.sh failed" track provisionosm provisionosm_ok -curl -s https://osm-download.etsi.org/ftp/osm-18.0-eighteen/README2.txt > /dev/null 2>&1 +curl -s https://osm-download.etsi.org/ftp/osm-19.0-nineteen/README2.txt > /dev/null 2>&1 track end echo "Credentials stored under ${CREDENTIALS_DIR}" diff --git a/installers/helm/osm/values.yaml b/installers/helm/osm/values.yaml index bc8ddfd8d..0e4f1ebd9 100644 --- a/installers/helm/osm/values.yaml +++ b/installers/helm/osm/values.yaml @@ -27,7 +27,7 @@ global: repositoryBase: docker.io/opensourcemano pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. - tag: "testing-daily" + tag: "releasenineteen-daily" imagePullSecrets: [] nameOverride: "" @@ -102,7 +102,7 @@ airflow: worker_concurrency: 2 dags_folder: "/home/airflow/.local/lib/python3.10/site-packages/osm_ngsa" defaultAirflowRepository: opensourcemano/airflow - defaultAirflowTag: "testing-daily" + defaultAirflowTag: "releasenineteen-daily" executor: LocalExecutor extraEnv: | - name: AIRFLOW__API__AUTH_BACKENDS @@ -312,7 +312,7 @@ keystone: port: 5000 image: {} # repository: opensourcemano/keystone - # tag: "testing-daily" + # tag: "releasenineteen-daily" # replicaCount: 1 useOsmSecret: true # secretName: "keystone-secret" @@ -322,7 +322,7 @@ lcm: logLevel: DEBUG image: {} # repository: opensourcemano/lcm - # tag: "testing-daily" + # tag: "releasenineteen-daily" # replicaCount: 1 useOsmSecret: true # secretName: "lcm-secret" @@ -338,7 +338,7 @@ mon: # logLevel: DEBUG image: {} # repository: opensourcemano/mon - # tag: "testing-daily" + # tag: "releasenineteen-daily" # replicaCount: 1 useOsmSecret: true # secretName: "mon-secret" @@ -386,7 +386,7 @@ nbi: # nodePort: 9999 image: {} # repository: opensourcemano/nbi - # tag: "testing-daily" + # tag: "releasenineteen-daily" # replicaCount: 1 useOsmSecret: true # secretName: "nbi-secret" @@ -411,7 +411,7 @@ ngui: # host: .nip.io image: {} # repository: opensourcemano/ng-ui - # tag: "testing-daily" + # tag: "releasenineteen-daily" # replicaCount: 1 prometheus: @@ -451,7 +451,7 @@ prometheus: # readOnlyRootFilesystem: true allowPrivilegeEscalation: false # runAsNonRoot: true - image: opensourcemano/prometheus:testing-daily + image: opensourcemano/prometheus:releasenineteen-daily imagePullPolicy: IfNotPresent command: ["/bin/sh", "-c"] args: ["sleep 50; python -u ./app.py"] @@ -654,7 +654,7 @@ ro: port: 9090 image: {} # repository: opensourcemano/ro - # tag: "testing-daily" + # tag: "releasenineteen-daily" # replicaCount: 1 useOsmSecret: true # secretName: "ro-secret" @@ -671,7 +671,7 @@ webhookTranslator: # replicaCount: 1 image: {} # repository: opensourcemano/webhook - # tag: "testing-daily" + # tag: "releasenineteen-daily" ingress: {} # host: webhook..nip.io # replicaCount: 1 diff --git a/installers/install_osm.sh b/installers/install_osm.sh index e654d6bfc..28d36f339 100755 --- a/installers/install_osm.sh +++ b/installers/install_osm.sh @@ -13,8 +13,8 @@ # limitations under the License. # -DEVOPS_GERRIT_REFSPEC="master" -DOCKER_TAG="testing-daily" +DEVOPS_GERRIT_REFSPEC="v19.0" +DOCKER_TAG="19" function usage(){ [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function diff --git a/jenkins/ci-pipelines/ci_stage_3.groovy b/jenkins/ci-pipelines/ci_stage_3.groovy index 8ce037989..cef2d852d 100644 --- a/jenkins/ci-pipelines/ci_stage_3.groovy +++ b/jenkins/ci-pipelines/ci_stage_3.groovy @@ -30,7 +30,7 @@ properties([ string(defaultValue: 'OSMETSI', description: '', name: 'GPG_KEY_NAME'), string(defaultValue: 'artifactory-osm', description: '', name: 'ARTIFACTORY_SERVER'), string(defaultValue: 'osm-stage_4', description: '', name: 'DOWNSTREAM_STAGE_NAME'), - string(defaultValue: 'testing-daily', description: '', name: 'DOCKER_TAG'), + string(defaultValue: 'releasenineteen-daily', description: '', name: 'DOCKER_TAG'), string(defaultValue: 'ubuntu24.04', description: '', name: 'OPENSTACK_BASE_IMAGE'), string(defaultValue: 'osm.sanity', description: '', name: 'OPENSTACK_OSM_FLAVOR'), booleanParam(defaultValue: false, description: '', name: 'TRY_OLD_SERVICE_ASSURANCE'), -- 2.25.1