update target environment type page based on latest design (#4311)

This commit is contained in:
Alan Ren
2019-03-06 21:21:47 -08:00
committed by GitHub
parent 428dd17d54
commit 68418f2c8f
5 changed files with 49 additions and 20 deletions

View File

@@ -52,6 +52,8 @@ export interface ContainerRegistryInfo {
export interface TargetClusterTypeInfo {
type: TargetClusterType;
name: string;
fullName: string;
description: string;
iconPath: {
dark: string,
light: string
@@ -61,6 +63,7 @@ export interface TargetClusterTypeInfo {
export interface ToolInfo {
name: string;
description: string;
version: string;
status: ToolInstallationStatus;
}
@@ -72,9 +75,9 @@ export enum ToolInstallationStatus {
}
export enum ClusterType {
Unknown = 0,
AKS,
Unknown = 0,
AKS,
Minikube,
Kubernetes,
Other
Other
}