We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08aeda9 commit d77f122Copy full SHA for d77f122
src/core/kube/resources/cluster/clusters.ts
@@ -6,11 +6,11 @@ export interface Clusters {
6
* Returns a list of clusters that are in the kubeconfig file
7
* @returns a list of cluster names
8
*/
9
- list(): string[];
+ list(): string[]; // TODO should this be removed and `solo cluster list` use local config cluster list?
10
11
/**
12
* Returns the current cluster name as defined in the kubeconfig file
13
* @returns the current cluster name
14
15
- readCurrent(): string;
+ readCurrent(): string; // TODO remove read current cluster, this should not be needed
16
}
0 commit comments