Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci-operator/templates/openshift: Drop --log-level=debug #2453

Merged
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 @@ -360,7 +360,7 @@ objects:
exit 1
fi

/bin/openshift-install --dir=/tmp/artifacts/installer --log-level=debug create cluster &
/bin/openshift-install --dir=/tmp/artifacts/installer create cluster &
wait "$!"

# Performs cleanup of all created resources
Expand Down Expand Up @@ -452,7 +452,7 @@ objects:

echo "Deprovisioning cluster ..."
export AWS_SHARED_CREDENTIALS_FILE=/etc/openshift-installer/.awscred
openshift-install --dir /tmp/artifacts/installer --log-level debug destroy cluster
openshift-install --dir /tmp/artifacts/installer destroy cluster
}

trap 'teardown' EXIT
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ objects:
exit 1
fi

/bin/openshift-install --dir=/tmp/artifacts/installer --log-level=debug create cluster &
/bin/openshift-install --dir=/tmp/artifacts/installer create cluster &
wait "$!"

# Performs cleanup of all created resources
Expand Down Expand Up @@ -424,7 +424,7 @@ objects:

echo "Deprovisioning cluster ..."
export AWS_SHARED_CREDENTIALS_FILE=/etc/openshift-installer/.awscred
openshift-install --dir /tmp/artifacts/installer --log-level debug destroy cluster
openshift-install --dir /tmp/artifacts/installer destroy cluster
}

trap 'teardown' EXIT
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ objects:
fi
# Need to copy install-config.yml as it gets consumed.
cp /tmp/artifacts/installer/install-config.yml /tmp/artifacts/installer/install-config-ansible.yml
/bin/openshift-install --dir=/tmp/artifacts/installer --log-level=debug create ignition-configs &
/bin/openshift-install --dir=/tmp/artifacts/installer create ignition-configs &
wait "$!"

# Runs an install
Expand Down