diff --git a/CHANGELOG.md b/CHANGELOG.md index ab17963..2562abc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to the `Red Hat OpenShift Application Services` extension will be documented in this file. -## 0.0.3 (23/08/2021) +## 0.0.3 (24/08/2021) - Create and delete remote RHOSAK clusters [#3](https://github.com/redhat-developer/vscode-rhoas/pull/3). - Update logo diff --git a/doc/images/cluster-dashboard.png b/doc/images/cluster-dashboard.png index 0636375..ef9a1d7 100644 Binary files a/doc/images/cluster-dashboard.png and b/doc/images/cluster-dashboard.png differ diff --git a/doc/images/create-rhosak.gif b/doc/images/create-rhosak.gif index 400e8e0..345d7d6 100644 Binary files a/doc/images/create-rhosak.gif and b/doc/images/create-rhosak.gif differ diff --git a/doc/kafkaSupport.md b/doc/kafkaSupport.md index 4407340..9279b69 100644 --- a/doc/kafkaSupport.md +++ b/doc/kafkaSupport.md @@ -50,8 +50,8 @@ Please read the [`Tools for Apache Kafka` documentation](https://github.com/jlan If you want to create a new remote cluster, you can do so by clicking on the `Create new remote cluster` button, after trying to discover existing clusters. You will then need to select: - a cluster name, - the cloud provider (only `Amazon Web Services` is available at the moment), -- the cloud region (only `us-east-1` is available at the moment), -- multizone (`true` is the only choice at the moment). +- the cloud region (only `US East, N. Virginia` is available at the moment), +- availability zones (only `Multi` is available at the moment). Creating the cluster usually takes 3 to 4 minutes. A progress dialog will be displayed while the cluster is being created. diff --git a/src/wizard.ts b/src/wizard.ts index fa84933..cbf26ca 100644 --- a/src/wizard.ts +++ b/src/wizard.ts @@ -153,13 +153,13 @@ async function inputRegion(input: MultiStepInput, state: Partial) { - const choices: QuickPickItem[] = [{label:'true'}]; + const choices: QuickPickItem[] = [{label:'Multi'}]; state.multi_az = choices[0] === (await input.showQuickPick({ - title: "Multizone", + title: "Availability zones", step: input.getStepNumber(), totalSteps: state.totalSteps, items: choices, activeItem: choices.find(item => item.label === `${state.multi_az}`), - prompt: 'Multizone', + prompt: 'Availability zones', })); }