I have declared three variables like below:
- cluster=label_values(kube_node_info,cluster)
- namespace=label_values(kube_pod_info{cluster=“$cluster”}, namespace)
- pod=label_values(kube_pod_info{kube_namespace_name=~“$namespace”, kube_cluster_name=~“$cluster”},pod)
when i selecting value for cluster it should update namespace variable and show only namespaces specific to that cluster only but this is not happening. similar case for pods as well