Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release-4.4] Bug 1818066: Ensure no attempt to deleted sg rules owned by Octavia happens #201

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion kuryr_kubernetes/controller/drivers/lbaasv2.py
Expand Up @@ -275,7 +275,8 @@ def _apply_members_security_groups(self, loadbalancer, port, target_port,
protocol, lb_sg, new_sgs, listener_id)
return

lbaas_sg_rules = os_net.security_group_rules(security_group_id=lb_sg)
lbaas_sg_rules = os_net.security_group_rules(
security_group_id=lb_sg, project_id=loadbalancer.project_id)
all_pod_rules = []
add_default_rules = False

Expand Down