Skip to content

Commit

Permalink
Fix registry-proxies flag
Browse files Browse the repository at this point in the history
Change-Id: Ie82c2558bc48974d1b0868b375f4c4dedb4acab3
  • Loading branch information
miguelbernadi committed Mar 8, 2024
1 parent d6f9a1b commit 1389995
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/noe/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func main() {
flag.StringVar(&schedulableArchs, "cluster-schedulable-archs", "", "Comma separated list of architectures schedulable in the cluster")
flag.StringVar(&systemOS, "system-os", "linux", "Sole OS supported by the system")
flag.StringVar(&metricsAddr, "metrics-addr", ":8080", "The address the metric endpoint binds to.")
flag.StringVar(&metricsAddr, "registry-proxies", "", "Proxies to substitute in the registry URL in the form of docker.io=docker-proxy.company.corp,quay.io=quay-proxy.company.corp")
flag.StringVar(&registryProxies, "registry-proxies", "", "Proxies to substitute in the registry URL in the form of docker.io=docker-proxy.company.corp,quay.io=quay-proxy.company.corp")
flag.StringVar(&matchNodeLabels, "match-node-labels", "", "A set of pod label keys to match against node labels in the form of key1,key2")
flag.Parse()

Expand Down

0 comments on commit 1389995

Please sign in to comment.