-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Docs updates and chart name overrides with rollback settings (#57)
* Updated references and links * Add exclude from rollback settings * Update AWS configuration * Add override for each chart name
- Loading branch information
1 parent
bcd5aeb
commit b272e0e
Showing
18 changed files
with
221 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
...rm/add-exclude-rollback-service-dialog/add-exclude-rollback-service-dialog.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<dx-popup | ||
[width]="450" | ||
[height]="210" | ||
[showTitle]="true" | ||
title="Add Service to Exclude from Rollback" | ||
[dragEnabled]="false" | ||
[hideOnOutsideClick]="true" | ||
[showCloseButton]="true" | ||
container=".dx-viewport" | ||
[(visible)]="visible" | ||
(visibleChange)="onVisibleChange()"> | ||
<div class="form"> | ||
<div class="dx-field"> | ||
<div class="dx-field-label">Name</div> | ||
<div class="dx-field-value"> | ||
<dx-text-box [(value)]="name"></dx-text-box> | ||
</div> | ||
</div> | ||
|
||
<div class="actions"> | ||
<dx-button class="cancel-btn" text="Cancel" type="normal" (onClick)="cancel()" height="40"> </dx-button> | ||
<dx-button class="deploy-btn" text="Add" type="default" (onClick)="add()" height="40"> </dx-button> | ||
</div> | ||
</div> | ||
</dx-popup> |
25 changes: 25 additions & 0 deletions
25
...rm/add-exclude-rollback-service-dialog/add-exclude-rollback-service-dialog.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
.actions { | ||
margin-top: 30px; | ||
display: flex; | ||
margin-left: auto; | ||
|
||
dx-button { | ||
margin-left: 15px; | ||
} | ||
} | ||
|
||
.form { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.dx-field { | ||
|
||
.dx-field-label { | ||
width: 30%; | ||
} | ||
|
||
.dx-field-value { | ||
width: 70%; | ||
} | ||
} |
53 changes: 53 additions & 0 deletions
53
...form/add-exclude-rollback-service-dialog/add-exclude-rollback-service-dialog.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import { ChangeDetectorRef, Component, EventEmitter, Input, Output } from '@angular/core'; | ||
import { DxButtonModule, DxPopupModule, DxTextBoxModule } from 'devextreme-angular'; | ||
|
||
@Component({ | ||
selector: 'app-add-exclude-rollback-service-dialog', | ||
standalone: true, | ||
imports: [DxPopupModule, DxButtonModule, DxTextBoxModule], | ||
templateUrl: './add-exclude-rollback-service-dialog.component.html', | ||
styleUrl: './add-exclude-rollback-service-dialog.component.scss' | ||
}) | ||
export class AddExcludeRollbackServiceDialogComponent { | ||
@Output() visibleChange = new EventEmitter<boolean>(); | ||
@Output() addInput = new EventEmitter<string>(); | ||
|
||
name = ''; | ||
|
||
private _visible = false; | ||
|
||
get visible() { | ||
return this._visible; | ||
} | ||
|
||
@Input() | ||
set visible(value: boolean) { | ||
this._visible = value; | ||
this.clearFields(); | ||
} | ||
|
||
constructor(private _changeDetectorRef: ChangeDetectorRef) {} | ||
|
||
clearFields() { | ||
this.name = ''; | ||
} | ||
|
||
onVisibleChange(): void { | ||
this.visibleChange.emit(this.visible); | ||
} | ||
|
||
add(): void { | ||
if (!this.name) { | ||
return; | ||
} | ||
|
||
this.addInput.emit(this.name); | ||
this.visible = false; | ||
this._changeDetectorRef.detectChanges(); | ||
} | ||
|
||
cancel(): void { | ||
this.visible = false; | ||
this._changeDetectorRef.detectChanges(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.