diff --git a/app/_src/kic-v2/references/cli-arguments-2.12.x.md b/app/_src/kic-v2/references/cli-arguments-2.12.x.md index a2e15e5345bb..0cf72c5ab156 100644 --- a/app/_src/kic-v2/references/cli-arguments-2.12.x.md +++ b/app/_src/kic-v2/references/cli-arguments-2.12.x.md @@ -43,9 +43,11 @@ and not CLI flags. | `--dump-sensitive-config` | `bool` | Include credentials and TLS secrets in configs exposed with --dump-config. | `false` | | `--election-id` | `string` | Election id to use for status update. | `5b374a9e.konghq.com` | | `--election-namespace` | `string` | Leader election namespace to use when running outside a cluster. | | +| `--emit-kubernetes-events` | `bool` | Emit Kubernetes events for successful configuration applies, translation failures and configuration apply failures on managed objects. | `true` | | `--enable-controller-ingress-class-networkingv1` | `bool` | Enable the networking.k8s.io/v1 IngressClass controller. | `true` | | `--enable-controller-ingress-class-parameters` | `bool` | Enable the IngressClassParameters controller. | `true` | | `--enable-controller-ingress-networkingv1` | `bool` | Enable the networking.k8s.io/v1 Ingress controller. | `true` | +| `--enable-controller-knativeingress` | `bool` | Enable the KnativeIngress controller. | `true` | | `--enable-controller-kongclusterplugin` | `bool` | Enable the KongClusterPlugin controller. | `true` | | `--enable-controller-kongconsumer` | `bool` | Enable the KongConsumer controller. . | `true` | | `--enable-controller-kongingress` | `bool` | Enable the KongIngress controller. | `true` | @@ -59,6 +61,7 @@ and not CLI flags. | `--gateway-discovery-dns-strategy` | `dns-strategy` | DNS strategy to use when creating Gateway's Admin API addresses. One of: ip, service, pod. | `"ip"` | | `--health-probe-bind-address` | `string` | The address the probe endpoint binds to. | `:10254` | | `--ingress-class` | `string` | Name of the ingress class to route through this controller. | `kong` | +| `--init-cache-sync-duration` | `duration` | The initial delay to wait for Kubernetes object caches to be synced before the initial configuration. | `5s` | | `--kong-admin-ca-cert` | `string` | PEM-encoded CA certificate to verify Kong's Admin SSL certificate. | | | `--kong-admin-ca-cert-file` | `string` | Path to PEM-encoded CA certificate file to verify Kong's Admin SSL certificate. | | | `--kong-admin-concurrency` | `int` | Max number of concurrent requests sent to Kong's Admin API. | `10` | @@ -104,6 +107,6 @@ and not CLI flags. | `--term-delay` | `duration` | The time delay to sleep before SIGTERM or SIGINT will shut down the Ingress Controller. | `0s` | | `--update-status` | `bool` | Indicates if the ingress controller should update the status of resources (e.g. IP/Hostname for v1.Ingress, e.t.c.). | `true` | | `--update-status-queue-buffer-size` | `int` | Buffer size of the underlying channels used to update the status of resources. | `8192` | -| `--watch-namespace` | `stringSlice` | Namespace(s) to watch for Kubernetes resources. Defaults to all namespaces. To watch multiple namespaces, use a comma-separated list of namespaces. | `[]` | +| `--watch-namespace` | `stringSlice` | Namespace(s) in comma-separated format (or specify this flag multiple times) to watch for Kubernetes resources. Defaults to all namespaces. | `[]` | diff --git a/app/_src/kic-v2/references/custom-resources-2.12.x.md b/app/_src/kic-v2/references/custom-resources-2.12.x.md index e2189e279631..357523a67f07 100644 --- a/app/_src/kic-v2/references/custom-resources-2.12.x.md +++ b/app/_src/kic-v2/references/custom-resources-2.12.x.md @@ -191,7 +191,7 @@ KongIngressUpstream contains KongIngress upstream configuration. It contains the | Field | Description | | --- | --- | | `host_header` _string_ | HostHeader is The hostname to be used as Host header when proxying requests through Kong. | -| `algorithm` _string_ | Algorithm is the load balancing algorithm to use. Accepted values are: `round-robin`, `consistent-hashing`, `least-connections`, `latency`. | +| `algorithm` _string_ | Algorithm is the load balancing algorithm to use. | | `slots` _integer_ | Slots is the number of slots in the load balancer algorithm. | | `healthchecks` _Healthcheck_ | Healthchecks defines the health check configurations in Kong. | | `hash_on` _string_ | HashOn defines what to use as hashing input. Accepted values are: "none", "consumer", "ip", "header", "cookie", "path", "query_arg", "uri_capture". |