22 lines
639 B
YAML
22 lines
639 B
YAML
# Enable RBAC (usually enabled by default, but explicit here)
|
|
rbac:
|
|
create: true
|
|
|
|
controller:
|
|
config:
|
|
entries:
|
|
proxy-protocol: "True"
|
|
# Optional but commonly used together with proxy protocol:
|
|
real-ip-header: "proxy_protocol"
|
|
# Replace CIDR(s) below with your LB/node networks
|
|
# set-real-ip-from: "10.0.0.0/8,192.168.0.0/16"
|
|
set-real-ip-from: "0.0.0.0/0"
|
|
|
|
# Service configuration (for the LoadBalancer service in front of the controller)
|
|
service:
|
|
annotations:
|
|
loadbalancer.openstack.org/keep-floatingip: "true"
|
|
loadbalancer.openstack.org/proxy-protocol: "true"
|
|
|
|
# end of file
|