Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 664 Bytes

using-network-load-balancer.md

File metadata and controls

28 lines (23 loc) · 664 Bytes

Network load balancer

Setup

  1. Make sure you have installed CCM version v1.19.12 or later

Create Service

apiVersion: v1
kind: Service
metadata:
  name: example-nlb
  annotations:
    oci-network-load-balancer.oraclecloud.com/security-list-management-mode: "All"
    oci.oraclecloud.com/load-balancer-type: nlb
spec:
  selector:
    app: example-nlb
  ports:
    - port: 8088
      targetPort: 80
  type: LoadBalancer
  externalTrafficPolicy: Local

For more info please refer OKE NLB DOC