|
81 | 81 | <!-- S3 URL (for UI: this becomes addObjectStoragePool url=...) --> |
82 | 82 | <a-form-item name="url" ref="url"> |
83 | 83 | <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'"/> |
85 | 85 | </template> |
86 | 86 | <a-input v-model:value="form.url" placeholder="https://ecs.example.com" /> |
87 | 87 | </a-form-item> |
88 | 88 |
|
89 | 89 | <!-- Management API URL -> details[0].value (mgmt_url) --> |
90 | 90 | <a-form-item name="mgmtUrl" ref="mgmtUrl" :rules="[{ required: true, message: $t('label.required') }]"> |
91 | 91 | <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'"/> |
93 | 93 | </template> |
94 | 94 | <a-input v-model:value="form.mgmtUrl" placeholder="https://ecs-api.elcld.net" /> |
95 | 95 | </a-form-item> |
96 | 96 |
|
97 | 97 | <!-- S3 host (hostname[:port], no scheme) -> details[1].value (s3_host) --> |
98 | 98 | <a-form-item name="s3Host" ref="s3Host" :rules="[{ required: true, message: $t('label.required') }]"> |
99 | 99 | <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.'"/> |
101 | 101 | </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" /> |
103 | 103 | </a-form-item> |
104 | 104 |
|
105 | 105 | <!-- Service account user -> details[2].value (sa_user) --> |
106 | 106 | <a-form-item name="accessKey" ref="accessKey"> |
107 | 107 | <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'"/> |
109 | 109 | </template> |
110 | 110 | <a-input v-model:value="form.accessKey" placeholder="cloudstack" /> |
111 | 111 | </a-form-item> |
|
0 commit comments