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/cli-arguments.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,11 +33,7 @@
33
33
|`--gateway-api-controller-name`|`string`| The controller name to match on Gateway API resources. |`konghq.com/kic-gateway-controller`|
34
34
|`--gateway-discovery-dns-strategy`|`dns-strategy`| DNS strategy to use when creating Gateway's Admin API addresses. One of: ip, service, pod. |`"ip"`|
35
35
|`--health-probe-bind-address`|`string`| The address the probe endpoint binds to. |`:10254`|
36
-
|`--ingress-address`|`stringSlice`| User-provided address(es) in comma-separated string format (or specify this flag multiple times), for use in lieu of "publish-service" when that Service lacks useful address information (for example, in bare-metal environments). |`[]`|
37
-
|`--ingress-address-udp`|`stringSlice`| User-provided address(es) in comma-separated string format (or specify this flag multiple times), for use in lieu of "publish-service-udp" when that Service lacks useful address information. |`[]`|
38
36
|`--ingress-class`|`string`| Name of the ingress class to route through this controller. |`kong`|
39
-
|`--ingress-service`|`namespacedName`| Service fronting Ingress resources in "namespace/name" format. The controller will update Ingress status information with this Service's endpoints. ||
40
-
|`--ingress-service-udp`|`namespacedName`| Service fronting UDP routing resources in "namespace/name" format. The controller will update UDP route status information with this Service's endpoints. If omitted, the same Service will be used for both TCP and UDP routes. ||
41
37
|`--kong-admin-ca-cert`|`string`| PEM-encoded CA certificate to verify Kong's Admin SSL certificate. ||
42
38
|`--kong-admin-ca-cert-file`|`string`| Path to PEM-encoded CA certificate file to verify Kong's Admin SSL certificate. ||
43
39
|`--kong-admin-concurrency`|`int`| Max number of concurrent requests sent to Kong's Admin API. |`10`|
@@ -75,6 +71,10 @@
75
71
|`--profiling`|`bool`| Enable profiling via web interface host:10256/debug/pprof/. |`false`|
76
72
|`--proxy-sync-seconds`|`float32`| Define the rate (in seconds) in which configuration updates will be applied to the Kong Admin API. |`3`|
77
73
|`--proxy-timeout-seconds`|`float32`| Sets the timeout (in seconds) for all requests to Kong's Admin API. |`30`|
74
+
|`--publish-service`|`namespacedName`| Service fronting Ingress resources in "namespace/name" format. The controller will update Ingress status information with this Service's endpoints. ||
75
+
|`--publish-service-udp`|`namespacedName`| Service fronting UDP routing resources in "namespace/name" format. The controller will update UDP route status information with this Service's endpoints. If omitted, the same Service will be used for both TCP and UDP routes. ||
76
+
|`--publish-status-address`|`stringSlice`| User-provided addresses in comma-separated string format, for use in lieu of "publish-service" when that Service lacks useful address information (for example, in bare-metal environments). |`[]`|
77
+
|`--publish-status-address-udp`|`stringSlice`| User-provided address CSV, for use in lieu of "publish-service-udp" when that Service lacks useful address information. |`[]`|
78
78
|`--skip-ca-certificates`|`bool`| Disable syncing CA certificate syncing (for use with multi-workspace environments). |`false`|
79
79
|`--sync-period`|`duration`| Relist and confirm cloud resources this often. |`48h0m0s`|
80
80
|`--term-delay`|`duration`| The time delay to sleep before SIGTERM or SIGINT will shut down the Ingress Controller. |`0s`|
`User-provided address(es) in comma-separated string format (or specify this flag multiple times), for use in lieu of "publish-service-udp" when that Service lacks useful address information.`)
flagSet.DurationVar(&c.Konnect.RefreshNodePeriod, "konnect-refresh-node-period", konnect.DefaultRefreshNodePeriod, "Period of uploading status of KIC and controlled kong gateway instances")
_=flagSet.Int("stderrthreshold", 0, "Has no effect and will be removed in future releases (see github issue #1297)")
279
+
_=flagSet.MarkDeprecated("stderrthreshold", "Has no effect and will be removed in future releases (see github issue #1297)")
280
+
281
+
_=flagSet.Bool("update-status-on-shutdown", false, "No longer has any effect and will be removed in a later release (see github issue #1304)")
282
+
_=flagSet.MarkDeprecated("update-status-on-shutdown", "No longer has any effect and will be removed in a later release (see github issue #1304)")
283
+
284
+
_=flagSet.String("kong-custom-entities-secret", "", "Will be removed in next major release.")
285
+
_=flagSet.MarkDeprecated("kong-custom-entities-secret", "Will be removed in next major release.")
286
+
287
+
_=flagSet.Bool("leader-elect", false, "DEPRECATED as of 2.1.0: leader election behavior is determined automatically based on the Kong database setting and this flag has no effect")
288
+
_=flagSet.MarkDeprecated("leader-elect", "DEPRECATED as of 2.1.0: leader election behavior is determined automatically based on the Kong database setting and this flag has no effect")
289
+
290
+
_=flagSet.Bool("enable-controller-ingress-extensionsv1beta1", true, "DEPRECATED: Enable the extensions/v1beta1 Ingress controller.")
291
+
_=flagSet.MarkDeprecated("enable-controller-ingress-extensionsv1beta1", "DEPRECATED: Enable the extensions/v1beta1 Ingress controller.")
292
+
293
+
_=flagSet.Bool("enable-controller-ingress-networkingv1beta1", true, "Enable the networking.k8s.io/v1beta1 Ingress controller.")
294
+
_=flagSet.MarkDeprecated("enable-controller-ingress-networkingv1beta1", "Enable the networking.k8s.io/v1beta1 Ingress controller.")
0 commit comments