Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ objects:
exit 1
fi

TF_LOG=debug openshift-install --dir=/tmp/artifacts/installer create cluster &
TF_LOG=debug openshift-install --dir=/tmp/artifacts/installer create cluster 2>&1 | grep -v password &
wait "$!"

echo "##################### start cluster metadata.json ##########################"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ objects:
EOF
fi

TF_LOG=debug openshift-install --dir=/tmp/artifacts/installer create cluster &
TF_LOG=debug openshift-install --dir=/tmp/artifacts/installer create cluster 2>&1 | grep -v password &
wait "$!"

# Performs cleanup of all created resources
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ objects:
echo "${CLUSTER_NETWORK_MANIFEST}" > /tmp/artifacts/installer/manifests/cluster-network-03-config.yml
fi

TF_LOG=debug openshift-install --dir=/tmp/artifacts/installer create cluster &
TF_LOG=debug openshift-install --dir=/tmp/artifacts/installer create cluster 2>&1 | grep -v password &
wait "$!"

# Performs cleanup of all created resources
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ objects:
update_image_registry &

echo "Completing UPI setup"
openshift-install --dir=/tmp/artifacts/installer wait-for install-complete &
openshift-install --dir=/tmp/artifacts/installer wait-for install-complete 2>&1 | grep -v password &
wait "$!"

# Performs cleanup of all created resources
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ objects:
echo "Forcing OpenShiftSDN by modifying manifests"
sed -i -e 's/networkType: .*$/networkType: OpenShiftSDN/g' /tmp/artifacts/installer/manifests/cluster-network-02-config.yml
fi
TF_LOG=debug openshift-install --dir=/tmp/artifacts/installer create cluster --log-level=debug &
TF_LOG=debug openshift-install --dir=/tmp/artifacts/installer create cluster --log-level=debug 2>&1 | grep -v password &
wait "$!"

INGRESS_PORT=$(openstack port list --format value -c Name | awk "/${CLUSTER_NAME}.*-ingress-port/ {print}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ objects:

# What we're doing here is we generate manifests first and force that OpenShift SDN is configured.
TF_LOG=debug openshift-install --dir=/tmp/artifacts/installer create manifests --log-level=debug
TF_LOG=debug openshift-install --dir=/tmp/artifacts/installer create cluster --log-level=debug &
TF_LOG=debug openshift-install --dir=/tmp/artifacts/installer create cluster --log-level=debug 2>&1 | grep -v password &
wait "$!"
install_exit_status=$?
export KUBECONFIG=/tmp/artifacts/installer/auth/kubeconfig
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ objects:
echo "${CLUSTER_NETWORK_MANIFEST}" > /tmp/artifacts/installer/manifests/cluster-network-03-config.yml
fi

TF_LOG=debug openshift-install --dir=/tmp/artifacts/installer create cluster &
TF_LOG=debug openshift-install --dir=/tmp/artifacts/installer create cluster 2>&1 | grep -v password &
wait "$!"

# Performs cleanup of all created resources
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1817,7 +1817,7 @@ objects:
fi

echo "Completing UPI setup"
openshift-install --dir=/tmp/artifacts/installer wait-for install-complete &
openshift-install --dir=/tmp/artifacts/installer wait-for install-complete 2>&1 | grep -v password &
wait "$!"
touch /tmp/install-complete

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1034,7 +1034,7 @@ objects:
fi

echo "Completing UPI setup"
openshift-install --dir=/tmp/artifacts/installer wait-for install-complete &
openshift-install --dir=/tmp/artifacts/installer wait-for install-complete 2>&1 | grep -v password &
wait "$!"
touch /tmp/install-complete

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ objects:
exit 1
fi

TF_LOG=debug openshift-install --dir=/tmp/artifacts/installer create cluster &
TF_LOG=debug openshift-install --dir=/tmp/artifacts/installer create cluster 2>&1 | grep -v password &
wait "$!"

# Runs scale up playbook
Expand Down