Skip to content

Commit

Permalink
Merge "Service delete issue in nested is fixed." into R4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed Oct 17, 2017
2 parents 7123659 + 85d56e0 commit 812affc
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/container/kube-manager/kube_manager/vnc/reaction_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@

REACTION_MAP = {
"instance_ip": {
'self': [],
'self': ['virtual_machine_interface', 'floating_ip'],
'virtual_machine_interface': [],
'floating_ip': [],
},
"floating_ip": {
'self': [],
'self': ['virtual_machine_interface', 'instance_ip'],
'virtual_machine_interface': [],
'instance_ip': [],
},
"security_group": {
'self': [],
Expand All @@ -23,9 +26,11 @@
},
"virtual_machine_interface": {
'self': ['virtual_machine', 'security_group',
'instance_ip'],
'instance_ip', 'floating_ip'],
'security_group': [],
'virtual_machine': [],
'instance_ip': [],
'floating_ip': [],
},
"project": {
'self': [],
Expand Down

0 comments on commit 812affc

Please sign in to comment.