From 9dd77963788044ecfcb0143dbd5a88f7626b0f33 Mon Sep 17 00:00:00 2001 From: Natalia Sitko <80401180+nataliasitko@users.noreply.github.com> Date: Thu, 31 Oct 2024 11:15:45 +0100 Subject: [PATCH] Use the correct titles in the sidebar (#1099) * sidebar fiexes * add os only --- docs/user/_sidebar.md | 9 +++++---- docs/user/troubleshooting/03-10-503-no-access.md | 1 + .../03-40-incompatible-istio-sidecar-version.md | 1 + docs/user/troubleshooting/03-60-404-on-istio-gateway.md | 1 + docs/user/troubleshooting/03-90-istio-cert-unknown.md | 1 + .../tutorials/01-10-external-authorization-provider.md | 2 +- docs/user/tutorials/01-20-expose-httbin-gateway-api.md | 4 ++-- docs/user/tutorials/01-30-expose-tcp-gateway-api.md | 3 ++- docs/user/tutorials/01-40-enable-sidecar-injection.md | 2 +- docs/user/tutorials/01-45-enable-istio-access-logs.md | 2 +- 10 files changed, 16 insertions(+), 10 deletions(-) diff --git a/docs/user/_sidebar.md b/docs/user/_sidebar.md index d056e4978..54fecfb27 100644 --- a/docs/user/_sidebar.md +++ b/docs/user/_sidebar.md @@ -2,13 +2,13 @@ * [Istio Module](/istio/user/README.md) * [Istio Sidecar Proxies](/istio/user/00-00-istio-sidecar-proxies.md) * [Istio Version](/istio/user/00-10-istio-version.md) -* [Default Istio Setup](/istio/user/00-15-overview-istio-setup.md) +* [Default Istio Configuration](/istio/user/00-15-overview-istio-setup.md) * [Istio Custom Resource](/istio/user/04-00-istio-custom-resource.md) * [ExternalName Migration Guide](/istio/user/migration/external-name-alias.md) * [Tutorials](/istio/user/tutorials/README.md) * [Enable Istio Sidecar Injection](/istio/user/tutorials/01-40-enable-sidecar-injection.md) - * [Forward Client IP](/istio/user/tutorials/01-00-x-forwarded-for-header.md) - * [Expose Workloads Using oauth-proxy](/istio/user/tutorials/01-10-external-authorization-provider.md) + * [Forward a Client IP in the XFF Header](/istio/user/tutorials/01-00-x-forwarded-for-header.md) + * [Expose Workloads Using oauth2-proxy](/istio/user/tutorials/01-10-external-authorization-provider.md) * [Expose Workloads Using Gateway API](/istio/user/tutorials/01-20-expose-httbin-gateway-api.md) * [Expose a TCP Service Using Gateway API Aplha Support](/istio/user/tutorials/01-30-expose-tcp-gateway-api.md) * [Configure Istio Access Logs](/istio/user/tutorials/01-45-enable-istio-access-logs.md) @@ -24,4 +24,5 @@ * [SAP HANA Database Connection Issues](/istio/user/troubleshooting/03-80-cannot-connect-to-hana-db.md) * [Not Found Error](/istio/user/troubleshooting/03-60-404-on-istio-gateway.md) * [Incompatible Istio Sidecar](/istio/user/troubleshooting/03-40-incompatible-istio-sidecar-version.md) - * [Modified Istio Resources](/istio/user/troubleshooting/03-70-reconciliation-fails-on-istio-install.md) \ No newline at end of file + * [Modified Istio Resources](/istio/user/troubleshooting/03-70-reconciliation-fails-on-istio-install.md) + * [Istio Cannot Verify an HTTPS Certificate](/istio/user/troubleshooting/03-90-istio-cert-unknown.md) \ No newline at end of file diff --git a/docs/user/troubleshooting/03-10-503-no-access.md b/docs/user/troubleshooting/03-10-503-no-access.md index 1a8beed04..4dbd07abd 100644 --- a/docs/user/troubleshooting/03-10-503-no-access.md +++ b/docs/user/troubleshooting/03-10-503-no-access.md @@ -1,3 +1,4 @@ + # Can't Access a Kyma Endpoint (503 status code) ## Symptom diff --git a/docs/user/troubleshooting/03-40-incompatible-istio-sidecar-version.md b/docs/user/troubleshooting/03-40-incompatible-istio-sidecar-version.md index 03e3df7d4..b6e6bb80c 100644 --- a/docs/user/troubleshooting/03-40-incompatible-istio-sidecar-version.md +++ b/docs/user/troubleshooting/03-40-incompatible-istio-sidecar-version.md @@ -1,3 +1,4 @@ + # Incompatible Istio Sidecar Version After Istio Operator's Upgrade ## Symptom diff --git a/docs/user/troubleshooting/03-60-404-on-istio-gateway.md b/docs/user/troubleshooting/03-60-404-on-istio-gateway.md index 21adbf11d..7f86857f6 100644 --- a/docs/user/troubleshooting/03-60-404-on-istio-gateway.md +++ b/docs/user/troubleshooting/03-60-404-on-istio-gateway.md @@ -1,3 +1,4 @@ + # You Get 404 Not Found ## Symptom diff --git a/docs/user/troubleshooting/03-90-istio-cert-unknown.md b/docs/user/troubleshooting/03-90-istio-cert-unknown.md index 8abd6403c..f8dc7bb33 100644 --- a/docs/user/troubleshooting/03-90-istio-cert-unknown.md +++ b/docs/user/troubleshooting/03-90-istio-cert-unknown.md @@ -1,3 +1,4 @@ + # Istio Cannot Verify an HTTPS Certificate Generated by a Trusted Signing CA ## Symptom diff --git a/docs/user/tutorials/01-10-external-authorization-provider.md b/docs/user/tutorials/01-10-external-authorization-provider.md index 3b7d1b732..22f9da003 100644 --- a/docs/user/tutorials/01-10-external-authorization-provider.md +++ b/docs/user/tutorials/01-10-external-authorization-provider.md @@ -1,4 +1,4 @@ -# Exposing Workloads with oauth2-proxy +# Expose Workloads Using oauth2-proxy Learn how to configure [oauth2-proxy](https://github.com/oauth2-proxy/manifests/tree/main/helm/oauth2-proxy) external authorization provider in the Istio custom resource (CR). diff --git a/docs/user/tutorials/01-20-expose-httbin-gateway-api.md b/docs/user/tutorials/01-20-expose-httbin-gateway-api.md index cbd74a449..9a96fe6fa 100644 --- a/docs/user/tutorials/01-20-expose-httbin-gateway-api.md +++ b/docs/user/tutorials/01-20-expose-httbin-gateway-api.md @@ -1,9 +1,9 @@ -# Exposing a Workload Using Gateway API +# Expose Workloads Using Gateway API Use [Gateway API](https://gateway-api.sigs.k8s.io/) to expose a workload. > [!WARNING] -> Exposing an unsecured workload to the outside world is a potential security vulnerability, so tread carefully. If you want to use this example in production environment, make sure to secure your workload. +> Exposing an unsecured workload to the outside world is a potential security vulnerability, so tread carefully. If you want to use this example in a production environment, make sure to secure your workload. ## Prerequisites diff --git a/docs/user/tutorials/01-30-expose-tcp-gateway-api.md b/docs/user/tutorials/01-30-expose-tcp-gateway-api.md index 157c754f2..2a7d6436b 100644 --- a/docs/user/tutorials/01-30-expose-tcp-gateway-api.md +++ b/docs/user/tutorials/01-30-expose-tcp-gateway-api.md @@ -1,4 +1,5 @@ -# Use Gateway API to Expose a TCP Service + +# Expose a TCP Service Using Gateway API Aplha Support This tutorial shows how to expose a TCP Service using Gateway API. diff --git a/docs/user/tutorials/01-40-enable-sidecar-injection.md b/docs/user/tutorials/01-40-enable-sidecar-injection.md index 16a6f4d10..169b66acd 100644 --- a/docs/user/tutorials/01-40-enable-sidecar-injection.md +++ b/docs/user/tutorials/01-40-enable-sidecar-injection.md @@ -1,4 +1,4 @@ -# Enable Automatic Istio Sidecar Proxy Injection +# Enable Istio Sidecar Proxy Injection You can enable Istio sidecar proxy injection for either an entire namespace or a single Deployment. Learn how to perform both these operations. diff --git a/docs/user/tutorials/01-45-enable-istio-access-logs.md b/docs/user/tutorials/01-45-enable-istio-access-logs.md index d1baf535b..8c5d950fd 100644 --- a/docs/user/tutorials/01-45-enable-istio-access-logs.md +++ b/docs/user/tutorials/01-45-enable-istio-access-logs.md @@ -1,4 +1,4 @@ -# Configuring Istio Access Logs +# Configure Istio Access Logs ## Prerequisites * You have the Istio module added.