Skip to content

Commit 4135774

Browse files
authored
Merge pull request #86081 from jmanthei/OSDOCS-12759
2 parents 5147f4a + d82f88b commit 4135774

15 files changed

+46
-29
lines changed

_topic_maps/_topic_map.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1349,18 +1349,12 @@ Topics:
13491349
File: aws-load-balancer-operator-release-notes
13501350
- Name: AWS Load Balancer Operator in OpenShift Container Platform
13511351
File: understanding-aws-load-balancer-operator
1352+
- Name: Preparing an AWS STS cluster for the AWS Load Balancer Operator
1353+
File: preparing-sts-cluster-for-albo
13521354
- Name: Installing the AWS Load Balancer Operator
13531355
File: install-aws-load-balancer-operator
1354-
- Name: Installing the AWS Load Balancer Operator on a cluster that uses AWS STS
1355-
File: installing-albo-sts-cluster
1356-
- Name: Creating an instance of the AWS Load Balancer Controller
1357-
File: create-instance-aws-load-balancer-controller
1358-
- Name: Serving multiple ingress resources through a single AWS Load Balancer
1359-
File: multiple-ingress-through-single-alb
1360-
- Name: Adding TLS termination
1361-
File: add-tls-termination
1362-
- Name: Configuring cluster-wide proxy
1363-
File: configure-egress-proxy-aws-load-balancer-operator
1356+
- Name: Configuring the AWS Load Balancer Operator
1357+
File: configuring-aws-load-balancer-operator
13641358
- Name: eBPF manager Operator
13651359
Dir: ebpf_manager
13661360
Topics:

installing/installing_aws/ipi/installing-aws-outposts.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ include::modules/nw-aws-load-balancer-with-outposts.adoc[leveloffset=+2]
8181

8282
[role="_additional-resources"]
8383
.Additional resources
84-
* xref:../../../networking/networking_operators/aws_load_balancer_operator/create-instance-aws-load-balancer-controller.adoc#create-instance-aws-load-balancer-controller_create-instance-aws-load-balancer-controller[Creating an instance of the AWS Load Balancer Controller]
84+
* xref:../../../networking/networking_operators/aws_load_balancer_operator/install-aws-load-balancer-operator.adoc#nw-creating-instance-aws-load-balancer-controller_aws-load-balancer-operator[Creating the AWS Load Balancer Controller]
8585

8686
[role="_additional-resources"]
8787
[id="additional-installing-aws-outposts"]

modules/adding-tls-termination.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Module included in the following assemblies:
22
//
3-
// * networking/aws_load_balancer_operator/add-tls-termination.adoc
3+
// * networking/networking_operators/aws_load_balancer_operator/configuring-aws-load-balancer-operator.adoc
44

55
:_mod-docs-content-type: PROCEDURE
66
[id="nw-adding-tls-termination_{context}"]
@@ -44,14 +44,14 @@ metadata:
4444
spec:
4545
ingressClassName: tls-termination <4>
4646
rules:
47-
- host: <example.com> <5>
47+
- host: example.com <5>
4848
http:
4949
paths:
5050
- path: /
5151
pathType: Exact
5252
backend:
5353
service:
54-
name: <example-service> <6>
54+
name: <example_service> <6>
5555
port:
5656
number: 80
5757
----

modules/configuring-egress-proxy.adoc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
// Module included in the following assemblies:
22
//
3-
// * networking/aws_load_balancer_operator/configure-egress-proxy-aws-load-balancer-operator.adoc
3+
// * networking/networking-operators/aws_load_balancer_operator/configuring-aws-load-balancer-operator/configure-egress-proxy-aws-load-balancer-operator.adoc
44

55
:_mod-docs-content-type: PROCEDURE
66
[id="nw-configuring-cluster-wide-proxy_{context}"]
77
= Trusting the certificate authority of the cluster-wide proxy
88

9+
You can configure the cluster-wide proxy in the AWS Load Balancer Operator. After configuring the cluster-wide proxy, Operator Lifecycle Manager (OLM) automatically updates all the deployments of the Operators with the environment variables such as `HTTP_PROXY`, `HTTPS_PROXY`, and `NO_PROXY`. These variables are populated to the managed controller by the AWS Load Balancer Operator.
10+
911
. Create the config map to contain the certificate authority (CA) bundle in the `aws-load-balancer-operator` namespace by running the following command:
1012
+
1113
[source,terminal]

modules/creating-instance-aws-load-balancer-controller.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Module included in the following assemblies:
22
//
3-
// * networking/aws_load_balancer_operator/create-instance-aws-load-balancer-controller.adoc
3+
// * networking/networking_operators/aws_load_balancer_operator/create-instance-aws-load-balancer-controller.adoc
44

55
:_mod-docs-content-type: PROCEDURE
66
[id="nw-creating-instance-aws-load-balancer-controller_{context}"]

modules/creating-multiple-ingress-through-single-alb.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// Module included in the following assemblies:
22
//
3-
// * networking/aws_load_balancer_operator/multiple-ingress-through-single-alb.adoc
3+
// * networking/networking-operators/aws_load_balancer_operator/configuring-aws-load-balancer-operator/multiple-ingress-through-single-alb.adoc
44

55
:_mod-docs-content-type: PROCEDURE
66
[id="nw-creating-multiple-ingress-through-single-alb_{context}"]
77
= Creating multiple ingress resources through a single AWS Load Balancer
88

9-
You can route the traffic to multiple ingress resources through a single AWS Load Balancer by using the CLI.
9+
You can route the traffic to different services with multiple ingress resources that are part of a single domain through a single AWS Load Balancer. Each Ingress resource provides different endpoints of the domain.
1010

1111
.Prerequisites
1212

modules/specifying-role-arn-albo-sts.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Module included in the following assemblies:
22
//
3-
// * networking/installing-albo-sts-cluster.adoc
3+
// * networking/networking_operators/aws-load-balancer-operator/preparing-sts-cluster-for-albo.adoc
44

55
:_mod-docs-content-type: PROCEDURE
66
[id="specifying-role-arn-albo-sts_{context}"]

modules/using-aws-cli-create-iam-role-alb-controller.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Module included in the following assemblies:
22
//
3-
// * networking/installing-albo-sts-cluster.adoc
3+
// * networking/networking_operators/aws-load-balancer-operator/preparing-sts-cluster-for-albo.adoc
44

55
:_mod-docs-content-type: PROCEDURE
66
[id="using-aws-cli-create-iam-role-alb-controller_{context}"]

modules/using-aws-cli-create-iam-role-alb-operator.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Module included in the following assemblies:
22
//
3-
// * networking/installing-albo-sts-cluster.adoc
3+
// * networking/networking_operators/aws-load-balancer-operator/preparing-sts-cluster-for-albo.adoc
44

55
:_mod-docs-content-type: PROCEDURE
66
[id="using-aws-cli-create-iam-role-alb-operator_{context}"]

modules/using-ccoctl-create-iam-role-alb-controller.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Module included in the following assemblies:
22
//
3-
// * networking/installing-albo-sts-cluster.adoc
3+
// * networking/networking_operators/aws-load-balancer-operator/preparing-sts-cluster-for-albo.adoc
44

55
:_mod-docs-content-type: PROCEDURE
66
[id="using-ccoctl-create-iam-role-alb-controller_{context}"]

0 commit comments

Comments
 (0)