diff --git a/docs/docs/references/configuration/cli/trivy_kubernetes.md b/docs/docs/references/configuration/cli/trivy_kubernetes.md index 27859bf3d744..883a788c0735 100644 --- a/docs/docs/references/configuration/cli/trivy_kubernetes.md +++ b/docs/docs/references/configuration/cli/trivy_kubernetes.md @@ -89,9 +89,9 @@ trivy kubernetes [flags] { cluster | all | specific resources like kubectl. eg: -s, --severity strings severities of security issues to be displayed (UNKNOWN,LOW,MEDIUM,HIGH,CRITICAL) (default [UNKNOWN,LOW,MEDIUM,HIGH,CRITICAL]) --show-suppressed [EXPERIMENTAL] show suppressed vulnerabilities --skip-db-update skip updating vulnerability database - --skip-deep skip the deep scan of the resources --skip-dirs strings specify the directories or glob patterns to skip --skip-files strings specify the files or glob patterns to skip + --skip-images skip the scanning of images in the resources --skip-java-db-update skip updating Java index database --skip-policy-update skip fetching rego policy updates -t, --template string output template diff --git a/pkg/flag/kubernetes_flags.go b/pkg/flag/kubernetes_flags.go index 52bc77ef6db5..f91d3604389d 100644 --- a/pkg/flag/kubernetes_flags.go +++ b/pkg/flag/kubernetes_flags.go @@ -72,7 +72,7 @@ var ( SkipImages = Flag[bool]{ Name: "skip-images", ConfigName: "kubernetes.skip.images", - Usage: "skip the images scan of the resources", + Usage: "skip the scanning of images in the resources", } ExcludeNodes = Flag[[]string]{ Name: "exclude-nodes",