Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions pkg/features/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,9 @@ var (
// VulnerabilityReportsEnhancedFiltering enables filtering similar to view-based reports in scheduled vulnerability reports
VulnerabilityReportsEnhancedFiltering = registerFeature("Enables filtering similar to view-based reports in scheduled vulnerability reports", "ROX_VULNERABILITY_REPORTS_ENHANCED_FILTERING")

// NodeVulnerabilityReports enables interface for (future) node vulnerability reports to develop in parallel with image vulnerability reports
NodeVulnerabilityReports = registerFeature("Enables interface for scheduled node vulnerability reports", "ROX_NODE_VULNERABILITY_REPORTS")

// VirtualMachinesEnhancedDataModel enables usage of the enhanced and more flexible data model
VirtualMachinesEnhancedDataModel = registerFeature("Enables virtual machine enhanced data model", "ROX_VIRTUAL_MACHINES_ENHANCED_DATA_MODEL")

Expand Down
3 changes: 3 additions & 0 deletions tests/e2e/lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ export_test_environment() {
ci_export ROX_BASE_IMAGE_DETECTION "${ROX_BASE_IMAGE_DETECTION:-true}"
ci_export ROX_LABEL_BASED_POLICY_SCOPING "${ROX_LABEL_BASED_POLICY_SCOPING:-true}"
ci_export ROX_VULNERABILITY_REPORTS_ENHANCED_FILTERING "${ROX_VULNERABILITY_REPORTS_ENHANCED_FILTERING:-true}"
ci_export ROX_NODE_VULNERABILITY_REPORTS "${ROX_NODE_VULNERABILITY_REPORTS:-true}"
ci_export ROX_NETFLOW_BATCHING "${ROX_NETFLOW_BATCHING:-true}"
ci_export ROX_NETFLOW_CACHE_LIMITING "${ROX_NETFLOW_CACHE_LIMITING:-true}"
ci_export ROX_TAILORED_PROFILES "${ROX_TAILORED_PROFILES:-true}"
Expand Down Expand Up @@ -349,6 +350,8 @@ deploy_central_via_operator() {
customize_envVars+=$'\n value: "true"'
customize_envVars+=$'\n - name: ROX_VULNERABILITY_REPORTS_ENHANCED_FILTERING'
customize_envVars+=$'\n value: "true"'
customize_envVars+=$'\n - name: ROX_NODE_VULNERABILITY_REPORTS'
customize_envVars+=$'\n value: "true"'
customize_envVars+=$'\n - name: ROX_BASE_IMAGE_DETECTION'
customize_envVars+=$'\n value: "false"'
customize_envVars+=$'\n - name: ROX_TAILORED_PROFILES'
Expand Down
1 change: 1 addition & 0 deletions ui/apps/platform/src/types/featureFlag.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export type FeatureFlagEnvVar =
| 'ROX_FLATTEN_IMAGE_DATA'
| 'ROX_LABEL_BASED_POLICY_SCOPING'
| 'ROX_NODE_INDEX_ENABLED'
| 'ROX_NODE_VULNERABILITY_REPORTS'
| 'ROX_POLICY_CRITERIA_MODAL'
| 'ROX_SCANNER_V4'
| 'ROX_SENSITIVE_FILE_ACTIVITY'
Expand Down
Loading