| <!-- |
| Copyright 2020 TATA ELXSI |
| |
| Licensed under the Apache License, Version 2.0 (the 'License'); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| |
| Author: KUMARAN M (kumaran.m@tataelxsi.co.in), RAJESH S (rajesh.s@tataelxsi.co.in), BARATH KUMAR R (barath.r@tataelxsi.co.in) |
| --> |
| <form [formGroup]="k8sclusterForm" (ngSubmit)="k8sAddClusterSubmit();"> |
| <div class="modal-header"> |
| <h4 *ngIf="profileType === 'Register'" class="modal-title" id="modal-basic-title">{{'PAGE.K8S.REGISTERCLUSTER' | |
| translate}} |
| </h4> |
| <h4 *ngIf="profileType === 'Manage'" class="modal-title" id="modal-basic-title">{{'PAGE.K8S.CREATECLUSTER' | |
| translate}} |
| </h4> |
| <h4 *ngIf="profileType === 'upgrade'" class="modal-title" id="modal-basic-title">{{'PAGE.K8S.UPGRADECLUSTER' | |
| translate}} |
| </h4> |
| <h4 *ngIf="profileType === 'vertical'" class="modal-title" id="modal-basic-title">{{'PAGE.K8S.VERTICALSCALING' | |
| translate}} |
| </h4> |
| <h4 *ngIf="profileType === 'horizontal'" class="modal-title" id="modal-basic-title">{{'PAGE.K8S.HORIZONTALSCALING' | |
| translate}} |
| </h4> |
| <button class="button-xs" type="button" class="close" aria-label="Close" (click)="activeModal.close()"> |
| <i class="fas fa-times-circle text-danger"></i> |
| </button> |
| </div> |
| <div class="modal-body modal-body-custom-height"> |
| <div class="form-group row mb-3" *ngIf="profileType === 'Manage' || profileType === 'Register'"> |
| <div class="col-sm-12"> |
| <label class="form-check-label"> |
| <input class="quotacheck form-check-input" (click)=getValue($event) type="checkbox" |
| formControlName="bootstrap" id="quotacheck"> |
| <label class="form-check-label" for="quotaCheck"> <b>{{ 'PAGE.K8S.BOOTSTRAP' | translate }}</b> </label> |
| <i class="fas fa-info-circle tooltip-icon"> |
| <span class="tooltip-text">{{ 'PAGE.K8S.BOOTSTRAPINFO' | translate }}</span> |
| </i> |
| </label> |
| </div> |
| </div> |
| <div class="form-group row mb-3" *ngIf="profileType === 'Manage' || profileType === 'Register' || !isChecked"> |
| <label class="col-sm-12 col-form-label mandatory-label" |
| [ngClass]="{'text-danger': k8sclusterForm.invalid === true && submitted === true}">{{'MANDATORYCHECK' | |
| translate}}</label> |
| <label class="col-sm-4 col-form-label" for="name">{{'PAGE.K8S.NAME' | translate}}*</label> |
| <div class="col-sm-8"> |
| <input autocomplete="off" class="form-control" placeholder="{{'PAGE.K8S.NAME' | translate}}" type="text" |
| formControlName="name" id="name" [ngClass]="{ 'is-invalid': submitted && f.name.errors }" required> |
| </div> |
| </div> |
| <div class="form-group row mb-3" *ngIf="profileType === 'Manage'|| !isChecked"> |
| <label class="col-sm-4 col-form-label" for="k8s_version">{{'PAGE.K8S.K8SVERSION' | translate}}*</label> |
| <div class="col-sm-8"> |
| <input autocomplete="off" class="form-control" placeholder="{{'PAGE.K8S.K8SVERSION' | translate}}" type="text" |
| formControlName="k8s_version" id="k8s_version" [ngClass]="{ 'is-invalid': submitted && f.k8s_version.errors }" |
| required> |
| </div> |
| </div> |
| <div class="form-group row mb-3" *ngIf="profileType === 'Manage' || profileType === 'Register' || !isChecked"> |
| <label class="col-sm-4 col-form-label" for="vim_account">{{'PAGE.K8S.VIMACCOUNT' | translate}}*</label> |
| <div class="col-sm-8"> |
| <ng-select (change)="getDetailsvim($event)" |
| placeholder="{{'SELECT' | translate}} {{'PAGE.K8S.VIMACCOUNT' | translate}}" [items]="vimAccountSelect" |
| bindLabel="name" bindValue="name" formControlName="vim_account" id="vimAccountId" |
| [ngClass]="{ 'is-invalid': submitted && f.vim_account.errors }" required> |
| </ng-select> |
| </div> |
| </div> |
| <div class="form-group row mb-3" *ngIf="!isChecked && profileType === 'Register'"> |
| <label class="col-sm-4 col-form-label" for="deployment_methods">{{'PAGE.K8S.DEPLOYMENTMETHODS' | |
| translate}}*</label> |
| <div class="col-sm-8"> |
| <ng-select placeholder="{{'SELECT' | translate}} {{'PAGE.K8S.DEPLOYMENTMETHODS' | translate}}" multiple="true" |
| [items]="deploymentMethodsSelect" bindLabel="title" bindValue="value" formControlName="deployment_methods" |
| id="deploymentMethodsId" [ngClass]="{ 'is-invalid': submitted && f.deployment_methods.errors }" |
| [(ngModel)]="selectedDeploymentMethods" required> |
| </ng-select> |
| </div> |
| </div> |
| <div class="form-group row mb-3" *ngIf="profileType === 'Manage' || profileType === 'Register' || !isChecked"> |
| <label class="col-sm-4 col-form-label" for="description">{{'PAGE.K8S.DESCRIPTION' | translate}}</label> |
| <div class="col-sm-8"> |
| <textarea class="form-control" placeholder="{{'PAGE.K8S.DESCRIPTION' | translate}}" type="text" |
| formControlName="description" id="description" |
| [ngClass]="{ 'is-invalid': submitted && f.description.errors }"></textarea> |
| </div> |
| </div> |
| <div class="form-group row mb-3" *ngIf="!isChecked && profileType === 'Register'"> |
| <label class="col-sm-4 col-form-label" for="nets">{{'PAGE.K8S.NETS' | translate}}*</label> |
| <div class="col-sm-8"> |
| <textarea rows="5" cols="50" class="form-control" placeholder="{{'PAGE.K8S.NETSPLACEHOLDER' | translate}}" |
| formControlName="nets" id="nets" [ngClass]="{ 'is-invalid': submitted && f.nets.errors }" required></textarea> |
| <div class="fileupload-text mt-1 mb-1">{{'FILEUPLOADLABEL' | translate}}</div> |
| <div class="custom-file"> |
| <input type="file" #fileInputNets class="fileupload custom-file-input" |
| (change)="netsFile($event.target.files)" id="customFileNets"> |
| </div> |
| </div> |
| </div> |
| <div class="form-group row mb-3" *ngIf="profileType === 'Register'|| (profileType === 'Register' && !isChecked)"> |
| <label class="col-sm-4 col-form-label" for="credentials">{{'PAGE.K8S.CREDENTIALS' | translate}}*</label> |
| <div class="col-sm-8"> |
| <textarea rows="5" cols="50" class="form-control" placeholder="{{'YAMLCONFIG' | translate}}" |
| formControlName="credentials" id="credentials" [ngClass]="{ 'is-invalid': submitted && f.credentials.errors }" |
| required></textarea> |
| <div class="fileupload-text mt-1 mb-1">{{'FILEUPLOADLABEL' | translate}}</div> |
| <div class="custom-file"> |
| <input type="file" #fileInputCredentials class="fileupload custom-file-input" |
| (change)="credentialsFile($event.target.files)" id="customFileCredentials"> |
| </div> |
| </div> |
| </div> |
| <div class="form-group row mb-3" *ngIf="profileType === 'Manage'"> |
| <label class="col-sm-4 col-form-label" for="k8s_version">{{'PAGE.K8S.REGIONNAME' | translate}}</label> |
| <div class="col-sm-8"> |
| <input autocomplete="off" class="form-control" placeholder="{{'PAGE.K8S.REGIONNAME' | translate}}" type="text" |
| formControlName="region_name" id="k8s_version" |
| [ngClass]="{ 'is-invalid': submitted && f.region_name.errors }"> |
| </div> |
| </div> |
| <div class="form-group row mb-3" *ngIf="profileType === 'Manage'"> |
| <label class="col-sm-4 col-form-label" for="k8s_version">{{'PAGE.K8S.RESOURCEGROUP' | translate}}</label> |
| <div class="col-sm-8"> |
| <input autocomplete="off" class="form-control" placeholder="{{'PAGE.K8S.RESOURCEGROUP' | translate}}" |
| type="text" formControlName="resource_group" id="k8s_version" |
| [ngClass]="{ 'is-invalid': submitted && f.resource_group.errors }"> |
| </div> |
| </div> |
| <div class="form-group row mb-3" *ngIf="profileType === 'Manage'"> |
| <label class="col-sm-4 col-form-label" for="node_count">{{'PAGE.K8S.NODECOUNT' | translate}}*</label> |
| <div class="col-sm-8"> |
| <input autocomplete="off" class="form-control" placeholder="{{'PAGE.K8S.NODECOUNT' | translate}}" type="text" |
| formControlName="node_count" id="node_count" [ngClass]="{ 'is-invalid': submitted && f.node_count.errors }" |
| required> |
| </div> |
| </div> |
| <div class="form-group row mb-3" *ngIf="profileType === 'Manage'"> |
| <label class="col-sm-4 col-form-label" for="k8s_version">{{'PAGE.K8S.NODESIZE' | translate}}*</label> |
| <div class="col-sm-8"> |
| <input autocomplete="off" class="form-control" placeholder="{{'PAGE.K8S.NODESIZE' | translate}}" type="text" |
| formControlName="node_size" id="k8s_version" [ngClass]="{ 'is-invalid': submitted && f.node_size.errors }" |
| required> |
| </div> |
| </div> |
| <div class="form-group row mb-3" *ngIf="profileType === 'horizontal'"> |
| <label class="col-sm-4 col-form-label" for="node_count">{{'PAGE.K8S.NODECOUNT' | translate}}</label> |
| <div class="col-sm-8"> |
| <input autocomplete="off" class="form-control" placeholder="{{'PAGE.K8S.NODECOUNT' | translate}}" type="text" |
| formControlName="nodeCount" id="node_count" [ngClass]="{ 'is-invalid': submitted && f.nodeCount.errors }"> |
| </div> |
| </div> |
| <div class="form-group row mb-3" *ngIf="profileType === 'vertical'"> |
| <label class="col-sm-4 col-form-label" for="k8s_version">{{'PAGE.K8S.NODESIZE' | translate}}</label> |
| <div class="col-sm-8"> |
| <input autocomplete="off" class="form-control" placeholder="{{'PAGE.K8S.NODESIZE' | translate}}" type="text" |
| formControlName="nodeSize" id="k8s_version" [ngClass]="{ 'is-invalid': submitted && f.nodeSize.errors }"> |
| </div> |
| </div> |
| <div class="form-group row mb-3" *ngIf="profileType === 'upgrade'"> |
| <label class="col-sm-4 col-form-label" for="k8s_version">{{'PAGE.K8S.K8SVERSION' | translate}}</label> |
| <div class="col-sm-8"> |
| <input autocomplete="off" class="form-control" placeholder="{{'PAGE.K8S.K8SVERSION' | translate}}" type="text" |
| formControlName="k8sVersion" id="k8s_version" [ngClass]="{ 'is-invalid': submitted && f.k8sVersion.errors }"> |
| </div> |
| </div> |
| </div> |
| <div class="modal-footer"> |
| <button type="button" class="btn btn-danger" (click)="activeModal.close()">{{'CANCEL' | translate}}</button> |
| <button *ngIf="profileType === 'Manage'" type="submit" class="btn btn-primary">{{'CREATE' | translate}}</button> |
| <button *ngIf="profileType === 'Register'" type="submit" class="btn btn-primary">{{'REGISTER' | translate}}</button> |
| <button *ngIf="profileType === 'upgrade' || profileType === 'vertical' || profileType === 'horizontal'" |
| type="submit" class="btn btn-primary">{{'APPLY' |
| | translate}}</button> |
| </div> |
| </form> |
| <app-loader [waitingMessage]="message" *ngIf="isLoadingResults"></app-loader> |