Skip to content

Commit 70a17aa

Browse files
author
Harvey Lowndes
committed
Review changes
1 parent 7771923 commit 70a17aa

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

docs/load-balancer-annotations.md

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ spec:
2828
| `oci-load-balancer-subnet2` | The OCID of the second [subnet][2] of the two required subnets to attach the load balancer to. Must be in separate Availability Domains. | Value provided in config file |
2929
| `oci-load-balancer-connection-idle-timeout` | The maximum idle time, in seconds, allowed between two successive receive or two successive send operations between the client and backend servers. | `300` for TCP listeners, `60` for HTTP listeners |
3030
| `oci-load-balancer-security-list-management-mode` | Specifies the [security list mode](##security-list-management-modes) (`"All"`, `"Frontend"`,`"None"`) to configure how security lists are managed by the CCM. | `"All"`
31+
| `oci-load-balancer-backend-protocol` | ServiceAnnotationLoadBalancerBEProtocol is a Service annotation for specifying the [load balancer listener][5] backend protocol ("TCP", "HTTP"). | `"TCP"`
3132

3233
## TLS-related
3334

@@ -51,3 +52,4 @@ Note:
5152
[2]: https://docs.us-phoenix-1.oraclecloud.com/Content/Network/Tasks/managingVCNs.htm
5253
[3]: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls
5354
[4]: https://kubernetes.io/docs/concepts/services-networking/service/
55+
[5]: https://docs.cloud.oracle.com/iaas/Content/Balance/Concepts/balanceoverview.htm#concepts

pkg/oci/load_balancer.go

+1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ const (
7373

7474
// ServiceAnnotationLoadBalancerBEProtocol is a Service annotation for specifying the
7575
// load balancer listener backend protocol ("TCP", "HTTP").
76+
// See: https://docs.cloud.oracle.com/iaas/Content/Balance/Concepts/balanceoverview.htm#concepts
7677
ServiceAnnotationLoadBalancerBEProtocol = "service.beta.kubernetes.io/oci-load-balancer-backend-protocol"
7778
)
7879

0 commit comments

Comments
 (0)