Enable cephfs tests
Cephfs tests were disabled in order to merge https://review.opendev.org/695568 due to gate failures that were blocking it. CephFS isn't used in openstack-helm-infra, so it wasn't required for that work. This change re-enables the cephfs tests so we can work through any issues that are causing further failures. Since the the issue got fixed in 14.2.8 , upgrading all daemons to 14.2.8. (https://tracker.ceph.com/issues/43770) Change-Id: I376d39b7ee00ccb1ab8046b58f92b19a822272e1
This commit is contained in:
parent
fa0876750a
commit
9057c770a6
@ -32,11 +32,9 @@ function check_cluster_status() {
|
|||||||
|
|
||||||
function check_osd_count() {
|
function check_osd_count() {
|
||||||
echo "#### Start: Checking OSD count ####"
|
echo "#### Start: Checking OSD count ####"
|
||||||
osd_stat_output=$(ceph osd stat -f json-pretty)
|
num_osd=$(ceph osd stat | tr ' ' '\n' | grep -x -E '[0-9]+' | head -n1)
|
||||||
|
num_in_osds=$(ceph osd stat | tr ' ' '\n' | grep -x -E '[0-9]+' | tail -n1)
|
||||||
num_osd=$(echo $osd_stat_output | jq .num_osds)
|
num_up_osds=$(ceph osd stat | tr ' ' '\n' | grep -x -E '[0-9]+' | head -n2 | tail -n1)
|
||||||
num_in_osds=$(echo $osd_stat_output | jq .num_in_osds)
|
|
||||||
num_up_osds=$(echo $osd_stat_output | jq .num_up_osds)
|
|
||||||
if [ $EXPECTED_OSDS == 1 ]; then
|
if [ $EXPECTED_OSDS == 1 ]; then
|
||||||
MIN_EXPECTED_OSDS=$EXPECTED_OSDS
|
MIN_EXPECTED_OSDS=$EXPECTED_OSDS
|
||||||
else
|
else
|
||||||
|
@ -25,11 +25,11 @@ release_group: null
|
|||||||
images:
|
images:
|
||||||
pull_policy: IfNotPresent
|
pull_policy: IfNotPresent
|
||||||
tags:
|
tags:
|
||||||
ceph_bootstrap: 'docker.io/openstackhelm/ceph-daemon:ubuntu_bionic-20200217'
|
ceph_bootstrap: 'docker.io/openstackhelm/ceph-daemon:ubuntu_bionic-20200416'
|
||||||
ceph_config_helper: 'docker.io/openstackhelm/ceph-config-helper:ubuntu_bionic-20200217'
|
ceph_config_helper: 'docker.io/openstackhelm/ceph-config-helper:ubuntu_bionic-20200416'
|
||||||
ceph_mds: 'docker.io/openstackhelm/ceph-daemon:ubuntu_bionic-20200217'
|
ceph_mds: 'docker.io/openstackhelm/ceph-daemon:ubuntu_bionic-20200416'
|
||||||
ceph_mgr: 'docker.io/openstackhelm/ceph-daemon:ubuntu_bionic-20200217'
|
ceph_mgr: 'docker.io/openstackhelm/ceph-daemon:ubuntu_bionic-20200416'
|
||||||
ceph_rbd_pool: 'docker.io/openstackhelm/ceph-config-helper:ubuntu_bionic-20200217'
|
ceph_rbd_pool: 'docker.io/openstackhelm/ceph-config-helper:ubuntu_bionic-20200416'
|
||||||
dep_check: 'quay.io/airshipit/kubernetes-entrypoint:v1.0.0'
|
dep_check: 'quay.io/airshipit/kubernetes-entrypoint:v1.0.0'
|
||||||
image_repo_sync: 'docker.io/docker:17.07.0'
|
image_repo_sync: 'docker.io/docker:17.07.0'
|
||||||
local_registry:
|
local_registry:
|
||||||
|
@ -24,10 +24,10 @@ deployment:
|
|||||||
images:
|
images:
|
||||||
pull_policy: IfNotPresent
|
pull_policy: IfNotPresent
|
||||||
tags:
|
tags:
|
||||||
ceph_bootstrap: 'docker.io/openstackhelm/ceph-daemon:ubuntu_bionic-20200217'
|
ceph_bootstrap: 'docker.io/openstackhelm/ceph-daemon:ubuntu_bionic-20200416'
|
||||||
ceph_config_helper: 'docker.io/openstackhelm/ceph-config-helper:ubuntu_bionic-20200217'
|
ceph_config_helper: 'docker.io/openstackhelm/ceph-config-helper:ubuntu_bionic-20200416'
|
||||||
ceph_mon: 'docker.io/openstackhelm/ceph-daemon:ubuntu_bionic-20200217'
|
ceph_mon: 'docker.io/openstackhelm/ceph-daemon:ubuntu_bionic-20200416'
|
||||||
ceph_mon_check: 'docker.io/openstackhelm/ceph-config-helper:ubuntu_bionic-20200217'
|
ceph_mon_check: 'docker.io/openstackhelm/ceph-config-helper:ubuntu_bionic-20200416'
|
||||||
dep_check: 'quay.io/airshipit/kubernetes-entrypoint:v1.0.0'
|
dep_check: 'quay.io/airshipit/kubernetes-entrypoint:v1.0.0'
|
||||||
image_repo_sync: 'docker.io/docker:17.07.0'
|
image_repo_sync: 'docker.io/docker:17.07.0'
|
||||||
local_registry:
|
local_registry:
|
||||||
|
@ -20,10 +20,9 @@ set -ex
|
|||||||
|
|
||||||
function check_osd_count() {
|
function check_osd_count() {
|
||||||
echo "#### Start: Checking OSD count ####"
|
echo "#### Start: Checking OSD count ####"
|
||||||
osd_stat_output=$(ceph osd stat -f json-pretty)
|
num_osd=$(ceph osd stat | tr ' ' '\n' | grep -x -E '[0-9]+' | head -n1)
|
||||||
num_osd=$(echo $osd_stat_output | jq .num_osds)
|
num_in_osds=$(ceph osd stat | tr ' ' '\n' | grep -x -E '[0-9]+' | tail -n1)
|
||||||
num_in_osds=$(echo $osd_stat_output | jq .num_in_osds)
|
num_up_osds=$(ceph osd stat | tr ' ' '\n' | grep -x -E '[0-9]+' | head -n2 | tail -n1)
|
||||||
num_up_osds=$(echo $osd_stat_output | jq .num_up_osds)
|
|
||||||
|
|
||||||
if [ ${num_osd} -eq 1 ]; then
|
if [ ${num_osd} -eq 1 ]; then
|
||||||
MIN_OSDS=${num_osd}
|
MIN_OSDS=${num_osd}
|
||||||
|
@ -20,9 +20,9 @@
|
|||||||
images:
|
images:
|
||||||
pull_policy: IfNotPresent
|
pull_policy: IfNotPresent
|
||||||
tags:
|
tags:
|
||||||
ceph_osd: 'docker.io/openstackhelm/ceph-daemon:ubuntu_bionic-20200217'
|
ceph_osd: 'docker.io/openstackhelm/ceph-daemon:ubuntu_bionic-20200416'
|
||||||
ceph_bootstrap: 'docker.io/openstackhelm/ceph-daemon:ubuntu_bionic-20200217'
|
ceph_bootstrap: 'docker.io/openstackhelm/ceph-daemon:ubuntu_bionic-20200416'
|
||||||
ceph_config_helper: 'docker.io/openstackhelm/ceph-config-helper:ubuntu_bionic-20200217'
|
ceph_config_helper: 'docker.io/openstackhelm/ceph-config-helper:ubuntu_bionic-20200416'
|
||||||
dep_check: 'quay.io/airshipit/kubernetes-entrypoint:v1.0.0'
|
dep_check: 'quay.io/airshipit/kubernetes-entrypoint:v1.0.0'
|
||||||
image_repo_sync: 'docker.io/docker:17.07.0'
|
image_repo_sync: 'docker.io/docker:17.07.0'
|
||||||
local_registry:
|
local_registry:
|
||||||
|
@ -28,10 +28,10 @@ release_group: null
|
|||||||
images:
|
images:
|
||||||
pull_policy: IfNotPresent
|
pull_policy: IfNotPresent
|
||||||
tags:
|
tags:
|
||||||
ceph_bootstrap: 'docker.io/openstackhelm/ceph-daemon:ubuntu_bionic-20200217'
|
ceph_bootstrap: 'docker.io/openstackhelm/ceph-daemon:ubuntu_bionic-20200416'
|
||||||
ceph_cephfs_provisioner: 'docker.io/openstackhelm/ceph-cephfs-provisioner:ubuntu_bionic-20200217'
|
ceph_cephfs_provisioner: 'docker.io/openstackhelm/ceph-cephfs-provisioner:ubuntu_bionic-20200416'
|
||||||
ceph_config_helper: 'docker.io/openstackhelm/ceph-config-helper:ubuntu_bionic-20200217'
|
ceph_config_helper: 'docker.io/openstackhelm/ceph-config-helper:ubuntu_bionic-20200416'
|
||||||
ceph_rbd_provisioner: 'docker.io/openstackhelm/ceph-rbd-provisioner:ubuntu_bionic-20200217'
|
ceph_rbd_provisioner: 'docker.io/openstackhelm/ceph-rbd-provisioner:ubuntu_bionic-20200416'
|
||||||
dep_check: 'quay.io/airshipit/kubernetes-entrypoint:v1.0.0'
|
dep_check: 'quay.io/airshipit/kubernetes-entrypoint:v1.0.0'
|
||||||
image_repo_sync: 'docker.io/docker:17.07.0'
|
image_repo_sync: 'docker.io/docker:17.07.0'
|
||||||
local_registry:
|
local_registry:
|
||||||
|
@ -25,12 +25,12 @@ release_group: null
|
|||||||
images:
|
images:
|
||||||
pull_policy: IfNotPresent
|
pull_policy: IfNotPresent
|
||||||
tags:
|
tags:
|
||||||
ceph_bootstrap: 'docker.io/openstackhelm/ceph-daemon:ubuntu_bionic-20200217'
|
ceph_bootstrap: 'docker.io/openstackhelm/ceph-daemon:ubuntu_bionic-20200416'
|
||||||
ceph_config_helper: 'docker.io/openstackhelm/ceph-config-helper:ubuntu_bionic-20200217'
|
ceph_config_helper: 'docker.io/openstackhelm/ceph-config-helper:ubuntu_bionic-20200416'
|
||||||
ceph_rgw: 'docker.io/openstackhelm/ceph-daemon:ubuntu_bionic-20200217'
|
ceph_rgw: 'docker.io/openstackhelm/ceph-daemon:ubuntu_bionic-20200416'
|
||||||
dep_check: 'quay.io/airshipit/kubernetes-entrypoint:v1.0.0'
|
dep_check: 'quay.io/airshipit/kubernetes-entrypoint:v1.0.0'
|
||||||
image_repo_sync: 'docker.io/docker:17.07.0'
|
image_repo_sync: 'docker.io/docker:17.07.0'
|
||||||
rgw_s3_admin: 'docker.io/openstackhelm/ceph-config-helper:ubuntu_bionic-20200217'
|
rgw_s3_admin: 'docker.io/openstackhelm/ceph-config-helper:ubuntu_bionic-20200416'
|
||||||
ks_endpoints: 'docker.io/openstackhelm/heat:newton-ubuntu_xenial'
|
ks_endpoints: 'docker.io/openstackhelm/heat:newton-ubuntu_xenial'
|
||||||
ks_service: 'docker.io/openstackhelm/heat:newton-ubuntu_xenial'
|
ks_service: 'docker.io/openstackhelm/heat:newton-ubuntu_xenial'
|
||||||
ks_user: 'docker.io/openstackhelm/heat:newton-ubuntu_xenial'
|
ks_user: 'docker.io/openstackhelm/heat:newton-ubuntu_xenial'
|
||||||
|
@ -40,9 +40,6 @@ bootstrap:
|
|||||||
conf:
|
conf:
|
||||||
rgw_ks:
|
rgw_ks:
|
||||||
enabled: false
|
enabled: false
|
||||||
storageclass:
|
|
||||||
cephfs:
|
|
||||||
provision_storage_class: false
|
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
: ${OSH_INFRA_EXTRA_HELM_ARGS_CEPH_NS_ACTIVATE:="$(./tools/deployment/common/get-values-overrides.sh ceph-provisioners)"}
|
: ${OSH_INFRA_EXTRA_HELM_ARGS_CEPH_NS_ACTIVATE:="$(./tools/deployment/common/get-values-overrides.sh ceph-provisioners)"}
|
||||||
|
@ -40,9 +40,6 @@ bootstrap:
|
|||||||
conf:
|
conf:
|
||||||
rgw_ks:
|
rgw_ks:
|
||||||
enabled: false
|
enabled: false
|
||||||
storageclass:
|
|
||||||
cephfs:
|
|
||||||
provision_storage_class: false
|
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
: ${OSH_EXTRA_HELM_ARGS_CEPH_NS_ACTIVATE:="$(./tools/deployment/common/get-values-overrides.sh ceph-provisioners)"}
|
: ${OSH_EXTRA_HELM_ARGS_CEPH_NS_ACTIVATE:="$(./tools/deployment/common/get-values-overrides.sh ceph-provisioners)"}
|
||||||
|
Loading…
Reference in New Issue
Block a user