From 769caf8f45b4062196387b330f5f18604aa9ef25 Mon Sep 17 00:00:00 2001 From: Cody Roseborough Date: Mon, 17 Oct 2016 10:24:37 -0700 Subject: [PATCH] Adds label-whitelist option. The --label-whitelist option takes a regex and matches against labels. If set, labels will only be published if they match the whitelist regex. --- main.go | 32 +++++++++++++++++++++++--------- 1 file changed, 23 insertions(+), 9 deletions(-) diff --git a/main.go b/main.go index 8e93c3185..2c6ad4abb 100644 --- a/main.go +++ b/main.go @@ -4,6 +4,7 @@ import ( "fmt" "log" "os" + "regexp" "strings" "github.com/docopt/docopt-go" @@ -60,17 +61,19 @@ func main() { usage := fmt.Sprintf(`%s. Usage: - %s [--no-publish --sources=] + %s [--no-publish --sources= --label-whitelist=] %s -h | --help %s --version Options: - -h --help Show this screen. - --version Output version and exit. - --sources= Comma separated list of feature sources. - [Default: cpuid,rdt,pstate] - --no-publish Do not publish discovered features to the cluster-local - Kubernetes API server.`, + -h --help Show this screen. + --version Output version and exit. + --sources= Comma separated list of feature sources. + [Default: cpuid,rdt,pstate] + --no-publish Do not publish discovered features to the cluster-local + Kubernetes API server. + --label-whitelist= Regular expression to filter label names to publish to the Kubernetes API server. + [Default: ]`, ProgramName, ProgramName, ProgramName, @@ -83,6 +86,7 @@ func main() { // Parse argument values as usable types. noPublish := arguments["--no-publish"].(bool) sourcesArg := strings.Split(arguments["--sources"].(string), ",") + whiteListArg := arguments["--label-whitelist"].(string) enabledSources := map[string]struct{}{} for _, s := range sourcesArg { @@ -103,8 +107,13 @@ func main() { } } - labels := Labels{} + // compile whiteListArg regex + labelWhiteList, err := regexp.Compile(whiteListArg) + if err != nil { + log.Fatalf("Error parsing whitelist regex (%s): %s", whiteListArg, err) + } + labels := Labels{} // Add the version of this discovery code as a node label versionLabel := fmt.Sprintf("%s/%s.version", Namespace, ProgramName) labels[versionLabel] = version @@ -119,9 +128,14 @@ func main() { } for name, value := range labelsFromSource { - labels[name] = value // Log discovered feature. log.Printf("%s = %s", name, value) + // Skip if label doesn't match labelWhiteList + if !labelWhiteList.Match([]byte(name)) { + log.Printf("%s does not match the whitelist (%s) and will not be published.", name, whiteListArg) + continue + } + labels[name] = value } }