Alanren/bdc (#4161)

* wip

* target cluster type page

* finish target cluster type page

* remove commented line
This commit is contained in:
Alan Ren
2019-02-25 14:04:12 -08:00
committed by GitHub
parent 779ca13d48
commit a71be2b193
10 changed files with 512 additions and 109 deletions

View File

@@ -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
}