initial import for Open Source 🎉
This commit is contained in:
parent
1898c361f3
commit
9c0dd3b722
2048 changed files with 218743 additions and 0 deletions
29
static/directives/build-log-error.html
Normal file
29
static/directives/build-log-error.html
Normal file
|
@ -0,0 +1,29 @@
|
|||
<div bindonce class="build-log-error-element">
|
||||
<!-- Errors -->
|
||||
<span class="error-message-container">
|
||||
<i class="fa fa-exclamation-triangle"></i>
|
||||
<!-- Local Pull issue -->
|
||||
<span bo-if="isPullError(error) && localPullInfo.isLocal">
|
||||
<span bo-if="!localPullInfo.username" class="error-message">
|
||||
Error 403: Could not pull private base image <a href="/repository/{{ localPullInfo.repo }}">{{ localPullInfo.repo }}</a> without robot account credentials. Please see
|
||||
<a href="http://docs.quay.io/issues/base-pull-issue.html" ng-safenewtab>Setting up build trigger credentials</a> for more information.
|
||||
</span>
|
||||
<span bo-if="localPullInfo.username" class="error-message">
|
||||
Error 403: Could not pull private base image <a href="/repository{{ localPullInfo.repo }}">{{ localPullInfo.repo }}</a> because robot account <strong>{{ localPullInfo.username}}</strong> does not have access. Please see
|
||||
<a href="http://docs.quay.io/issues/base-pull-issue.html" ng-safenewtab>Setting up build trigger credentials</a> for more information.
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<!-- Other issue -->
|
||||
<span bo-if="!isPullError(error) || !localPullInfo.isLocal"
|
||||
class="error-message" bo-text="error.message"></span>
|
||||
|
||||
<!-- Extended error information -->
|
||||
<div bo-if="getBaseError(error) && isSuperuser">
|
||||
Base Error Information: <pre>{{ getBaseError(entries) }}</pre>
|
||||
</div>
|
||||
<div bo-if="getInternalError(entries) && isSuperuser">
|
||||
Internal Error Information: <pre>{{ getInternalError(entries) }}</pre>
|
||||
</div>
|
||||
</span>
|
||||
</div>
|
Reference in a new issue