diff --git a/docs/data/tetragon_flags.yaml b/docs/data/tetragon_flags.yaml index f1f80a7d5b1..ba3f347b556 100644 --- a/docs/data/tetragon_flags.yaml +++ b/docs/data/tetragon_flags.yaml @@ -64,7 +64,7 @@ options: usage: Enable PodInfo custom resource - name: enable-policy-filter default_value: "false" - usage: Enable policy filter code (beta) + usage: Enable policy filter code - name: enable-policy-filter-debug default_value: "false" usage: Enable policy filter debug messages diff --git a/pkg/option/flags.go b/pkg/option/flags.go index ba62a53167a..94ef9ad1f53 100644 --- a/pkg/option/flags.go +++ b/pkg/option/flags.go @@ -363,7 +363,7 @@ func AddFlags(flags *pflag.FlagSet) { // Provide option to enable policy filtering. Because the code is new, // this is set to false by default. - flags.Bool(KeyEnablePolicyFilter, false, "Enable policy filter code (beta)") + flags.Bool(KeyEnablePolicyFilter, false, "Enable policy filter code") flags.Bool(KeyEnablePolicyFilterDebug, false, "Enable policy filter debug messages") // Provide option to enable the pidSet export filters.