Skip to content

Commit

Permalink
added cluster todos to remove some methods
Browse files Browse the repository at this point in the history
Signed-off-by: Jeromy Cannon <[email protected]>
  • Loading branch information
jeromy-cannon committed Feb 11, 2025
1 parent 08aeda9 commit d77f122
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/kube/resources/cluster/clusters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ export interface Clusters {
* Returns a list of clusters that are in the kubeconfig file
* @returns a list of cluster names
*/
list(): string[];
list(): string[]; // TODO should this be removed and `solo cluster list` use local config cluster list?

/**
* Returns the current cluster name as defined in the kubeconfig file
* @returns the current cluster name
*/
readCurrent(): string;
readCurrent(): string; // TODO remove read current cluster, this should not be needed
}

0 comments on commit d77f122

Please sign in to comment.