mirror of https://github.com/portainer/portainer
104 lines
5.9 KiB
HTML
104 lines
5.9 KiB
HTML
<page-header title="'Create volume'" breadcrumbs="[{label:'Volumes', link:'docker.volumes'}, 'Add volume']"> </page-header>
|
|
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<rd-widget>
|
|
<rd-widget-body>
|
|
<form class="form-horizontal" name="volumeCreationForm">
|
|
<!-- name-input -->
|
|
<div class="form-group">
|
|
<label for="volume_name" class="col-sm-2 col-md-1 control-label text-left">Name</label>
|
|
<div class="col-sm-10 col-md-11">
|
|
<input type="text" class="form-control" ng-model="formValues.Name" id="volume_name" placeholder="e.g. myVolume" />
|
|
</div>
|
|
</div>
|
|
<!-- !name-input -->
|
|
<div class="col-sm-12 form-section-title"> Driver configuration </div>
|
|
<!-- driver-input -->
|
|
<div class="form-group">
|
|
<label for="volume_driver" class="col-sm-2 col-md-1 control-label text-left">Driver</label>
|
|
<div class="col-sm-10 col-md-11">
|
|
<select class="form-control" ng-options="driver for driver in availableVolumeDrivers" ng-model="formValues.Driver" ng-if="availableVolumeDrivers.length > 0">
|
|
<option disabled hidden value="">Select a driver</option>
|
|
</select>
|
|
<input type="text" class="form-control" ng-model="formValues.Driver" id="volume_driver" placeholder="e.g. driverName" ng-if="availableVolumeDrivers.length === 0" />
|
|
</div>
|
|
</div>
|
|
<!-- !driver-input -->
|
|
<!-- driver-options -->
|
|
<div class="form-group" ng-hide="formValues.CIFSData.useCIFS || formValues.NFSData.useNFS">
|
|
<div class="col-sm-12" style="margin-top: 5px">
|
|
<label class="control-label text-left">
|
|
Driver options
|
|
<portainer-tooltip message="'Driver options are specific to the selected driver. Please refer to the selected driver documentation.'"></portainer-tooltip>
|
|
</label>
|
|
<span class="label label-default interactive" style="margin-left: 10px" ng-click="addDriverOption()">
|
|
<pr-icon icon="'plus'" mode="'alt'" feather="true"></pr-icon> add driver option
|
|
</span>
|
|
</div>
|
|
<!-- driver-options-input-list -->
|
|
<div class="col-sm-12 form-inline" style="margin-top: 10px">
|
|
<div ng-repeat="option in formValues.DriverOptions" style="margin-top: 2px">
|
|
<div class="input-group col-sm-5 input-group-sm">
|
|
<span class="input-group-addon">name</span>
|
|
<input type="text" class="form-control" ng-model="option.name" placeholder="e.g. mountpoint" />
|
|
</div>
|
|
<div class="input-group col-sm-5 input-group-sm">
|
|
<span class="input-group-addon">value</span>
|
|
<input type="text" class="form-control" ng-model="option.value" placeholder="e.g. /path/on/host" />
|
|
</div>
|
|
<button class="btn btn-sm btn-light" type="button" ng-click="removeDriverOption($index)">
|
|
<pr-icon icon="'trash-2'" feather="true" class-name="'icon-secondary icon-md'"></pr-icon>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<!-- !driver-options-input-list -->
|
|
</div>
|
|
<!-- !driver-options -->
|
|
<!-- nfs-management -->
|
|
<div class="form-group col-md-12">
|
|
<por-switch-field checked="formValues.NFSData.useNFS" label="'Use NFS volume'" on-change="(onUseNFSChange)"></por-switch-field>
|
|
<div ng-if="formValues.NFSData.useNFS" class="small text-muted" style="margin-top: 10px"> Ensure <code>nfs-utils</code> are installed on your hosts. </div>
|
|
</div>
|
|
<volumes-nfs-form data="formValues.NFSData" ng-show="formValues.Driver === 'local'"></volumes-nfs-form>
|
|
<!-- !nfs-management -->
|
|
<!-- cifs-management -->
|
|
<div class="form-group col-md-12">
|
|
<por-switch-field checked="formValues.CIFSData.useCIFS" label="'Use CIFS volume'" on-change="(onUseCIFSChange)"></por-switch-field>
|
|
<div ng-if="formValues.CIFSData.useCIFS" class="small text-muted" style="margin-top: 10px"> Ensure <code>cifs-utils</code> are installed on your hosts. </div>
|
|
</div>
|
|
<volumes-cifs-form data="formValues.CIFSData" ng-show="formValues.Driver === 'local'"></volumes-cifs-form>
|
|
<!-- !cifs-management -->
|
|
<div ng-if="applicationState.endpoint.mode.agentProxy && applicationState.endpoint.mode.provider === 'DOCKER_SWARM_MODE' && formValues.Driver === 'local'">
|
|
<div class="col-sm-12 form-section-title"> Deployment </div>
|
|
<!-- node-selection -->
|
|
<node-selector model="formValues.NodeName"> </node-selector>
|
|
<!-- !node-selection -->
|
|
</div>
|
|
<!-- access-control -->
|
|
<por-access-control-form form-data="formValues.AccessControlData"></por-access-control-form>
|
|
<!-- !access-control -->
|
|
<!-- actions -->
|
|
<div class="col-sm-12 form-section-title"> Actions </div>
|
|
<div class="form-group">
|
|
<div class="col-sm-12">
|
|
<button
|
|
type="button"
|
|
class="btn btn-primary btn-sm"
|
|
ng-click="create()"
|
|
ng-disabled="state.actionInProgress || (formValues.NFSData.useNFS && !volumeCreationForm.nfsInformationForm.$valid) || (formValues.CIFSData.useCIFS && !volumeCreationForm.cifsInformationForm.$valid)"
|
|
button-spinner="state.actionInProgress"
|
|
>
|
|
<span ng-hide="state.actionInProgress">Create the volume</span>
|
|
<span ng-show="state.actionInProgress">Creating volume...</span>
|
|
</button>
|
|
<span class="text-danger" ng-if="state.formValidationError" style="margin-left: 5px">{{ state.formValidationError }}</span>
|
|
</div>
|
|
</div>
|
|
<!-- !actions -->
|
|
</form>
|
|
</rd-widget-body>
|
|
</rd-widget>
|
|
</div>
|
|
</div>
|