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 @@ -145,6 +145,9 @@ var (

// EvaluationFilter enables evaluation filtering in policy evaluation.
EvaluationFilter = registerFeature("Enable evaluation filtering in policy evaluation", "ROX_EVALUATION_FILTER")

// VulnMgmtDateRangeFilter enables date/time range filtering conditions in Vulnerability Management 2.0 advanced filters
VulnMgmtDateRangeFilter = registerFeature("Enables date/time range filtering in Vulnerability Management 2.0", "ROX_VULN_MGMT_DATE_RANGE_FILTER")
)

// The following feature flags are related to Scanner V4.
Expand Down
3 changes: 3 additions & 0 deletions tests/e2e/lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,7 @@ export_test_environment() {
ci_export ROX_NETFLOW_BATCHING "${ROX_NETFLOW_BATCHING:-true}"
ci_export ROX_NETFLOW_CACHE_LIMITING "${ROX_NETFLOW_CACHE_LIMITING:-true}"
ci_export ROX_INIT_CONTAINER_SUPPORT "${ROX_INIT_CONTAINER_SUPPORT:-true}"
ci_export ROX_VULN_MGMT_DATE_RANGE_FILTER "${ROX_VULN_MGMT_DATE_RANGE_FILTER:-true}"
ci_export SCANNER_V4_VULN_READINESS "${SCANNER_V4_VULN_READINESS:-true}"

if is_in_PR_context && pr_has_label ci-fail-fast; then
Expand Down Expand Up @@ -563,6 +564,8 @@ deploy_central_via_operator() {
customize_envVars+=$'\n value: "true"'
customize_envVars+=$'\n - name: ROX_INIT_CONTAINER_SUPPORT'
customize_envVars+=$'\n value: "true"'
customize_envVars+=$'\n - name: ROX_VULN_MGMT_DATE_RANGE_FILTER'
customize_envVars+=$'\n value: "true"'
if [[ "${ROX_VIRTUAL_MACHINES:-}" == "true" ]]; then
customize_envVars+=$'\n - name: ROX_VIRTUAL_MACHINES'
customize_envVars+=$'\n value: "true"'
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 @@ -17,5 +17,6 @@ export type FeatureFlagEnvVar =
| 'ROX_SENSITIVE_FILE_ACTIVITY'
| 'ROX_VIRTUAL_MACHINES'
| 'ROX_VIRTUAL_MACHINES_ENHANCED_DATA_MODEL'
| 'ROX_VULN_MGMT_DATE_RANGE_FILTER'
| 'ROX_VULN_MGMT_LEGACY_SNOOZE'
;
Loading