Node configuration needs to show different size for data and logs volume for postgresql. (#14466)

* Included storage size of log and data

* Added backups and removed putting 0

* Added localized constants
This commit is contained in:
nasc17
2021-03-01 16:45:05 -08:00
committed by GitHub
parent 7d53e1c185
commit cf08963fc1
2 changed files with 19 additions and 3 deletions

View File

@@ -192,6 +192,9 @@ export function instanceDeleted(name: string): string { return localize('arc.ins
export function instanceUpdated(name: string): string { return localize('arc.instanceUpdated', "Instance '{0}' updated", name); }
export function copiedToClipboard(name: string): string { return localize('arc.copiedToClipboard', "{0} copied to clipboard", name); }
export function clickTheTroubleshootButton(resourceType: string): string { return localize('arc.clickTheTroubleshootButton', "Click the troubleshoot button to open the Azure Arc {0} troubleshooting notebook.", resourceType); }
export function dataStorage(value: string): string { return localize('arc.dataStorage', "{0} data", value); }
export function logStorage(value: string): string { return localize('arc.logStorage', "{0} log", value); }
export function backupsStorage(value: string): string { return localize('arc.backupsStorage', "{0} backups", value); }
export function numVCores(vCores: string | undefined): string {
if (vCores && +vCores > 0) {
if (+vCores === 1) {