mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 15:59:41 +02:00
* feat(endpoints): create an associated endpoints selector * feat(schedules): remove edge specific explanations * refactor(schedule): replace multi-endpoint-selector * refactor(schedule): move controller to single file * refactor(endpoints): remove multi-endpoint-selector * feat(edge): rename host jobs to edge jobs * feat(edge-jobs): remove edge warning * refactor(edge-jobs): move schedule pages to edge * refactor(edge-jobs): mv views to edgeJobs * refactor(edge-jobs): rename edge jobs * refactor(edge-jobs): move services to edge * refactor(edge-jobs): move tasks datatable * fix(edge-jobs): fix import * fix(edge-jobs): use right services * feat(settings): adjust host management description * feat(edge-jobs): introduce interfaces and types * feat(edge-jobs): implement bolt service * refactor(edge-jobs): replace schedule routes * refactor(edge-job): replace Schedule service * refactor(edge-jobs): remove job_script_exec * refactor(host): remove jobs table * feat(edge-jobs): replace schedule * feat(edge-jobs): load file on inspect * fix(edge-job): parse cron correctly * feat(edge-jobs): show tasks * feat(host): rename tooltip * refactor(host): remove old components * refactor(main): remove schedule types * refactor(snapshot): replace job service with snapshot service * refactor(jobs): remove jobs form and datatable * feat(edge-jobs): create db migration * fix(main): start snapshot service with correct interval * feat(settings): change host tooltip * feat(edge-jobs): load endpoints * fix(edge-job): disable form submit when form is invalid * refactor(edge-compute): use const * refactor(edge-jobs): use generic controller * refactor(edge-jobs): replace $scope with controllerAs * refactor(edge-jobs): replace routes with components * refactor(edge-jobs): replace functions with classes * refactor(edge-jobs): use async/await * refactor(edge-jobs): rename functions * feat(edge-jobs): introduce beta panel * feat(edge-jobs): allow single character names * fix(snapshot): run snapshot in coroutine * feat(edge-jobs): add logs status * feat(filesystem): add edge job logs methods * feat(edge-jobs): intoduce edge jobs tasks api * feat(edge-jobs): remove schedule task model * fix(fs): build edge job task file path * fix(edge-jobs): update task meta * fix(edge-jobs): return a list of endpoints * feat(edge-jobs): update logs from agent * feat(edge-jobs): collect logs * feat(edge-jobs): rename url * feat(edge-jobs): refresh to same tab * feat(edge-jobs): remove old info * refactor(edge-jobs): rename script path json * fix(edge-job): save file before adding job * feat(edge-job): show retrieving logs label * feat(edge-job): replace cron with 5 places * refactor(edge-jobs): replace tasks with results * feat(edge-jobs): add auto refresh until logs are collected * feat(edge-jobs): fix column size * feat(edge-job): display editor * feat(edge-job): add name validation * feat(edge-job): set default time for 1 hour from now * feat(edge-job): add validation for cron format * feat(edge-job): add a note about timezone * fix(edge-job): replace regex * fix(edge-job): check for every minute cron * style(edge-jobs): add reference for cron regex * refactor(edge-jobs): rename migration name * refactor(edge-job): rename edge job response * refactor(snapshot): rename snapshot endpoint method * refactor(edge-jobs): move tasks handler to edgejobs * feat(security): introduce a middleware for edge compute operations * feat(edge-job): use edge compute middleware * feat(edge-groups): filter http actions based on edge setting * fix(security): return from edge bouncer if failed * feat(edge-stacks): filter http actions based on edge setting * feat(edge-groups): show error when failed to load groups * refactor(db): remove edge-jobs migration * refactor(migrator): remove unused dependency Co-authored-by: Anthony Lapenna <lapenna.anthony@gmail.com>
149 lines
5.5 KiB
HTML
149 lines
5.5 KiB
HTML
<form class="form-horizontal" name="EdgeGroupForm" ng-submit="$ctrl.formAction()">
|
|
<div class="form-group">
|
|
<label for="group_name" class="col-sm-3 col-lg-2 control-label text-left">
|
|
Name
|
|
</label>
|
|
<div class="col-sm-9 col-lg-10">
|
|
<input type="text" class="form-control" id="group_name" name="group_name" ng-model="$ctrl.model.Name" required auto-focus />
|
|
</div>
|
|
</div>
|
|
<div class="form-group" ng-show="EdgeGroupForm.group_name.$invalid">
|
|
<div class="col-sm-12 small text-warning">
|
|
<div ng-messages="EdgeGroupForm.group_name.$error">
|
|
<p ng-message="required">
|
|
<i class="fa fa-exclamation-triangle" aria-hidden="true"></i>
|
|
This field is required.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-sm-12 form-section-title">
|
|
Group type
|
|
</div>
|
|
<div class="form-group col-sm-12">
|
|
<div class="boxselector_wrapper">
|
|
<div class="boxselector">
|
|
<input type="radio" id="static-group" ng-model="$ctrl.model.Dynamic" ng-value="false" ng-checked="!$ctrl.model.Dynamic" />
|
|
<label for="static-group">
|
|
<div class="boxselector_header">
|
|
<i class="fa fa-list-ol" aria-hidden="true" style="margin-right: 2px;"></i>
|
|
Static
|
|
</div>
|
|
<p>Manually select Edge endpoints</p>
|
|
</label>
|
|
</div>
|
|
<div class="boxselector">
|
|
<input type="radio" id="dynamic-group" ng-model="$ctrl.model.Dynamic" ng-value="true" ng-checked="$ctrl.model.Dynamic" />
|
|
<label for="dynamic-group">
|
|
<div class="boxselector_header">
|
|
<i class="fa fa-tags" aria-hidden="true" style="margin-right: 2px;"></i>
|
|
Dynamic
|
|
</div>
|
|
<p>Automatically associate endpoints via tags</p>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- StaticGroup -->
|
|
<div ng-if="!$ctrl.model.Dynamic">
|
|
<div ng-if="!$ctrl.noEndpoints">
|
|
<!-- endpoints -->
|
|
<div class="col-sm-12 form-section-title">
|
|
Associated endpoints
|
|
</div>
|
|
<div class="form-group">
|
|
<associated-endpoints-selector
|
|
endpoint-ids="$ctrl.model.Endpoints"
|
|
tags="$ctrl.tags"
|
|
groups="$ctrl.groups"
|
|
has-backend-pagination="true"
|
|
|
|
on-associate="$ctrl.associateEndpoint"
|
|
on-dissociate="$ctrl.dissociateEndpoint"
|
|
></associated-endpoints-selector>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-group" ng-if="$ctrl.noEndpoints">
|
|
<div class="col-sm-12 small text-muted"> No Edge endpoints available. Head over the <a ui-sref="portainer.endpoints">Endpoints view</a> to add endpoints. </div>
|
|
</div>
|
|
</div>
|
|
<!-- !StaticGroup -->
|
|
|
|
<!-- DynamicGroup -->
|
|
<div ng-if="$ctrl.model.Dynamic">
|
|
<div class="col-sm-12 form-section-title">
|
|
Tags
|
|
</div>
|
|
<div ng-if="$ctrl.tags.length" class="form-group col-sm-12">
|
|
<div class="boxselector_wrapper">
|
|
<div class="boxselector">
|
|
<input type="radio" id="or-selector" ng-model="$ctrl.model.PartialMatch" ng-value="true" ng-checked="$ctrl.model.PartialMatch" />
|
|
<label for="or-selector">
|
|
<div class="boxselector_header">
|
|
<i class="fa fa-tag" aria-hidden="true" style="margin-right: 2px;"></i>
|
|
Partial match
|
|
</div>
|
|
<p>Associate any endpoint matching at least one of the selected tags</p>
|
|
</label>
|
|
</div>
|
|
<div class="boxselector">
|
|
<input type="radio" id="and-selector" ng-model="$ctrl.model.PartialMatch" ng-value="false" ng-checked="!$ctrl.model.PartialMatch" />
|
|
<label for="and-selector">
|
|
<div class="boxselector_header">
|
|
<i class="fa fa-tag" aria-hidden="true" style="margin-right: 2px;"></i>
|
|
Full match
|
|
</div>
|
|
<p>Associate any endpoint matching all of the selected tags</p>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<tag-selector ng-if="$ctrl.tags.length" tags="$ctrl.tags" model="$ctrl.model.TagIds"></tag-selector>
|
|
<div ng-if="$ctrl.tags && !$ctrl.tags.length" class="col-sm-12 small text-muted">
|
|
No tags available. Head over to the <a ui-sref="portainer.tags">Tags view</a> to add tags
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-12 form-section-title">
|
|
Associated endpoints by tags
|
|
</div>
|
|
<div class="col-sm-12 form-group">
|
|
<group-association-table
|
|
loaded="$ctrl.loaded"
|
|
page-type="$ctrl.pageType"
|
|
table-type="associated"
|
|
retrieve-page="$ctrl.getDynamicEndpoints"
|
|
dataset="$ctrl.endpoints.value"
|
|
pagination-state="$ctrl.endpoints.state"
|
|
empty-dataset-message="No associated endpoint"
|
|
tags="$ctrl.tags"
|
|
show-tags="true"
|
|
groups="$ctrl.groups"
|
|
show-groups="true"
|
|
has-backend-pagination="true"
|
|
></group-association-table>
|
|
</div>
|
|
</div>
|
|
<!-- !DynamicGroup -->
|
|
|
|
<!-- actions -->
|
|
<div class="col-sm-12 form-section-title">
|
|
Actions
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="col-sm-12">
|
|
<button
|
|
type="submit"
|
|
class="btn btn-primary btn-sm"
|
|
ng-disabled="$ctrl.actionInProgress || !EdgeGroupForm.$valid || (!$ctrl.model.Dynamic && !$ctrl.model.Endpoints.length) || ($ctrl.model.Dynamic && !$ctrl.model.TagIds.length)"
|
|
button-spinner="$ctrl.actionInProgress"
|
|
>
|
|
<span ng-hide="$ctrl.actionInProgress">{{ $ctrl.formActionLabel }}</span>
|
|
<span ng-show="$ctrl.actionInProgress">In progress...</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</form>
|