Skip to content

Commit 8a27d28

Browse files
committed
OSDOCS-9476 AWS Outposts GA Delivery - Network Edge
1 parent 85bad8d commit 8a27d28

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
// Module included in the following assemblies:
2+
// * networking/aws_load_balancer_operator/understanding-aws-load-balancer-operator.adoc
3+
4+
:_mod-docs-content-type: PROCEDURE
5+
[id="nw-aws-load-balancer-with-outposts_{context}"]
6+
= AWS Load Balancer Operator and AWS Outposts
7+
8+
AWS Load Balancer Operator can work with AWS Outposts. Application Load Balancer is supported. Network Load balancer is not, so AWS Load Balancer Operator does not provision it on AWS Outposts subnets. Ingress resources must be annotated with the either outposts or regular subnets (but not both).
9+
10+
.Procedure
11+
12+
* Configure the Ingress resource to use a specified subnet:
13+
+
14+
.Example Ingress resource configuration
15+
[source,yaml]
16+
----
17+
apiVersion: networking.k8s.io/v1
18+
kind: Ingress
19+
metadata:
20+
name: echoserver
21+
annotations:
22+
alb.ingress.kubernetes.io/subnets: <outposts_subnet_id> # <1>
23+
spec:
24+
ingressClassName: alb
25+
rules:
26+
- http:
27+
paths:
28+
- path: /
29+
pathType: Exact
30+
backend:
31+
service:
32+
name: echoserver
33+
port:
34+
number: 80
35+
----
36+
<1> Specifies the subnet to use. To use the Application Load Balancer in an Outpost, specify the Outpost subnet ID.
37+

networking/aws_load_balancer_operator/understanding-aws-load-balancer-operator.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,6 @@ include::modules/nw-aws-load-balancer-operator-considerations.adoc[leveloffset=+
1212

1313
include::modules/nw-aws-load-balancer-operator.adoc[leveloffset=+1]
1414

15+
include::modules/nw-aws-load-balancer-with-outposts.adoc[leveloffset=+1]
16+
1517
include::modules/nw-aws-load-balancer-logs.adoc[leveloffset=+1]

0 commit comments

Comments
 (0)