Skip to content

Commit a38e5a3

Browse files
committed
fix(help): improve description for CLI flags
Minor tweak to clarify what the port number corresponds to
1 parent bdf4730 commit a38e5a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/cache/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ func main() {
7575
"Enable leader election for controller manager. "+
7676
"Enabling this will ensure there is only one active controller manager.")
7777
flag.UintVar(&expiryDelay, "expiry-delay", 30, "The delay in days before deleting an unused CachedImage.")
78-
flag.IntVar(&proxyPort, "proxy-port", 8082, "The port where the proxy is listening on this machine.")
78+
flag.IntVar(&proxyPort, "proxy-port", 8082, "The port on which the registry proxy accepts connections on each host.")
7979
flag.Var(&ignoreImages, "ignore-images", "Regex that represents images to be excluded (this flag can be used multiple times).")
8080
flag.Var(&architectures, "arch", "Architecture of image to put in cache (this flag can be used multiple times).")
8181
flag.StringVar(&registry.Endpoint, "registry-endpoint", "kube-image-keeper-registry:5000", "The address of the registry where cached images are stored.")

0 commit comments

Comments
 (0)