Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 | 6x | <div class="col-sm-12 col-lg-6"> <form name="nfsForm" class="form-horizontal" #formDir="ngForm" [formGroup]="nfsForm" novalidate> <div class="panel panel-default"> <div class="panel-heading"> <h3 i18n="form title|Example: Create Pool@@formTitle" class="panel-title">{{ action | titlecase }} {{ resource | upperFirst }}</h3> </div> <div class="panel-body"> <!-- cluster_id --> <div class="form-group" [ngClass]="{'has-error': nfsForm.showError('cluster_id', formDir)}" *ngIf="!isDefaultCluster"> <label class="col-sm-3 control-label" for="cluster_id"> <ng-container i18n>Cluster</ng-container> <span class="required"></span> </label> <div class="col-sm-9"> <select class="form-control" formControlName="cluster_id" name="cluster_id" id="cluster_id" (change)="onClusterChange()"> <option *ngIf="allClusters === null" value="" i18n>Loading...</option> <option *ngIf="allClusters !== null && allClusters.length === 0" value="" i18n>-- No cluster available --</option> <option *ngIf="allClusters !== null && allClusters.length > 0" value="" i18n>-- Select the cluster --</option> <option *ngFor="let cluster of allClusters" [value]="cluster">{{ cluster }}</option> </select> <span class="help-block" *ngIf="nfsForm.showError('cluster_id', formDir, 'required')" i18n>Required field</span> </div> </div> <!-- daemons --> <div class="form-group" [ngClass]="{'has-error': nfsForm.showError('daemons', formDir)}"> <label class="col-sm-3 control-label" for="daemons"> <ng-container i18n>Daemons</ng-container> </label> <div class="col-sm-9"> <ng-container *ngFor="let daemon of nfsForm.getValue('daemons'); let i = index"> <div class="input-group cd-mb"> <input class="form-control" type="text" [value]="daemon" disabled /> <span class="input-group-btn"> <button class="btn btn-default" type="button" (click)="removeDaemon(i, daemon)"> <i class="fa fa-remove fa-fw" aria-hidden="true"></i> </button> </span> </div> </ng-container> <div class="row"> <div class="col-md-12"> <cd-select [data]="nfsForm.get('daemons').value" [options]="daemonsSelections" [messages]="daemonsMessages" (selection)="onDaemonSelection()" elemClass="btn btn-default pull-right"> <i class="fa fa-fw fa-plus"></i> <ng-container i18n>Add daemon</ng-container> </cd-select> </div> </div> </div> </div> <!-- FSAL --> <div formGroupName="fsal"> <!-- Name --> <div class="form-group" [ngClass]="{'has-error': nfsForm.showError('name', formDir)}"> <label class="col-sm-3 control-label" for="name"> <ng-container i18n>Storage Backend</ng-container> <span class="required"></span> </label> <div class="col-sm-9"> <select class="form-control" formControlName="name" name="name" id="name" (change)="fsalChangeHandler()"> <option *ngIf="allFsals === null" value="" i18n>Loading...</option> <option *ngIf="allFsals !== null && allFsals.length === 0" value="" i18n>-- No data pools available --</option> <option *ngIf="allFsals !== null && allFsals.length > 0" value="" i18n>-- Select the storage backend --</option> <option *ngFor="let fsal of allFsals" [value]="fsal.value">{{ fsal.descr }}</option> </select> <span class="help-block" *ngIf="nfsForm.showError('name', formDir, 'required')" i18n>Required field</span> </div> </div> <!-- RGW user --> <div class="form-group" [ngClass]="{'has-error': nfsForm.showError('rgw_user_id', formDir)}" *ngIf="nfsForm.getValue('name') === 'RGW'"> <label class="col-sm-3 control-label" for="rgw_user_id"> <ng-container i18n>Object Gateway User</ng-container> <span class="required"></span> </label> <div class="col-sm-9"> <select class="form-control" formControlName="rgw_user_id" name="rgw_user_id" id="rgw_user_id" (change)="rgwUserIdChangeHandler()"> <option *ngIf="allRgwUsers === null" value="" i18n>Loading...</option> <option *ngIf="allRgwUsers !== null && allRgwUsers.length === 0" value="" i18n>-- No users available --</option> <option *ngIf="allRgwUsers !== null && allRgwUsers.length > 0" value="" i18n>-- Select the object gateway user --</option> <option *ngFor="let rgwUserId of allRgwUsers" [value]="rgwUserId">{{ rgwUserId }}</option> </select> <span class="help-block" *ngIf="nfsForm.showError('rgw_user_id', formDir, 'required')" i18n>Required field</span> </div> </div> <!-- CephFS user_id --> <div class="form-group" [ngClass]="{'has-error': nfsForm.showError('user_id', formDir)}" *ngIf="nfsForm.getValue('name') === 'CEPH'"> <label class="col-sm-3 control-label" for="user_id"> <ng-container i18n>CephFS User ID</ng-container> <span class="required"></span> </label> <div class="col-sm-9"> <select class="form-control" formControlName="user_id" name="user_id" id="user_id"> <option *ngIf="allCephxClients === null" value="" i18n>Loading...</option> <option *ngIf="allCephxClients !== null && allCephxClients.length === 0" value="" i18n>-- No clients available --</option> <option *ngIf="allCephxClients !== null && allCephxClients.length > 0" value="" i18n>-- Select the cephx client --</option> <option *ngFor="let client of allCephxClients" [value]="client">{{ client }}</option> </select> <span class="help-block" *ngIf="nfsForm.showError('user_id', formDir, 'required')" i18n>Required field</span> </div> </div> <!-- CephFS fs_name --> <div class="form-group" [ngClass]="{'has-error': nfsForm.showError('fs_name', formDir)}" *ngIf="nfsForm.getValue('name') === 'CEPH'"> <label class="col-sm-3 control-label" for="fs_name"> <ng-container i18n>CephFS Name</ng-container> <span class="required"></span> </label> <div class="col-sm-9"> <select class="form-control" formControlName="fs_name" name="fs_name" id="fs_name" (change)="rgwUserIdChangeHandler()"> <option *ngIf="allFsNames === null" value="" i18n>Loading...</option> <option *ngIf="allFsNames !== null && allFsNames.length === 0" value="" i18n>-- No CephFS filesystem available --</option> <option *ngIf="allFsNames !== null && allFsNames.length > 0" value="" i18n>-- Select the CephFS filesystem --</option> <option *ngFor="let filesystem of allFsNames" [value]="filesystem.name">{{ filesystem.name }}</option> </select> <span class="help-block" *ngIf="nfsForm.showError('fs_name', formDir, 'required')" i18n>Required field</span> </div> </div> </div> <!-- Secutiry Label --> <div class="form-group" [ngClass]="{'has-error': nfsForm.showError('security_label', formDir)}" *ngIf="nfsForm.getValue('name') === 'CEPH'"> <label class="col-sm-3 control-label" for="security_label"> <ng-container i18n>Security Label</ng-container> <span class="required" *ngIf="nfsForm.getValue('security_label')"></span> </label> <div class="col-sm-9"> <div class="checkbox checkbox-primary"> <input type="checkbox" formControlName="security_label" name="security_label" id="security_label"> <label for="security_label" i18n>Enable security label</label> </div> <br> <input type="text" *ngIf="nfsForm.getValue('security_label')" class="form-control" name="sec_label_xattr" id="sec_label_xattr" formControlName="sec_label_xattr"> <span class="help-block" *ngIf="nfsForm.showError('sec_label_xattr', formDir, 'required')" i18n>Required field</span> </div> </div> <!-- Path --> <div class="form-group" [ngClass]="{'has-error': nfsForm.showError('path', formDir)}" *ngIf="nfsForm.getValue('name') === 'CEPH'"> <label class="col-sm-3 control-label" for="path"> <ng-container i18n>CephFS Path</ng-container> <span class="required"></span> </label> <div class="col-sm-9"> <input type="text" class="form-control" name="path" id="path" formControlName="path" [typeahead]="pathDataSource" (typeaheadOnSelect)="pathChangeHandler()" (blur)="pathChangeHandler()"> <span class="help-block" *ngIf="nfsForm.showError('path', formDir, 'required')" i18n>Required field</span> <span class="help-block" *ngIf="nfsForm.showError('path', formDir, 'pattern')" i18n>Path need to start with a '/' and can be followed by a word</span> <span class="help-block" *ngIf="isNewDirectory && !nfsForm.showError('path', formDir)" i18n>New directory will be created</span> </div> </div> <!-- Bucket --> <div class="form-group" [ngClass]="{'has-error': nfsForm.showError('path', formDir)}" *ngIf="nfsForm.getValue('name') === 'RGW'"> <label class="col-sm-3 control-label" for="path"> <ng-container i18n>Path</ng-container> <span class="required"></span> </label> <div class="col-sm-9"> <input type="text" class="form-control" name="path" id="path" formControlName="path" [typeahead]="bucketDataSource" (typeaheadOnSelect)="bucketChangeHandler()" (blur)="bucketChangeHandler()"> <span class="help-block" *ngIf="nfsForm.showError('path', formDir, 'required')" i18n>Required field</span> <span class="help-block" *ngIf="nfsForm.showError('path', formDir, 'pattern')" i18n>Path can only be a single '/' or a word</span> <span class="help-block" *ngIf="isNewBucket && !nfsForm.showError('path', formDir)" i18n>New bucket will be created</span> </div> </div> <!-- NFS Protocol --> <div class="form-group" [ngClass]="{'has-error': nfsForm.showError('protocolNfsv3', formDir) || nfsForm.showError('protocolNfsv4', formDir)}"> <label class="col-sm-3 control-label" for="protocols"> <ng-container i18n>NFS Protocol</ng-container> <span class="required"></span> </label> <div class="col-sm-9"> <div class="checkbox checkbox-primary"> <input type="checkbox" id="protocolNfsv3" name="protocolNfsv3" formControlName="protocolNfsv3"> <label i18n for="protocolNfsv3">NFSv3</label> </div> <div class="checkbox checkbox-primary"> <input type="checkbox" formControlName="protocolNfsv4" name="protocolNfsv4" id="protocolNfsv4"> <label i18n for="protocolNfsv4">NFSv4</label> </div> <span class="help-block" *ngIf="nfsForm.showError('protocolNfsv3', formDir, 'required') || nfsForm.showError('protocolNfsv4', formDir, 'required')" i18n>Required field</span> </div> </div> <!-- Tag --> <div class="form-group" *ngIf="nfsForm.getValue('protocolNfsv3')"> <label class="col-sm-3 control-label" for="tag"> <ng-container i18n>NFS Tag</ng-container> <cd-helper> <p i18n>Alternative access for <strong>NFS v3</strong> mounts (it must not have a leading /).</p> <p i18n>Clients may not mount subdirectories (i.e. if Tag = foo, the client may not mount foo/baz).</p> <p i18n>By using different Tag options, the same Path may be exported multiple times.</p> </cd-helper> </label> <div class="col-sm-9"> <input type="text" class="form-control" name="tag" id="tag" formControlName="tag"> </div> </div> <!-- Pseudo --> <div class="form-group" [ngClass]="{'has-error': nfsForm.showError('pseudo', formDir)}" *ngIf="nfsForm.getValue('protocolNfsv4')"> <label class="col-sm-3 control-label" for="pseudo"> <ng-container i18n>Pseudo</ng-container> <span class="required"></span> <cd-helper> <p i18n>The position that this <strong>NFS v4</strong> export occupies in the <strong>Pseudo FS</strong> (it must be unique).</p> <p i18n>By using different Pseudo options, the same Path may be exported multiple times.</p> </cd-helper> </label> <div class="col-sm-9"> <input type="text" class="form-control" name="pseudo" id="pseudo" formControlName="pseudo"> <span class="help-block" *ngIf="nfsForm.showError('pseudo', formDir, 'required')" i18n>Required field</span> <span class="help-block" *ngIf="nfsForm.showError('pseudo', formDir, 'pattern')" i18n>Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ).</span> </div> </div> <!-- Access Type --> <div class="form-group" [ngClass]="{'has-error': nfsForm.showError('access_type', formDir)}"> <label class="col-sm-3 control-label" for="access_type"> <ng-container i18n>Access Type</ng-container> <span class="required"></span> </label> <div class="col-sm-9"> <select class="form-control" formControlName="access_type" name="access_type" id="access_type" (change)="accessTypeChangeHandler()"> <option *ngIf="nfsAccessType === null" value="" i18n>Loading...</option> <option *ngIf="nfsAccessType !== null && nfsAccessType.length === 0" value="" i18n>-- No access type available --</option> <option *ngIf="nfsAccessType !== null && nfsAccessType.length > 0" value="" i18n>-- Select the access type --</option> <option *ngFor="let accessType of nfsAccessType" [value]="accessType.value">{{ accessType.value }}</option> </select> <span class="help-block" *ngIf="nfsForm.getValue('access_type')"> {{ getAccessTypeHelp(nfsForm.getValue('access_type')) }} </span> <span class="text-warning" *ngIf="nfsForm.getValue('access_type') === 'RW' && nfsForm.getValue('name') === 'RGW'" i18n>The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the <a href="{{docsUrl}}" target="_blank"> documentation</a> for details before enabling write access.</span> <span class="help-block" *ngIf="nfsForm.showError('access_type', formDir, 'required')" i18n>Required field</span> </div> </div> <!-- Squash --> <div class="form-group" [ngClass]="{'has-error': nfsForm.showError('squash', formDir)}"> <label class="col-sm-3 control-label" for="squash"> <ng-container i18n>Squash</ng-container> <span class="required"></span> </label> <div class="col-sm-9"> <select class="form-control" name="squash" formControlName="squash" id="squash"> <option *ngIf="nfsSquash === null" value="" i18n>Loading...</option> <option *ngIf="nfsSquash !== null && nfsSquash.length === 0" value="" i18n>-- No squash available --</option> <option *ngIf="nfsSquash !== null && nfsSquash.length > 0" value="" i18n>--Select what kind of user id squashing is performed --</option> <option *ngFor="let squash of nfsSquash" [value]="squash">{{ squash }}</option> </select> <span class="help-block" *ngIf="nfsForm.showError('squash', formDir,'required')" i18n>Required field</span> </div> </div> <!-- Transport Protocol --> <div class="form-group" [ngClass]="{'has-error': nfsForm.showError('transportUDP', formDir) || nfsForm.showError('transportTCP', formDir)}"> <label class="col-sm-3 control-label" for="transports"> <ng-container i18n>Transport Protocol</ng-container> <span class="required"></span> </label> <div class="col-sm-9"> <div class="checkbox checkbox-primary"> <input type="checkbox" formControlName="transportUDP" name="transportUDP" id="transportUDP"> <label for="transportUDP" i18n>UDP</label> </div> <div class="checkbox checkbox-primary"> <input type="checkbox" formControlName="transportTCP" name="transportTCP" id="transportTCP"> <label for="transportTCP" i18n>TCP</label> </div> <span class="help-block" *ngIf="nfsForm.showError('transportUDP', formDir, 'required') || nfsForm.showError('transportTCP', formDir, 'required')" i18n>Required field</span> <hr> </div> </div> <!-- Clients --> <cd-nfs-form-client [form]="nfsForm" #nfsClients> </cd-nfs-form-client> </div> <div class="panel-footer"> <div class="button-group text-right"> <cd-submit-button [form]="formDir" (submitAction)="submitAction()" i18n="form action button|Example: Create Pool@@formActionButton" type="button">{{ action | titlecase }} {{ resource | upperFirst }}</cd-submit-button> <cd-back-button></cd-back-button> </div> </div> </div> </form> </div> |