You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/aks/concepts-network-services.md
+12-4Lines changed: 12 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,21 +18,21 @@ The following ServiceTypes are available in AKS:
18
18
19
19
ClusterIP creates an internal IP address for use within the AKS cluster. The ClusterIP Service is good for _internal-only applications_ that support other workloads within the cluster. ClusterIP is used by default if you don't explicitly specify a type for a Service.
20
20
21
-
![Diagram showing ClusterIP traffic flow in an AKS cluster][aks-clusterip]
21
+
![Diagram showing ClusterIP traffic flow in an AKS cluster][aks-clusterip]
22
22
23
23
## NodePort
24
24
25
25
NodePort creates a port mapping on the underlying node that allows the application to be accessed directly with the node IP address and port.
26
26
27
-
![Diagram showing NodePort traffic flow in an AKS cluster][aks-nodeport]
27
+
![Diagram showing NodePort traffic flow in an AKS cluster][aks-nodeport]
28
28
29
29
## LoadBalancer
30
30
31
31
LoadBalancer 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.
32
32
33
-
![Diagram showing Load Balancer traffic flow in an AKS cluster][aks-loadbalancer]
33
+
![Diagram showing Load Balancer traffic flow in an AKS cluster][aks-loadbalancer]
34
34
35
-
For HTTP load balancing of inbound traffic, another option is to use an [Ingress controller](#ingress-controllers).
35
+
For HTTP load balancing of inbound traffic, another option is to use an [Ingress controller][ingress-controllers].
36
36
37
37
## ExternalName
38
38
@@ -44,6 +44,14 @@ You can create both _internal_ and _external_ load balancers. Internal load bala
44
44
45
45
Learn more about Services in the [Kubernetes docs][k8s-service].
0 commit comments