Skip to content
This repository has been archived by the owner on Aug 16, 2023. It is now read-only.

RHODS: update RHODS version + various updates #400

Merged
merged 16 commits into from
Jun 30, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
testing: ods: propage 'set -e' to subshells
  • Loading branch information
kpouget committed Jun 29, 2022
commit c5abafe15dd1d07806bee3960c76bf7f23e0ee49
1 change: 1 addition & 0 deletions testing/ods/clusters.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
set -o pipefail
set -o errexit
set -o nounset
set -o errtrace
set -x

THIS_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
Expand Down
1 change: 1 addition & 0 deletions testing/ods/jh-at-scale.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
set -o errexit
set -o pipefail
set -o nounset
set -o errtrace
set -x

THIS_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
Expand Down
2 changes: 2 additions & 0 deletions testing/ods/ocp_cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
set -o pipefail
set -o errexit
set -o nounset
set -o errtrace
set -x

THIS_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
source "$THIS_DIR/common.sh"
Expand Down
2 changes: 1 addition & 1 deletion testing/ods/osd_cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -o pipefail
set -o errexit
set -o nounset

set -o errtrace

THIS_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
source "$THIS_DIR/common.sh"
Expand Down