From fabfd3f88684eb12be251a9ac73077deb8da9ccd Mon Sep 17 00:00:00 2001 From: vanou <8667089+vanou@users.noreply.github.com> Date: Wed, 6 Nov 2019 15:25:50 +0900 Subject: [PATCH] Fix trivial typo in IPVS proxy mode explanation (#17446) This commit fixes trivial typo in explanation of IPVS proxy mode. --- content/en/docs/concepts/services-networking/service.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/concepts/services-networking/service.md b/content/en/docs/concepts/services-networking/service.md index 216ca1d2cf..7a586e346b 100644 --- a/content/en/docs/concepts/services-networking/service.md +++ b/content/en/docs/concepts/services-networking/service.md @@ -318,7 +318,7 @@ about Kubernetes or Services or Pods. If you want to make sure that connections from a particular client are passed to the same Pod each time, you can select the session affinity based -the on client's IP addresses by setting `service.spec.sessionAffinity` to "ClientIP" +on client's IP addresses by setting `service.spec.sessionAffinity` to "ClientIP" (the default is "None"). You can also set the maximum session sticky time by setting `service.spec.sessionAffinityConfig.clientIP.timeoutSeconds` appropriately.