Skip to content

Commit 16656d7

Browse files
committed
chore: add ClusterStatusType, ClusterFilterType
1 parent 627f85d commit 16656d7

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

src/Pages/ResourceBrowser/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@
1616

1717
export * from './ResourceBrowser.Types'
1818
export * from './Helper'
19+
export * from './types'

src/Pages/ResourceBrowser/types.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export enum ClusterFiltersType {
2+
ALL_CLUSTERS = 'all',
3+
HEALTHY = 'healthy',
4+
UNHEALTHY = 'unhealthy',
5+
}
6+
7+
export enum ClusterStatusType {
8+
HEALTHY = 'healthy',
9+
UNHEALTHY = 'unhealthy',
10+
CONNECTION_FAILED = 'connection failed',
11+
}

0 commit comments

Comments
 (0)