File tree Expand file tree Collapse file tree 4 files changed +8
-2
lines changed
Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ import {
3333import { DeploymentStageType } from '../../constants'
3434import {
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-
806805export interface DeploymentStrategy {
807806 deploymentTemplate : DeploymentStrategyType
808807 config : any
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ import { ReactComponent as ICEnv } from '@IconsV2/ic-env.svg'
4848import { ReactComponent as ICError } from '@IconsV2/ic-error.svg'
4949import { ReactComponent as ICFailure } from '@IconsV2/ic-failure.svg'
5050import { ReactComponent as ICFileKey } from '@IconsV2/ic-file-key.svg'
51+ import { ReactComponent as ICFlask } from '@IconsV2/ic-flask.svg'
5152import { ReactComponent as ICFolderUser } from '@IconsV2/ic-folder-user.svg'
5253import { ReactComponent as ICGear } from '@IconsV2/ic-gear.svg'
5354import { 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 ,
Original file line number Diff line number Diff 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'
You can’t perform that action at this time.
0 commit comments