Skip to content

Commit

Permalink
clean up install log output
Browse files Browse the repository at this point in the history
  • Loading branch information
bparees committed Jan 14, 2020
1 parent 97d3660 commit 4847cb5
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
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

0 comments on commit 4847cb5

Please sign in to comment.