Skip to content

Commit

Permalink
fix(help): improve description for CLI flags
Browse files Browse the repository at this point in the history
Minor tweak to clarify what the port number corresponds to
  • Loading branch information
jpetazzo authored and paullaffitte committed Nov 17, 2023
1 parent 50b2069 commit c5fbf75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/cache/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func main() {
"Enable leader election for controller manager. "+
"Enabling this will ensure there is only one active controller manager.")
flag.UintVar(&expiryDelay, "expiry-delay", 30, "The delay in days before deleting an unused CachedImage.")
flag.IntVar(&proxyPort, "proxy-port", 8082, "The port where the proxy is listening on this machine.")
flag.IntVar(&proxyPort, "proxy-port", 8082, "The port on which the registry proxy accepts connections on each host.")
flag.Var(&ignoreImages, "ignore-images", "Regex that represents images to be excluded (this flag can be used multiple times).")
flag.Var(&architectures, "arch", "Architecture of image to put in cache (this flag can be used multiple times).")
flag.StringVar(&registry.Endpoint, "registry-endpoint", "kube-image-keeper-registry:5000", "The address of the registry where cached images are stored.")
Expand Down

0 comments on commit c5fbf75

Please sign in to comment.