From 50dbe65e1dad3e80d3cbe6c1babddac9356e83fb Mon Sep 17 00:00:00 2001 From: Brian Bergeron Date: Mon, 21 Sep 2020 13:53:53 -0700 Subject: [PATCH] Arc - Update Postgres deployment field labels and descriptions (#12537) * update help text strings * update field descriptions to match help text * update cpu/memory field descriptions Co-authored-by: Brian Bergeron --- extensions/arc/package.json | 14 ++++++++------ extensions/arc/package.nls.json | 19 +++++++++++-------- 2 files changed, 19 insertions(+), 14 deletions(-) diff --git a/extensions/arc/package.json b/extensions/arc/package.json index d6fc030d43..89cb3e957d 100644 --- a/extensions/arc/package.json +++ b/extensions/arc/package.json @@ -806,27 +806,29 @@ "title": "%arc.postgres.settings.resource.title%", "fields": [ { - "label": "%arc.postgres.server.group.cores.request%", - "description": "%arc.postgres.server.group.cores.description%", + "label": "%arc.postgres.server.group.cores.request.label%", + "description": "%arc.postgres.server.group.cores.request.description%", "variableName": "AZDATA_NB_VAR_POSTGRES_SERVER_GROUP_CORES_REQUEST", "type": "number", "min": 1 }, { - "label": "%arc.postgres.server.group.cores.limit%", - "description": "%arc.postgres.server.group.cores.description%", + "label": "%arc.postgres.server.group.cores.limit.label%", + "description": "%arc.postgres.server.group.cores.limit.description%", "variableName": "AZDATA_NB_VAR_POSTGRES_SERVER_GROUP_CORES_LIMIT", "type": "number", "min": 1 }, { - "label": "%arc.postgres.server.group.memory.request%", + "label": "%arc.postgres.server.group.memory.request.label%", + "description": "%arc.postgres.server.group.memory.request.description%", "variableName": "AZDATA_NB_VAR_POSTGRES_SERVER_GROUP_MEMORY_REQUEST", "type": "number", "min": 0.25 }, { - "label": "%arc.postgres.server.group.memory.limit%", + "label": "%arc.postgres.server.group.memory.limit.label%", + "description": "%arc.postgres.server.group.memory.limit.description%", "variableName": "AZDATA_NB_VAR_POSTGRES_SERVER_GROUP_MEMORY_LIMIT", "type": "number", "min": 0.25 diff --git a/extensions/arc/package.nls.json b/extensions/arc/package.nls.json index 16c259b8ab..ca3d04b6d1 100644 --- a/extensions/arc/package.nls.json +++ b/extensions/arc/package.nls.json @@ -112,16 +112,19 @@ "arc.postgres.server.group.extensions.label": "Extensions", "arc.postgres.server.group.extensions.description": "A comma-separated list of the Postgres extensions that should be loaded on startup. Please refer to the postgres documentation for supported values.", "arc.postgres.server.group.volume.size.data.label": "Volume Size GB (Data)", - "arc.postgres.server.group.volume.size.data.description": "Volume size for the storage class to be used for data", + "arc.postgres.server.group.volume.size.data.description": "The size of the storage volume to be used for data in GB.", "arc.postgres.server.group.volume.size.logs.label": "Volume Size GB (Logs)", - "arc.postgres.server.group.volume.size.logs.description": "Volume size for the storage class to be used for logs", + "arc.postgres.server.group.volume.size.logs.description": "The size of the storage volume to be used for logs in GB.", "arc.postgres.server.group.volume.size.backups.label": "Volume Size GB (Backups)", - "arc.postgres.server.group.volume.size.backups.description": "Volume size for the storage class to be used for backups", - "arc.postgres.server.group.cores.request": "Min CPU cores (per node) to reserve", - "arc.postgres.server.group.cores.limit": "Max CPU cores (per node) to allow", - "arc.postgres.server.group.cores.description": "Fractional cores are supported", - "arc.postgres.server.group.memory.request": "Min memory GB (per node) to reserve", - "arc.postgres.server.group.memory.limit": "Max memory GB (per node) to allow", + "arc.postgres.server.group.volume.size.backups.description": "The size of the storage volume to be used for backups in GB.", + "arc.postgres.server.group.cores.request.label": "CPU request (cores per node)", + "arc.postgres.server.group.cores.request.description": "The minimum number of CPU cores that must be available per node to schedule the service. Fractional cores are supported.", + "arc.postgres.server.group.cores.limit.label": "CPU limit (cores per node)", + "arc.postgres.server.group.cores.limit.description": "The maximum number of CPU cores for the Postgres instance that can be used per node. Fractional cores are supported.", + "arc.postgres.server.group.memory.request.label": "Memory request (GB per node)", + "arc.postgres.server.group.memory.request.description": "The memory request of the Postgres instance per node in GB.", + "arc.postgres.server.group.memory.limit.label": "Memory limit (GB per node)", + "arc.postgres.server.group.memory.limit.description": "The memory limit of the Postgres instance per node in GB.", "arc.agreement": "I accept {0} and {1}.", "arc.agreement.sql.terms.conditions":"Azure SQL managed instance - Azure Arc terms and conditions", "arc.agreement.postgres.terms.conditions":"Azure Arc enabled PostgreSQL Hyperscale terms and conditions",