This is an automated email from the ASF dual-hosted git repository.
nvazquez pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/main by this push:
new c249e25d74 ui: Fix create kubernetes cluster with ha enabled (#6416)
c249e25d74 is described below
commit c249e25d74fd50b9751b5afa1b5f91f249592290
Author: David Jumani <[email protected]>
AuthorDate: Mon May 30 17:59:26 2022 +0530
ui: Fix create kubernetes cluster with ha enabled (#6416)
---
ui/src/views/compute/CreateKubernetesCluster.vue | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ui/src/views/compute/CreateKubernetesCluster.vue
b/ui/src/views/compute/CreateKubernetesCluster.vue
index ef7d7395b1..8cc666d878 100644
--- a/ui/src/views/compute/CreateKubernetesCluster.vue
+++ b/ui/src/views/compute/CreateKubernetesCluster.vue
@@ -137,7 +137,7 @@
</template>
<a-switch v-model:checked="form.haenable" />
</a-form-item>
- <a-form-item v-if="form.haenable">
+ <a-form-item v-if="form.haenable" name="controlnodes"
ref="controlnodes">
<template #label>
<tooltip-label :title="$t('label.controlnodes')"
:tooltip="apiParams.controlnodes.description"/>
</template>
@@ -145,7 +145,7 @@
v-model:value="form.controlnodes"
:placeholder="apiParams.controlnodes.description"/>
</a-form-item>
- <a-form-item v-if="form.haenable">
+ <a-form-item v-if="form.haenable" name="externalloadbalanceripaddress"
ref="externalloadbalanceripaddress">
<template #label>
<tooltip-label :title="$t('label.externalloadbalanceripaddress')"
:tooltip="apiParams.externalloadbalanceripaddress.description"/>
</template>