You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/flags.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@
11
11
|`--kubeconfig=""`| Retrieve target cluster configuration from a Kubernetes configuration file (default: auto-detect) |
12
12
|`--request-timeout=30s`| Request timeout when calling Kubernetes APIs. 0s means no timeout |
13
13
|`--[no-]resolve-service-load-balancer-hostname`| Resolve the hostname of LoadBalancer-type Service object to IP addresses in order to create DNS A/AAAA records instead of CNAMEs |
14
-
|`--[no-]listen-endpoint-events`| Trigger a reconcile on changes to Endpoints, for Service source (default: false) |
14
+
|`--[no-]listen-endpoint-events`| Trigger a reconcile on changes to EndpointSlices, for Service source (default: false) |
15
15
|`--cf-api-endpoint=""`| The fully-qualified domain name of the cloud foundry instance you are targeting |
16
16
|`--cf-username=""`| The username to log into the cloud foundry API |
17
17
|`--cf-password=""`| The password to log into the cloud foundry API |
app.Flag("kubeconfig", "Retrieve target cluster configuration from a Kubernetes configuration file (default: auto-detect)").Default(defaultConfig.KubeConfig).StringVar(&cfg.KubeConfig)
439
439
app.Flag("request-timeout", "Request timeout when calling Kubernetes APIs. 0s means no timeout").Default(defaultConfig.RequestTimeout.String()).DurationVar(&cfg.RequestTimeout)
440
440
app.Flag("resolve-service-load-balancer-hostname", "Resolve the hostname of LoadBalancer-type Service object to IP addresses in order to create DNS A/AAAA records instead of CNAMEs").BoolVar(&cfg.ResolveServiceLoadBalancerHostname)
441
-
app.Flag("listen-endpoint-events", "Trigger a reconcile on changes to Endpoints, for Service source (default: false)").BoolVar(&cfg.ListenEndpointEvents)
441
+
app.Flag("listen-endpoint-events", "Trigger a reconcile on changes to EndpointSlices, for Service source (default: false)").BoolVar(&cfg.ListenEndpointEvents)
442
442
443
443
// Flags related to cloud foundry
444
444
app.Flag("cf-api-endpoint", "The fully-qualified domain name of the cloud foundry instance you are targeting").Default(defaultConfig.CFAPIEndpoint).StringVar(&cfg.CFAPIEndpoint)
log.Debugf("Skipping EndpointSlice %s/%s because its address type is unsupported: %s", endpointSlice.Namespace, endpointSlice.Name, endpointSlice.AddressType)
0 commit comments