The CCM supports two types of LoadBalancer implementations:
For implementation examples, see Basic Service Examples.
When using NodeBalancers, the CCM automatically:
For more details, see Linode NodeBalancer Documentation.
NodeBalancers support both IPv4 and IPv6 ingress addresses. By default, the CCM uses only IPv4 address for LoadBalancer services.
You can enable IPv6 addresses globally for all services by setting the enable-ipv6-for-loadbalancers
flag:
spec:
template:
spec:
containers:
- name: ccm-linode
args:
- --enable-ipv6-for-loadbalancers=true
Alternatively, you can enable IPv6 addresses for individual services using the annotation:
metadata:
annotations:
service.beta.kubernetes.io/linode-loadbalancer-enable-ipv6-ingress: "true"
When IPv6 is enabled (either globally or per-service), both IPv4 and IPv6 addresses will be included in the service's LoadBalancer status.
Create a LoadBalancer service:
apiVersion: v1
kind: Service
metadata:
name: my-service
spec:
type: LoadBalancer
ports:
- port: 80
targetPort: 8080
selector:
app: my-app
See Advanced Configuration Examples for more complex setups.
Available protocols:
tcp
(default)http
https
Set the default protocol:
metadata:
annotations:
service.beta.kubernetes.io/linode-loadbalancer-default-protocol: "http"
See Service Annotations for all protocol options.
Configure health checks using annotations:
metadata:
annotations:
service.beta.kubernetes.io/linode-loadbalancer-check-type: "http"
service.beta.kubernetes.io/linode-loadbalancer-check-path: "/healthz"
service.beta.kubernetes.io/linode-loadbalancer-check-interval: "5"
service.beta.kubernetes.io/linode-loadbalancer-check-timeout: "3"
service.beta.kubernetes.io/linode-loadbalancer-check-attempts: "2"
Available check types:
none
: No health checkconnection
: TCP connection checkhttp
: HTTP status checkhttp_body
: HTTP response body checkFor more details, see Health Check Configuration.
apiVersion: v1
kind: Secret
metadata:
name: my-tls-secret
type: kubernetes.io/tls
data:
tls.crt: <base64-encoded-cert>
tls.key: <base64-encoded-key>
metadata:
annotations:
service.beta.kubernetes.io/linode-loadbalancer-port-443: |
{
"protocol": "https",
"tls-secret-name": "my-tls-secret"
}
Limit connections from the same client IP:
metadata:
annotations:
service.beta.kubernetes.io/linode-loadbalancer-throttle: "5"
Enable proxy protocol for client IP preservation:
metadata:
annotations:
service.beta.kubernetes.io/linode-loadbalancer-default-proxy-protocol: "v2"
BGP-based IP sharing provides a more cost-effective solution for multiple LoadBalancer services. For detailed setup instructions, see Cilium BGP Documentation.
args:
- --load-balancer-type=cilium-bgp
- --bgp-node-selector=cilium-bgp-peering=true
- --ip-holder-suffix=mycluster
kubectl label node my-node cilium-bgp-peering=true
BGP_CUSTOM_ID_MAP
: Use your own map instead of default region map for BGPBGP_PEER_PREFIX
: Use your own BGP peer prefix instead of default oneFor more details, see Environment Variables.
NodeBalancers can be configured to have VPC specific ips configured as backend nodes. It requires:
Specify NodeBalancer backend ipv4 range when creating service:
metadata:
annotations:
service.beta.kubernetes.io/linode-loadbalancer-backend-ipv4-range: "10.100.0.0/30"
By default, CCM uses first VPC and Subnet name configured with it to attach NodeBalancers to that VPC subnet. To overwrite those, use:
metadata:
annotations:
service.beta.kubernetes.io/linode-loadbalancer-backend-ipv4-range: "10.100.0.4/30"
service.beta.kubernetes.io/linode-loadbalancer-vpc-name: "vpc1"
service.beta.kubernetes.io/linode-loadbalancer-subnet-name: "subnet1"
If CCM is started with --nodebalancer-backend-ipv4-subnet
flag, then it will not allow provisioning of nodebalancer unless subnet specified in service annotation lie within the subnet specified using the flag. This is to prevent accidental overlap between nodebalancer backend ips and pod CIDRs.
Specify an existing NodeBalancer:
metadata:
annotations:
service.beta.kubernetes.io/linode-loadbalancer-nodebalancer-id: "12345"
Prevent NodeBalancer deletion when service is deleted:
metadata:
annotations:
service.beta.kubernetes.io/linode-loadbalancer-preserve: "true"
Configure individual ports:
metadata:
annotations:
service.beta.kubernetes.io/linode-loadbalancer-port-443: |
{
"protocol": "https",
"tls-secret-name": "my-tls-secret",
"proxy-protocol": "v2"
}
Add tags to NodeBalancer:
metadata:
annotations:
service.beta.kubernetes.io/linode-loadbalancer-tags: "production,web-tier"