Skip to content

Commit ac86ee3

Browse files
committed
updates
1 parent bef8c2d commit ac86ee3

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,16 @@
1313
2. [Deploy a sample application](docs/deploy-sample-applications/deploy-sample-application.md)
1414

1515
3. [Exposing Services in Kubernetes](docs/exposing-services/exposing-services-in-kubernetes.md)
16-
1. [ClusterIP](docs/exposing-services/cluster-ip.md)
16+
1. [ClusterIP](docs/exposing-services/cluster-ip.md)
1717
2. [Port-forward](docs/exposing-services/port-forward.md)
1818
3. [NodePort](docs/exposing-services/node-port.md)
1919
4. [LoadBalancer](docs/exposing-services/load-balancer.)
20-
5. [Ingress Controller](docs/exposing-services/ingress-controller.md) - TODO
20+
5. [Ingress Controller](docs/exposing-services/ingress-controller.md) - **TODO**
2121

2222

2323

2424
## TO DO / Ideas:
2525

26-
27-
2826
* Ingress vs VirtualServer and VirtualServerRoute resources
2927
* Ingress resource
3028
* VirtualServer resource

docs/exposing-services/exposing-services-in-kubernetes.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22

33
Here you will find a collection of lab excerises to setup your Kuberntes Cluster in the Cloud and expore many options to expose your applications
44

5-
1. If you have not have a Kuberntes Cluster ready, check out the quick [AWS Cli, AKS and ACR Setup guide](AWS-setup-guide.md)
5+
1. If you have not have a Kuberntes Cluster ready, check out the quick [AWS cli, AKS and ECR Setup guide](../aws/aws-cli-aks-ecr-setup-guide.md)
66

7-
2. Then deploy our sample [Coffee and Tea Application](deploy-sample-application.md)
8-
3. Deploy and test the many ways to Exposing services in Kubernetes in the Cloud...
7+
2. Then deploy our sample [Coffee and Tea Application](../deploy-sample-applications/deploy-sample-applications.md)
8+
3. Deploy and test the many ways to expose services in Kubernetes...
99

1010
### Kubernetes in the Cloud
1111

1212
* [**ClusterIP**](cluster-ip.md) - Creates an internal IP address for use within the AKS cluster. Good for **internal-only** applications that support other workloads within the cluster. ClusterIP on a service provides basic round-robin algorithm load balancing to the endpoints on the pods
1313
* [**Port-forward**](port-forward.md) - enables quick access a port of a specific pod of your cluster. The Kubernetes API server will establish a single HTTP connection between your` localhost` and the resource running on your cluster.
1414
* [**NodePort**](node-port.md) - Creates a port mapping on the underlying node that allows the application to be accessed directly with the node IP address and port.
15-
* [**LoadBalancer**](load-balancer.) - Creates an Azure load balancer resource, configures an external IP address, and connects the requested pods to the load balancer backend pool. To allow customers' traffic to reach the application, load balancing rules are created on the desired ports
15+
* [**LoadBalancer**](load-balancer.md) - Creates an Azure load balancer resource, configures an external IP address, and connects the requested pods to the load balancer backend pool. To allow customers' traffic to reach the application, load balancing rules are created on the desired ports
1616
* [**Ingress controllers**](ingress-controller.md) - When you create a `LoadBalancer` type Service, an underlying Azure load balancer resource is created. The load balancer is configured to distribute traffic to the pods in your Service on a given port. The `LoadBalancer` only works at **layer 4** , so the service is unaware of the actual applications, and can't make any additional routing considerations.
1717

1818

0 commit comments

Comments
 (0)