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
8cfec0a2
Commit
8cfec0a2
authored
Jun 17, 2015
by
Brian Coca
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #11297 from msabramo/serf_plugin_use_env_vars
Simplify serf inventory plugin
parents
194b8533
dc63bbf0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
12 deletions
+3
-12
plugins/inventory/serf.py
+3
-12
No files found.
plugins/inventory/serf.py
View file @
8cfec0a2
...
...
@@ -35,7 +35,7 @@ import os
import
sys
# https://pypi.python.org/pypi/serfclient
from
serfclient
.client
import
SerfClient
from
serfclient
import
SerfClient
,
EnvironmentConfig
try
:
import
json
...
...
@@ -46,17 +46,8 @@ _key = 'serf'
def
_serf_client
():
kwargs
=
{}
rpc_addr
=
os
.
getenv
(
'SERF_RPC_ADDR'
)
if
rpc_addr
:
kwargs
[
'host'
],
kwargs
[
'port'
]
=
rpc_addr
.
split
(
':'
)
rpc_auth
=
os
.
getenv
(
'SERF_RPC_AUTH'
)
if
rpc_auth
:
kwargs
[
'rpc_auth'
]
=
rpc_auth
return
SerfClient
(
**
kwargs
)
env
=
EnvironmentConfig
()
return
SerfClient
(
host
=
env
.
host
,
port
=
env
.
port
,
rpc_auth
=
env
.
auth_key
)
def
get_serf_members_data
():
...
...
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