mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Alanren/bdc (#4161)
* wip * target cluster type page * finish target cluster type page * remove commented line
This commit is contained in:
@@ -12,6 +12,35 @@ export interface ClusterInfo {
|
||||
|
||||
export enum TargetClusterType {
|
||||
ExistingKubernetesCluster,
|
||||
NewLocalCluster,
|
||||
NewAksCluster
|
||||
}
|
||||
|
||||
export interface ClusterPorts {
|
||||
sql: string;
|
||||
knox: string;
|
||||
controller: string;
|
||||
proxy: string;
|
||||
grafana: string;
|
||||
kibana: string;
|
||||
}
|
||||
|
||||
export interface ContainerRegistryInfo {
|
||||
registry: string;
|
||||
repository: string;
|
||||
imageTag: string;
|
||||
}
|
||||
|
||||
export interface TargetClusterTypeInfo {
|
||||
type: TargetClusterType;
|
||||
name: string;
|
||||
iconPath: {
|
||||
dark: string,
|
||||
light: string
|
||||
};
|
||||
}
|
||||
|
||||
export interface ToolInfo {
|
||||
name: string,
|
||||
description: string,
|
||||
isInstalled: boolean
|
||||
}
|
||||
Reference in New Issue
Block a user