Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
8f2f8a5b
Commit
8f2f8a5b
authored
Nov 08, 2013
by
Matt Martz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DRY up dict conversion and fix serialization error
parent
74e7eba5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
28 deletions
+26
-28
library/cloud/rax_clb
+26
-28
No files found.
library/cloud/rax_clb
View file @
8f2f8a5b
...
...
@@ -136,6 +136,30 @@ PROTOCOLS = ['DNS_TCP', 'DNS_UDP', 'FTP', 'HTTP', 'HTTPS', 'IMAPS', 'IMAPv4',
'TCP_CLIENT_FIRST'
,
'UDP'
,
'UDP_STREAM'
,
'SFTP'
]
def
to_dict
(
obj
):
instance
=
{}
for
key
in
dir
(
obj
):
value
=
getattr
(
obj
,
key
)
if
key
==
'virtual_ips'
:
virtual_ips
=
[]
instance
[
key
]
=
[]
for
vip
in
value
:
vip_dict
=
{}
for
vip_key
,
vip_value
in
vars
(
vip
)
.
iteritems
():
if
isinstance
(
vip_value
,
NON_CALLABLES
):
vip_dict
[
vip_key
]
=
vip_value
instance
[
key
]
.
append
(
vip_dict
)
elif
key
==
'nodes'
:
instance
[
key
]
=
[]
for
node
in
value
:
instance
[
key
]
.
append
(
node
.
to_dict
())
elif
(
isinstance
(
value
,
NON_CALLABLES
)
and
not
key
.
startswith
(
'_'
)):
instance
[
key
]
=
value
return
instance
def
cloud_load_balancer
(
module
,
state
,
name
,
meta
,
algorithm
,
port
,
protocol
,
vip_type
,
timeout
,
wait
,
wait_timeout
):
for
arg
in
(
state
,
name
,
port
,
protocol
,
vip_type
):
...
...
@@ -210,20 +234,7 @@ def cloud_load_balancer(module, state, name, meta, algorithm, port, protocol,
pyrax
.
utils
.
wait_for_build
(
balancer
,
interval
=
5
,
attempts
=
attempts
)
balancer
.
get
()
instance
=
{}
for
key
,
value
in
vars
(
balancer
)
.
iteritems
():
if
key
==
'virtual_ips'
:
virtual_ips
=
[]
instance
[
key
]
=
[]
for
vip
in
value
:
vip_dict
=
{}
for
vip_key
,
vip_value
in
vars
(
vip
)
.
iteritems
():
if
isinstance
(
vip_value
,
NON_CALLABLES
):
vip_dict
[
vip_key
]
=
vip_value
instance
[
key
]
.
append
(
vip_dict
)
elif
(
isinstance
(
value
,
NON_CALLABLES
)
and
not
key
.
startswith
(
'_'
)):
instance
[
key
]
=
value
instance
=
to_dict
(
balancer
)
result
=
dict
(
changed
=
changed
,
balancer
=
instance
)
...
...
@@ -246,20 +257,7 @@ def cloud_load_balancer(module, state, name, meta, algorithm, port, protocol,
except
Exception
,
e
:
module
.
fail_json
(
msg
=
'
%
s'
%
e
.
message
)
instance
=
{}
for
key
,
value
in
vars
(
balancer
)
.
iteritems
():
if
key
==
'virtual_ips'
:
virtual_ips
=
[]
instance
[
key
]
=
[]
for
vip
in
value
:
vip_dict
=
{}
for
vip_key
,
vip_value
in
vars
(
vip
)
.
iteritems
():
if
isinstance
(
vip_value
,
NON_CALLABLES
):
vip_dict
[
vip_key
]
=
vip_value
instance
[
key
]
.
append
(
vip_dict
)
elif
(
isinstance
(
value
,
NON_CALLABLES
)
and
not
key
.
startswith
(
'_'
)):
instance
[
key
]
=
value
instance
=
to_dict
(
balancer
)
if
wait
:
attempts
=
wait_timeout
/
5
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment