From 5c4e10da795430370f4b77653dce39f4d6e0796f Mon Sep 17 00:00:00 2001 From: "kumahq[bot]" <110050114+kumahq[bot]@users.noreply.github.com> Date: Tue, 5 Dec 2023 14:53:18 +0000 Subject: [PATCH] chore(deps): update docs from repo source Signed-off-by: kumahq[bot] <110050114+kumahq[bot]@users.noreply.github.com> --- app/docs/dev/kuma-cp.yaml | 5 +++++ app/docs/dev/protos/Dataplane.json | 19 +++++++++++++++++++ app/docs/dev/protos/DataplaneOverview.json | 19 +++++++++++++++++++ 3 files changed, 43 insertions(+) diff --git a/app/docs/dev/kuma-cp.yaml b/app/docs/dev/kuma-cp.yaml index 7c7df697e..7fc8602ad 100644 --- a/app/docs/dev/kuma-cp.yaml +++ b/app/docs/dev/kuma-cp.yaml @@ -366,6 +366,11 @@ runtime: tcAttachIface: "" # ENV: KUMA_RUNTIME_KUBERNETES_INJECTOR_EBPF_TC_ATTACH_IFACE # Path where compiled eBPF programs are placed programsSourcePath: /kuma/ebpf # ENV: KUMA_RUNTIME_KUBERNETES_INJECTOR_EBPF_PROGRAMS_SOURCE_PATH + # IgnoredServiceSelectorLabels defines a list ignored labels in Service selector. + # If Pod matches a Service with ignored labels, but does not match it fully, it gets Ignored inbound. + # It is useful when you change Service selector and expect traffic to be sent immediately. + # An example of this is ArgoCD's BlueGreen deployment and "rollouts-pod-template-hash" selector. + ignoredServiceSelectorLabels: [] # ENV: KUMA_RUNTIME_KUBERNETES_INJECTOR_IGNORED_SERVICE_SELECTOR_LABELS marshalingCacheExpirationTime: 5m # ENV: KUMA_RUNTIME_KUBERNETES_MARSHALING_CACHE_EXPIRATION_TIME # Kubernetes's resources reconciliation concurrency configuration controllersConcurrency: diff --git a/app/docs/dev/protos/Dataplane.json b/app/docs/dev/protos/Dataplane.json index a6888446a..29b8197c1 100644 --- a/app/docs/dev/protos/Dataplane.json +++ b/app/docs/dev/protos/Dataplane.json @@ -136,6 +136,25 @@ "$ref": "#/definitions/kuma.mesh.v1alpha1.Dataplane.Networking.Inbound.ServiceProbe", "additionalProperties": true, "description": "ServiceProbe defines parameters for probing the service next to sidecar. When service probe is defined, Envoy will periodically health check the application next to it and report the status to the control plane. On Kubernetes, Kuma deployments rely on Kubernetes probes so this is not used. See https://kuma.io/docs/latest/documentation/health for more information." + }, + "state": { + "enum": [ + "Ready", + 0, + "NotReady", + 1, + "Ignored", + 2 + ], + "oneOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ], + "title": "State" } }, "additionalProperties": true, diff --git a/app/docs/dev/protos/DataplaneOverview.json b/app/docs/dev/protos/DataplaneOverview.json index 04e4385b8..fa880156a 100644 --- a/app/docs/dev/protos/DataplaneOverview.json +++ b/app/docs/dev/protos/DataplaneOverview.json @@ -152,6 +152,25 @@ "$ref": "#/definitions/kuma.mesh.v1alpha1.Dataplane.Networking.Inbound.ServiceProbe", "additionalProperties": true, "description": "ServiceProbe defines parameters for probing the service next to sidecar. When service probe is defined, Envoy will periodically health check the application next to it and report the status to the control plane. On Kubernetes, Kuma deployments rely on Kubernetes probes so this is not used. See https://kuma.io/docs/latest/documentation/health for more information." + }, + "state": { + "enum": [ + "Ready", + 0, + "NotReady", + 1, + "Ignored", + 2 + ], + "oneOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ], + "title": "State" } }, "additionalProperties": true,