This is an automated email from the ASF dual-hosted git repository.
rohit pushed a commit to branch 4.19
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/4.19 by this push:
new a6e9aec769f Fix Kubernetes cluster listing when user is unable to
scale (#9867)
a6e9aec769f is described below
commit a6e9aec769f316ff693f1d97a0bf9ce42605327b
Author: Henrique Sato <[email protected]>
AuthorDate: Thu Nov 7 06:12:15 2024 -0300
Fix Kubernetes cluster listing when user is unable to scale (#9867)
Co-authored-by: Henrique Sato <[email protected]>
---
ui/src/config/section/compute.js | 2 +-
ui/src/views/compute/KubernetesServiceTab.vue | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/ui/src/config/section/compute.js b/ui/src/config/section/compute.js
index 2570d8a2651..37bccf86758 100644
--- a/ui/src/config/section/compute.js
+++ b/ui/src/config/section/compute.js
@@ -537,7 +537,7 @@ export default {
if (store.listAllProjects) {
fields.push('project')
}
- if (store.apis.scaleKubernetesCluster.params.filter(x => x.name ===
'autoscalingenabled').length > 0) {
+ if (store.apis.scaleKubernetesCluster?.params?.filter(x => x.name ===
'autoscalingenabled').length > 0) {
fields.splice(2, 0, 'autoscalingenabled')
}
fields.push('zonename')
diff --git a/ui/src/views/compute/KubernetesServiceTab.vue
b/ui/src/views/compute/KubernetesServiceTab.vue
index c2e8891b9a0..4e0a76f8d31 100644
--- a/ui/src/views/compute/KubernetesServiceTab.vue
+++ b/ui/src/views/compute/KubernetesServiceTab.vue
@@ -278,7 +278,7 @@ export default {
}
},
mounted () {
- if (this.$store.getters.apis.scaleKubernetesCluster.params.filter(x =>
x.name === 'nodeids').length > 0 && this.resource.clustertype ===
'CloudManaged') {
+ if (this.$store.getters.apis.scaleKubernetesCluster?.params?.filter(x =>
x.name === 'nodeids').length > 0 && this.resource.clustertype ===
'CloudManaged') {
this.vmColumns.push({
key: 'actions',
title: this.$t('label.actions'),