diff --git a/userspace/falco/app/options.cpp b/userspace/falco/app/options.cpp index 1f9db8c4475..8f9cfff243f 100644 --- a/userspace/falco/app/options.cpp +++ b/userspace/falco/app/options.cpp @@ -203,8 +203,8 @@ void options::define(cxxopts::Options& opts) ("K,k8s-api-cert", "Use the provided files names to authenticate user and (optionally) verify the K8S API server identity. Each entry must specify full (absolute, or relative to the current directory) path to the respective file. Private key password is optional (needed only if key is password protected). CA certificate is optional. For all files, only PEM file format is supported. Specifying CA certificate only is obsoleted - when single entry is provided for this option, it will be interpreted as the name of a file containing bearer token. Note that the format of this command-line option prohibits use of files whose names contain ':' or '#' characters in the file name.", cxxopts::value(k8s_api_cert), "( | :[:])") ("k8s-node", "The node name will be used as a filter when requesting metadata of pods to the API server. Usually, this should be set to the current node on which Falco is running. If empty, no filter is set, which may have a performance penalty on large clusters.", cxxopts::value(k8s_node_name), "") #endif - ("L", "Show the name and description of all rules and exit.", cxxopts::value(describe_all_rules)->default_value("false")) - ("l", "Show the name and description of the rule with name and exit.", cxxopts::value(describe_rule), "") + ("L", "Show the name and description of all rules and exit. If json_output is set to true, it prints details about all rules, macros and lists in JSON format", cxxopts::value(describe_all_rules)->default_value("false")) + ("l", "Show the name and description of the rule with name and exit. If json_output is set to true, it prints details about the rule in JSON format", cxxopts::value(describe_rule), "") ("list", "List all defined fields. If is provided, only list those fields for the source . Current values for are \"syscall\" or any source from a configured plugin with event sourcing capability.", cxxopts::value(list_source_fields)->implicit_value(""), "") ("list-syscall-events", "List all defined system call events.", cxxopts::value(list_syscall_events)) #ifndef MUSL_OPTIMIZED