Skip to content
This repository has been archived by the owner on Oct 9, 2024. It is now read-only.

Commit

Permalink
Merge pull request #79 from JupiterOne/INT-11589
Browse files Browse the repository at this point in the history
INT-11589 - Enable PODS for POV.
  • Loading branch information
VDubber authored Aug 23, 2024
2 parents b82f1ef + 9ee241a commit a28a17a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ and this project adheres to

## [Unreleased]

## 2.3.3 - 2024-08-22

- Enable PODS step.

## 2.3.2 - 2024-08-13

- Prevent nodes with missing metadata from being created

## 2.3.1 - 2024-07-03

### Changed
Expand Down
8 changes: 6 additions & 2 deletions src/getStepStartStates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,12 @@ export default async function getStepStartStates(
},
[IntegrationSteps.PODS]: {
disabled: !(
instance.accountId == '0c51143d-9728-4f42-8442-4b52be5e8a74' ||
instance.accountId == 'j1dev'
// INT-11589
(
instance.accountId == 'ff5cf2a1-4fb2-4f56-929e-6e79d195da8d' ||
instance.accountId == '0c51143d-9728-4f42-8442-4b52be5e8a74' ||
instance.accountId == 'j1dev'
)
), // INT-10704
},
};
Expand Down

0 comments on commit a28a17a

Please sign in to comment.