Skip to content
Merged
Changes from all commits
Commits
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
8 changes: 3 additions & 5 deletions utils.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,9 @@ function create_cluster() {

find assets/generated -name '*.yaml' -exec cp -f {} ${assets_dir}/openshift \;

if [[ "${IP_STACK}" == "v4v6" ]]; then
# The IPv6DualStack feature is not on by default, because it doesn't
# fully work yet. If we're running a dual-stack test environment,
# we will turn on the IPv6DualStackNoUpgrade feature set for testing
# purposes.
if [[ "${IP_STACK}" == "v4v6" && "$OPENSHIFT_VERSION" =~ 4.[67] ]]; then
# The IPv6DualStack feature is not on by default in 4.6 and 4.7 and needs
# to be manually enabled
cp assets/ipv6-dual-stack-no-upgrade.yaml ${assets_dir}/openshift/.
fi

Expand Down