Skip to content

Commit 2038d26

Browse files
committed
feat: update strategies type
1 parent 47d90c7 commit 2038d26

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed
Lines changed: 3 additions & 0 deletions
Loading

src/Shared/Components/Icon/Icon.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ import { ReactComponent as ICPencil } from '@IconsV2/ic-pencil.svg'
104104
import { ReactComponent as ICPlayOutline } from '@IconsV2/ic-play-outline.svg'
105105
import { ReactComponent as ICQuay } from '@IconsV2/ic-quay.svg'
106106
import { ReactComponent as ICQuote } from '@IconsV2/ic-quote.svg'
107+
import { ReactComponent as ICRocketGear } from '@IconsV2/ic-rocket-gear.svg'
107108
import { ReactComponent as ICRocketLaunch } from '@IconsV2/ic-rocket-launch.svg'
108109
import { ReactComponent as ICSelected } from '@IconsV2/ic-selected.svg'
109110
import { ReactComponent as ICShieldCheck } from '@IconsV2/ic-shield-check.svg'
@@ -243,6 +244,7 @@ export const iconMap = {
243244
'ic-play-outline': ICPlayOutline,
244245
'ic-quay': ICQuay,
245246
'ic-quote': ICQuote,
247+
'ic-rocket-gear': ICRocketGear,
246248
'ic-rocket-launch': ICRocketLaunch,
247249
'ic-selected': ICSelected,
248250
'ic-shield-check': ICShieldCheck,

src/Shared/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1160,7 +1160,7 @@ export interface IntelligenceConfig {
11601160
analyticsCategory: string
11611161
}
11621162

1163-
export type DeploymentStrategyType = 'CANARY' | 'ROLLING' | 'RECREATE' | 'BLUE-GREEN'
1163+
export type DeploymentStrategyType = 'CANARY' | 'ROLLING' | 'RECREATE' | 'BLUE-GREEN' | 'ROLLINGUPDATE' | 'ONDELETE'
11641164

11651165
export type DeploymentStrategyTypeWithDefault = DeploymentStrategyType | 'DEFAULT'
11661166

0 commit comments

Comments
 (0)