From 3c9ea0d1f8b456a6700f1826a75cbc26c428eb08 Mon Sep 17 00:00:00 2001 From: savagebidoof Date: Tue, 25 Apr 2023 06:53:07 +0200 Subject: [PATCH] Fixed broken links (reference && dockerhub image). --- .../README.md | 8 ++++---- .../authentication.yaml | 0 .../deployment.yaml | 0 .../gateway.yaml | 0 Istio/02-Traffic_management/10-TCP-FORWARDING/README.md | 4 ++-- Istio/02-Traffic_management/11-TLS-PASSTHROUGH/README.md | 4 ++-- 6 files changed, 8 insertions(+), 8 deletions(-) rename Istio/02-Traffic_management/{09-HTTPS-backend (pending document) => 09-HTTPS-backend}/README.md (94%) rename Istio/02-Traffic_management/{09-HTTPS-backend (pending document) => 09-HTTPS-backend}/authentication.yaml (100%) rename Istio/02-Traffic_management/{09-HTTPS-backend (pending document) => 09-HTTPS-backend}/deployment.yaml (100%) rename Istio/02-Traffic_management/{09-HTTPS-backend (pending document) => 09-HTTPS-backend}/gateway.yaml (100%) diff --git a/Istio/02-Traffic_management/09-HTTPS-backend (pending document)/README.md b/Istio/02-Traffic_management/09-HTTPS-backend/README.md similarity index 94% rename from Istio/02-Traffic_management/09-HTTPS-backend (pending document)/README.md rename to Istio/02-Traffic_management/09-HTTPS-backend/README.md index 966300f..dd8b72d 100644 --- a/Istio/02-Traffic_management/09-HTTPS-backend (pending document)/README.md +++ b/Istio/02-Traffic_management/09-HTTPS-backend/README.md @@ -13,7 +13,7 @@ This example contains a backend that serves HTTPS traffic and can be accessed fr > **Note:**\ -> For more information about the image used refer to [here](https://hub.docker.com/r/oriolfilter/https-apache-demo) +> For more information about the image used refer to [here](https://hub.docker.com/r/oriolfilter/https-nginx-demo) # Configuration @@ -91,7 +91,7 @@ spec: This DestinationRule, will interject the traffic destined to the service `helloworld.default.svc.cluster.local` with port `8443`. -As mentioned in the [Virtual Service](#virtual%20service) section, the destination is the `HTTPS` service. +As mentioned in the [Virtual Service](#virtual-service) section, the destination is the `HTTPS` service. By default, the call would be made with `HTTP` protocol, yet, as the destination is an `HTTPS` service, the request would result in the status code `400 Bad Request`, due sending HTTP traffic to an HTTPS service. @@ -148,7 +148,7 @@ spec: Deployment listens to port 80 and 443. > **Note:**\ -> For more information about the image used refer to [here](https://hub.docker.com/r/oriolfilter/https-apache-demo) +> For more information about the image used refer to [here](https://hub.docker.com/r/oriolfilter/https-nginx-demo) ```yaml apiVersion: apps/v1 @@ -183,7 +183,7 @@ spec: Due to the deployment having an `HTTPS`, and already initializing a TLS termination towards that service, we need to disable the **mTLS** tool for that specific service/deployment. -On the [Destination Rule](#destination%20rule) section we set the `tls` to `simple`, meaning that the service is expecting to receive `HTTPS` traffic, if `mTLS` is enabled, it will perform the handshake with the `mTLS` service, instead of with the destination `HTTPS` service. +On the [Destination Rule](#destination-rule) section we set the `tls` to `simple`, meaning that the service is expecting to receive `HTTPS` traffic, if `mTLS` is enabled, it will perform the handshake with the `mTLS` service, instead of with the destination `HTTPS` service. ```yaml apiVersion: security.istio.io/v1beta1 diff --git a/Istio/02-Traffic_management/09-HTTPS-backend (pending document)/authentication.yaml b/Istio/02-Traffic_management/09-HTTPS-backend/authentication.yaml similarity index 100% rename from Istio/02-Traffic_management/09-HTTPS-backend (pending document)/authentication.yaml rename to Istio/02-Traffic_management/09-HTTPS-backend/authentication.yaml diff --git a/Istio/02-Traffic_management/09-HTTPS-backend (pending document)/deployment.yaml b/Istio/02-Traffic_management/09-HTTPS-backend/deployment.yaml similarity index 100% rename from Istio/02-Traffic_management/09-HTTPS-backend (pending document)/deployment.yaml rename to Istio/02-Traffic_management/09-HTTPS-backend/deployment.yaml diff --git a/Istio/02-Traffic_management/09-HTTPS-backend (pending document)/gateway.yaml b/Istio/02-Traffic_management/09-HTTPS-backend/gateway.yaml similarity index 100% rename from Istio/02-Traffic_management/09-HTTPS-backend (pending document)/gateway.yaml rename to Istio/02-Traffic_management/09-HTTPS-backend/gateway.yaml diff --git a/Istio/02-Traffic_management/10-TCP-FORWARDING/README.md b/Istio/02-Traffic_management/10-TCP-FORWARDING/README.md index 39a768e..7ca8464 100644 --- a/Istio/02-Traffic_management/10-TCP-FORWARDING/README.md +++ b/Istio/02-Traffic_management/10-TCP-FORWARDING/README.md @@ -18,7 +18,7 @@ The same backend also contains the same service but running as HTTP, and for suc Additionally, the backend used, has HTTP2 enable, which also will be used to confirm that it's working as intended. > **Note:**\ -> For more information about the image used refer to [here](https://hub.docker.com/r/oriolfilter/https-apache-demo) +> For more information about the image used refer to [here](https://hub.docker.com/r/oriolfilter/https-nginx-demo) # Configuration @@ -111,7 +111,7 @@ spec: Deployment listens to port 80 and 443. > **Note:**\ -> For more information about the image used refer to [here](https://hub.docker.com/r/oriolfilter/https-apache-demo) +> For more information about the image used refer to [here](https://hub.docker.com/r/oriolfilter/https-nginx-demo) ```yaml apiVersion: apps/v1 diff --git a/Istio/02-Traffic_management/11-TLS-PASSTHROUGH/README.md b/Istio/02-Traffic_management/11-TLS-PASSTHROUGH/README.md index 2d118b0..2437b2f 100644 --- a/Istio/02-Traffic_management/11-TLS-PASSTHROUGH/README.md +++ b/Istio/02-Traffic_management/11-TLS-PASSTHROUGH/README.md @@ -14,7 +14,7 @@ The previous example was modified set TLS Forwarding for the HTTPS, meaning that This requires a deployment with a service HTTPS (as it will need to handle the TLS termination ...). > **Note:**\ -> For more information about the image used refer to [here](https://hub.docker.com/r/oriolfilter/https-apache-demo) +> For more information about the image used refer to [here](https://hub.docker.com/r/oriolfilter/https-nginx-demo) # Configuration @@ -104,7 +104,7 @@ spec: Deployment listens to port 80 and 443. > **Note:**\ -> For more information about the image used refer to [here](https://hub.docker.com/r/oriolfilter/https-apache-demo) +> For more information about the image used refer to [here](https://hub.docker.com/r/oriolfilter/https-nginx-demo) ```yaml apiVersion: apps/v1