From 5171f276463a1a784005bee7e6404e4582758b3d Mon Sep 17 00:00:00 2001 From: vavuthu Date: Thu, 9 Nov 2023 12:14:33 +0530 Subject: [PATCH] Defaulting ocs-ci to ODF 4.15 Signed-off-by: vavuthu --- ocs_ci/framework/conf/default_config.yaml | 20 ++++++++++---------- setup.py | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/ocs_ci/framework/conf/default_config.yaml b/ocs_ci/framework/conf/default_config.yaml index 7555c049eaa..708f88a1b8c 100644 --- a/ocs_ci/framework/conf/default_config.yaml +++ b/ocs_ci/framework/conf/default_config.yaml @@ -19,7 +19,7 @@ RUN: cli_params: {} # this will be filled with CLI parameters data # If the client version ends with .nightly, the version will be exposed # to the latest accepted OCP nightly build version - client_version: '4.14.0-0.nightly' + client_version: '4.15.0-0.nightly' bin_dir: './bin' google_api_secret: '~/.ocs-ci/google_api_secret.json' # Following chrome params are for openshift console UI testing @@ -49,18 +49,18 @@ DEPLOYMENT: # if the installer version ends with .nightly, the version will be exposed # to the latest accepted OCP nightly build version. You can also use the # specific build version like: "4.2.0-0.nightly-2019-08-06-195545" - installer_version: "4.14.0-0.nightly" + installer_version: "4.15.0-0.nightly" force_download_installer: True force_download_client: True skip_download_client: False - default_latest_tag: 'latest-stable-4.14' + default_latest_tag: 'latest-stable-4.15' # define if ceph is setup as external mode, default is false external_mode: False # You can overwrite csv channel version by following parameter - ocs_csv_channel: "stable-4.14" + ocs_csv_channel: "stable-4.15" # you can overwrite the image for ocs operator catalog source by following parameter: # ocs_registry_image: "quay.io/rhceph-dev/ocs-olm-operator:4.2-32.9b6c93e.master" - default_ocs_registry_image: "quay.io/rhceph-dev/ocs-registry:latest-4.14" + default_ocs_registry_image: "quay.io/rhceph-dev/ocs-registry:latest-4.15" ocs_operator_nodes_to_label: 3 # This is described as a WA for minimal configuration 3/3 worker/master # nodes. See: https://github.com/openshift/ocs-operator @@ -132,7 +132,7 @@ REPORTING: default_ocs_must_gather_image: "quay.io/rhceph-dev/ocs-must-gather" odf_live_must_gather_image: "registry.redhat.io/odf4/odf-must-gather-rhel9" odf_live_must_gather_image_pre_4_13: "registry.redhat.io/odf4/ocs-must-gather-rhel8" - default_ocs_must_gather_latest_tag: 'latest-4.14' + default_ocs_must_gather_latest_tag: 'latest-4.15' gather_on_deploy_failure: true collect_logs_on_success_run: False rp_client_log_level: "ERROR" @@ -160,13 +160,13 @@ ENV_DATA: worker_replicas: 3 skip_ocp_deployment: false skip_ocs_deployment: false - ocs_version: '4.14' + ocs_version: '4.15' prometheus_version: "4.10.0" # uncomment to use custom directory for storing measurement data related to # monitoring tests, otherwise generate temporary directory for each test run # measurement_dir: '/tmp/ocs_ci_monitoring_measurement/' # Default RHCOS image to be used for VmWare deployment - vm_template: 'rhcos-414.92.202303281555-0-vmware.x86_64' + vm_template: 'rhcos-415.92.202309142014-0-vmware.x86_64' # minimal write speed of fio as used in workload_fio_storageutilization # fixtures, which is used to compute timeout of the write job (so that # when actual write speed of the operation is smaller than this value, the @@ -267,10 +267,10 @@ ENV_DATA: # This section is related to upgrade UPGRADE: upgrade_to_latest: true - ocp_channel: "stable-4.14" + ocp_channel: "stable-4.15" ocp_upgrade_path: "quay.io/openshift-release-dev/ocp-release" ocp_arch: "x86_64" - upgrade_logging_channel: "4.14" + upgrade_logging_channel: "4.15" # This section stores secret and uploaded from home dir or s3 # for entry into this section, please email ecosystem team diff --git a/setup.py b/setup.py index d6fa14abec6..408223fa30b 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name="ocs-ci", - version="4.14.0", + version="4.15.0", description="OCS CI tests that run in jenkins and standalone mode using aws provider", author="OCS QE", author_email="ocs-ci@redhat.com",