Skip to content

Commit f131d41

Browse files
authored
Update AddObjectStorage.vue ECS Field Names and desc.
1 parent 8f36ebf commit f131d41

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ui/src/views/infra/AddObjectStorage.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,31 +81,31 @@
8181
<!-- S3 URL (for UI: this becomes addObjectStoragePool url=...) -->
8282
<a-form-item name="url" ref="url">
8383
<template #label>
84-
<tooltip-label :title="$t('label.url')" :tooltip="apiParams.url.description"/>
84+
<tooltip-label :title="'ECS Public URL'" :tooltip="'The S3-compatible endpoint URL that clients use to connect to ECS'"/>
8585
</template>
8686
<a-input v-model:value="form.url" placeholder="https://ecs.example.com" />
8787
</a-form-item>
8888

8989
<!-- Management API URL -> details[0].value (mgmt_url) -->
9090
<a-form-item name="mgmtUrl" ref="mgmtUrl" :rules="[{ required: true, message: $t('label.required') }]">
9191
<template #label>
92-
<tooltip-label :title="'ECS Management URL'" :tooltip="'ECS management API base URL (mgmt_url), e.g. https://ecs-api.example.com:4443'"/>
92+
<tooltip-label :title="'ECS API URL'" :tooltip="'ECS management API URL'"/>
9393
</template>
9494
<a-input v-model:value="form.mgmtUrl" placeholder="https://ecs-api.elcld.net" />
9595
</a-form-item>
9696

9797
<!-- S3 host (hostname[:port], no scheme) -> details[1].value (s3_host) -->
9898
<a-form-item name="s3Host" ref="s3Host" :rules="[{ required: true, message: $t('label.required') }]">
9999
<template #label>
100-
<tooltip-label :title="'ECS S3 Host'" :tooltip="'S3 endpoint host (s3_host), e.g. ecs.earthlink.dev'"/>
100+
<tooltip-label :title="'ECS Private URL'" :tooltip="'The internal S3 endpoint URL used by CloudStack to communicate with ECS.May be the same as the Public URL.'"/>
101101
</template>
102-
<a-input v-model:value="form.s3Host" placeholder="ecs.earthlink.dev" />
102+
<a-input v-model:value="form.s3Host" placeholder="https://ecs.example.com" />
103103
</a-form-item>
104104

105105
<!-- Service account user -> details[2].value (sa_user) -->
106106
<a-form-item name="accessKey" ref="accessKey">
107107
<template #label>
108-
<tooltip-label :title="'ECS service account user'" :tooltip="'Service account user (sa_user), e.g. cloudstack'"/>
108+
<tooltip-label :title="'ECS service account user'" :tooltip="'Service account user, e.g. cloudstack'"/>
109109
</template>
110110
<a-input v-model:value="form.accessKey" placeholder="cloudstack" />
111111
</a-form-item>

0 commit comments

Comments
 (0)