From 39f40f24fb3a9060012218f6a0b9cb44235bebe8 Mon Sep 17 00:00:00 2001 From: Travis Bot Date: Fri, 8 Mar 2019 00:36:59 +0000 Subject: [PATCH] Deploy GitHub Pages --- 404.html | 12 +++ deploy/baremetal/index.html | 12 +++ deploy/index.html | 12 +++ deploy/rbac/index.html | 12 +++ deploy/upgrade/index.html | 12 +++ development/index.html | 12 +++ examples/PREREQUISITES/index.html | 12 +++ examples/affinity/cookie/index.html | 18 ++-- examples/affinity/cookie/ingress.yaml | 1 - examples/auth/basic/index.html | 12 +++ examples/auth/client-certs/index.html | 12 +++ examples/auth/external-auth/index.html | 12 +++ examples/auth/oauth-external-auth/index.html | 12 +++ .../configuration-snippets/index.html | 12 +++ .../custom-configuration/index.html | 12 +++ .../customization/custom-errors/index.html | 12 +++ .../customization/custom-headers/index.html | 12 +++ .../external-auth-headers/index.html | 12 +++ .../customization/ssl-dh-param/index.html | 12 +++ examples/customization/sysctl/index.html | 12 +++ examples/docker-registry/index.html | 12 +++ examples/grpc/index.html | 12 +++ examples/index.html | 12 +++ examples/multi-tls/index.html | 12 +++ examples/rewrite/index.html | 12 +++ examples/static-ip/index.html | 12 +++ examples/tls-termination/index.html | 12 +++ how-it-works/index.html | 14 ++- index.html | 12 +++ search/search_index.json | 2 +- sitemap.xml | 95 +++++++++--------- sitemap.xml.gz | Bin 219 -> 220 bytes troubleshooting/index.html | 12 +++ user-guide/basic-usage/index.html | 78 ++++++++++++-- user-guide/cli-arguments/index.html | 12 +++ user-guide/custom-errors/index.html | 12 +++ user-guide/default-backend/index.html | 12 +++ .../exposing-tcp-udp-services/index.html | 12 +++ user-guide/external-articles/index.html | 12 +++ user-guide/ingress-path-matching/index.html | 12 +++ user-guide/miscellaneous/index.html | 12 +++ user-guide/monitoring/index.html | 12 +++ user-guide/multiple-ingress/index.html | 12 +++ .../annotations/index.html | 29 +++--- .../nginx-configuration/configmap/index.html | 12 +++ .../custom-template/index.html | 12 +++ user-guide/nginx-configuration/index.html | 16 ++- .../nginx-configuration/log-format/index.html | 12 +++ .../third-party-addons/modsecurity/index.html | 12 +++ .../third-party-addons/opentracing/index.html | 12 +++ user-guide/tls/index.html | 12 +++ 51 files changed, 678 insertions(+), 79 deletions(-) diff --git a/404.html b/404.html index c26e56426..5afe379a1 100644 --- a/404.html +++ b/404.html @@ -521,6 +521,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/deploy/baremetal/index.html b/deploy/baremetal/index.html index c62ca5661..5b5a04dd2 100644 --- a/deploy/baremetal/index.html +++ b/deploy/baremetal/index.html @@ -595,6 +595,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/deploy/index.html b/deploy/index.html index 290ad25dc..d3f914faa 100644 --- a/deploy/index.html +++ b/deploy/index.html @@ -683,6 +683,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/deploy/rbac/index.html b/deploy/rbac/index.html index d7ed789d6..e425c8454 100644 --- a/deploy/rbac/index.html +++ b/deploy/rbac/index.html @@ -608,6 +608,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/deploy/upgrade/index.html b/deploy/upgrade/index.html index 39301e6b9..34da386b3 100644 --- a/deploy/upgrade/index.html +++ b/deploy/upgrade/index.html @@ -574,6 +574,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/development/index.html b/development/index.html index 587a7c9b1..e2681f742 100644 --- a/development/index.html +++ b/development/index.html @@ -642,6 +642,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/examples/PREREQUISITES/index.html b/examples/PREREQUISITES/index.html index c62349860..86f24605c 100644 --- a/examples/PREREQUISITES/index.html +++ b/examples/PREREQUISITES/index.html @@ -527,6 +527,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/examples/affinity/cookie/index.html b/examples/affinity/cookie/index.html index 3cdb70a6f..1ba30f097 100644 --- a/examples/affinity/cookie/index.html +++ b/examples/affinity/cookie/index.html @@ -527,6 +527,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations @@ -1184,11 +1196,6 @@ string (default to INGRESSCOOKIE) -nginx.ingress.kubernetes.io/session-cookie-hash -Type of hash that will be used in cookie value -sha1/md5/index - - nginx.ingress.kubernetes.io/session-cookie-expires The value is a date as UNIX timestamp that the cookie will expire on, it corresponds to cookie Expires directive number of seconds @@ -1218,7 +1225,6 @@ / nginx-service:80 (<none>) Annotations: affinity: cookie - session-cookie-hash: sha1 session-cookie-name: INGRESSCOOKIE session-cookie-expires: 172800 session-cookie-max-age: 172800 diff --git a/examples/affinity/cookie/ingress.yaml b/examples/affinity/cookie/ingress.yaml index fda193e46..4abebfedf 100644 --- a/examples/affinity/cookie/ingress.yaml +++ b/examples/affinity/cookie/ingress.yaml @@ -5,7 +5,6 @@ metadata: annotations: nginx.ingress.kubernetes.io/affinity: "cookie" nginx.ingress.kubernetes.io/session-cookie-name: "route" - nginx.ingress.kubernetes.io/session-cookie-hash: "sha1" nginx.ingress.kubernetes.io/session-cookie-expires: "172800" nginx.ingress.kubernetes.io/session-cookie-max-age: "172800" diff --git a/examples/auth/basic/index.html b/examples/auth/basic/index.html index 916b95319..3e2cda5ce 100644 --- a/examples/auth/basic/index.html +++ b/examples/auth/basic/index.html @@ -527,6 +527,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/examples/auth/client-certs/index.html b/examples/auth/client-certs/index.html index d84cc563c..31bf27ce6 100644 --- a/examples/auth/client-certs/index.html +++ b/examples/auth/client-certs/index.html @@ -527,6 +527,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/examples/auth/external-auth/index.html b/examples/auth/external-auth/index.html index c7c863da4..d5041d498 100644 --- a/examples/auth/external-auth/index.html +++ b/examples/auth/external-auth/index.html @@ -527,6 +527,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/examples/auth/oauth-external-auth/index.html b/examples/auth/oauth-external-auth/index.html index 058aeb374..765765a47 100644 --- a/examples/auth/oauth-external-auth/index.html +++ b/examples/auth/oauth-external-auth/index.html @@ -527,6 +527,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/examples/customization/configuration-snippets/index.html b/examples/customization/configuration-snippets/index.html index 6545e8b98..260aa89bc 100644 --- a/examples/customization/configuration-snippets/index.html +++ b/examples/customization/configuration-snippets/index.html @@ -527,6 +527,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/examples/customization/custom-configuration/index.html b/examples/customization/custom-configuration/index.html index 539ddf3d1..4db9705dd 100644 --- a/examples/customization/custom-configuration/index.html +++ b/examples/customization/custom-configuration/index.html @@ -527,6 +527,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/examples/customization/custom-errors/index.html b/examples/customization/custom-errors/index.html index a78dd8c31..bba7ee849 100644 --- a/examples/customization/custom-errors/index.html +++ b/examples/customization/custom-errors/index.html @@ -527,6 +527,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/examples/customization/custom-headers/index.html b/examples/customization/custom-headers/index.html index a21df6f9f..ef6d77960 100644 --- a/examples/customization/custom-headers/index.html +++ b/examples/customization/custom-headers/index.html @@ -527,6 +527,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/examples/customization/external-auth-headers/index.html b/examples/customization/external-auth-headers/index.html index ec5d40616..a11ee9d07 100644 --- a/examples/customization/external-auth-headers/index.html +++ b/examples/customization/external-auth-headers/index.html @@ -527,6 +527,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/examples/customization/ssl-dh-param/index.html b/examples/customization/ssl-dh-param/index.html index 79a3cd917..e6bcddbe7 100644 --- a/examples/customization/ssl-dh-param/index.html +++ b/examples/customization/ssl-dh-param/index.html @@ -527,6 +527,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/examples/customization/sysctl/index.html b/examples/customization/sysctl/index.html index 76a6fffa2..abd0d559b 100644 --- a/examples/customization/sysctl/index.html +++ b/examples/customization/sysctl/index.html @@ -527,6 +527,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/examples/docker-registry/index.html b/examples/docker-registry/index.html index d9b247816..d5311009e 100644 --- a/examples/docker-registry/index.html +++ b/examples/docker-registry/index.html @@ -527,6 +527,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/examples/grpc/index.html b/examples/grpc/index.html index 2ba6d4717..e4ba8ee94 100644 --- a/examples/grpc/index.html +++ b/examples/grpc/index.html @@ -527,6 +527,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/examples/index.html b/examples/index.html index 4df28234d..d71dc1851 100644 --- a/examples/index.html +++ b/examples/index.html @@ -527,6 +527,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/examples/multi-tls/index.html b/examples/multi-tls/index.html index 75e5e6683..92a6631a2 100644 --- a/examples/multi-tls/index.html +++ b/examples/multi-tls/index.html @@ -527,6 +527,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/examples/rewrite/index.html b/examples/rewrite/index.html index 8405023b6..bd9051016 100644 --- a/examples/rewrite/index.html +++ b/examples/rewrite/index.html @@ -527,6 +527,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/examples/static-ip/index.html b/examples/static-ip/index.html index 084a8473c..824908ec6 100644 --- a/examples/static-ip/index.html +++ b/examples/static-ip/index.html @@ -527,6 +527,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/examples/tls-termination/index.html b/examples/tls-termination/index.html index 65737c6f2..1df3fef5d 100644 --- a/examples/tls-termination/index.html +++ b/examples/tls-termination/index.html @@ -527,6 +527,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations diff --git a/how-it-works/index.html b/how-it-works/index.html index c9e16186a..a442559c9 100644 --- a/how-it-works/index.html +++ b/how-it-works/index.html @@ -608,6 +608,18 @@ +
  • + + Basic usage + +
  • + + + + + + +
  • Annotations @@ -1242,7 +1254,7 @@

    Operations to build the model: