Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ spec:
provider:
type: Kubernetes
kubernetes:
envoyService:
externalTrafficPolicy: Cluster
envoyHpa:
minReplicas: 2
maxReplicas: 9
Expand All @@ -24,3 +26,14 @@ spec:
type: AverageValue
averageValue: 500Mi
type: Resource
envoyDeployment:
pod:
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: node-role.kubernetes.io/worker
operator: In
values:
- worker
10 changes: 3 additions & 7 deletions manifests/metallb/metallb-openstack-service-lb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,8 @@ metadata:
spec:
ipAddressPools:
- gateway-api-external
# nodeSelectors: # Optional block to limit nodes for a given advertisement
# - matchLabels:
# kubernetes.io/hostname: controller01.your.domain.tld
# - matchLabels:
# kubernetes.io/hostname: controller02.your.domain.tld
# - matchLabels:
# kubernetes.io/hostname: controller03.your.domain.tld
nodeSelectors: # Optional block to limit nodes for a given advertisement
- matchLabels:
node-role.kubernetes.io/worker: worker
# interfaces: # Optional block to limit ifaces used to advertise VIPs
# - br-mgmt
Loading