unsupported alert for robot selection
This commit is contained in:
parent
1b953c8cd6
commit
c8b931609e
4 changed files with 16 additions and 6 deletions
|
@ -35,11 +35,17 @@
|
|||
<div class="trigger-option-section" ng-show="currentView == 'analyzed'">
|
||||
|
||||
<!-- Messaging -->
|
||||
<div class="alert alert-danger" ng-if="pullInfo.analysis.status == 'error' && !(trigger.service == 'custom')">
|
||||
<div class="alert alert-danger" ng-if="pullInfo.analysis.status == 'error'">
|
||||
{{ pullInfo.analysis.message }}
|
||||
</div>
|
||||
<div class="alert alert-warning" ng-if="pullInfo.analysis.status == 'warning'">
|
||||
{{ pullRequirements.message }}
|
||||
{{ pullInfo.analysis.message }}
|
||||
</div>
|
||||
<div class="alert alert-info" ng-if="pullInfo.analysis.status == 'notimplemented'">
|
||||
<p>
|
||||
For {{ TriggerService.getTitle(trigger.service) }} triggers, we are unable to determine dependencies automatically.
|
||||
If the git repository being built depends on a private base image, you must manually select a robot account with the proper permissions.
|
||||
</p>
|
||||
</div>
|
||||
<div class="dockerfile-found" ng-if="pullInfo.analysis.is_public === false">
|
||||
<div class="dockerfile-found-content">
|
||||
|
@ -60,7 +66,6 @@
|
|||
</div>
|
||||
|
||||
<div style="margin-bottom: 12px">
|
||||
<p>Because Dockerfiles may depend on other private images, you may need to use a robot account to build this repository.</p>
|
||||
Please select the credentials to use when pulling the base image:
|
||||
</div>
|
||||
<div ng-if="!isNamespaceAdmin(repository.namespace)" style="color: #aaa;">
|
||||
|
|
Reference in a new issue