Skip to content

Commit 227719d

Browse files
committed
chore: update deployment strategy type
1 parent 70b45d7 commit 227719d

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

src/Assets/IconV2/ic-flask.svg

Lines changed: 3 additions & 0 deletions
Loading

src/Shared/Components/CICDHistory/types.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ import {
3333
import { DeploymentStageType } from '../../constants'
3434
import {
3535
AggregationKeys,
36+
DeploymentStrategyType,
3637
GitTriggers,
3738
Node,
3839
NodeType,
@@ -801,8 +802,6 @@ export interface DeploymentHistory {
801802
runSource?: RunSourceType
802803
}
803804

804-
type DeploymentStrategyType = 'CANARY' | 'ROLLING' | 'RECREATE' | 'BLUE_GREEN'
805-
806805
export interface DeploymentStrategy {
807806
deploymentTemplate: DeploymentStrategyType
808807
config: any

src/Shared/Components/Icon/Icon.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ import { ReactComponent as ICEnv } from '@IconsV2/ic-env.svg'
4848
import { ReactComponent as ICError } from '@IconsV2/ic-error.svg'
4949
import { ReactComponent as ICFailure } from '@IconsV2/ic-failure.svg'
5050
import { ReactComponent as ICFileKey } from '@IconsV2/ic-file-key.svg'
51+
import { ReactComponent as ICFlask } from '@IconsV2/ic-flask.svg'
5152
import { ReactComponent as ICFolderUser } from '@IconsV2/ic-folder-user.svg'
5253
import { ReactComponent as ICGear } from '@IconsV2/ic-gear.svg'
5354
import { ReactComponent as ICGit } from '@IconsV2/ic-git.svg'
@@ -175,6 +176,7 @@ export const iconMap = {
175176
'ic-error': ICError,
176177
'ic-failure': ICFailure,
177178
'ic-file-key': ICFileKey,
179+
'ic-flask': ICFlask,
178180
'ic-folder-user': ICFolderUser,
179181
'ic-gear': ICGear,
180182
'ic-git': ICGit,

src/Shared/types.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1159,3 +1159,5 @@ export interface IntelligenceConfig {
11591159
prompt: string
11601160
analyticsCategory: string
11611161
}
1162+
1163+
export type DeploymentStrategyType = 'CANARY' | 'ROLLING' | 'RECREATE' | 'BLUE-GREEN'

0 commit comments

Comments
 (0)