Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F3769793
node.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Referenced Files
None
Subscribers
None
node.py
View Options
# -*- coding: utf-8 -*-
# -------------------------------------------------------------
# Salt — Node execution module
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Project: Nasqueron
# Created: 2017-10-21
# Description: Functions related to the nodes pillar entry
# License: BSD-2-Clause
# -------------------------------------------------------------
from
salt.exceptions
import
CommandExecutionError
,
SaltCloudConfigError
def
_get_all_nodes
():
return
__pillar__
.
get
(
'nodes'
,
{})
def
get_all_properties
(
nodename
=
None
):
'''
A function to get a node pillar configuration.
CLI Example:
salt * node.get_all_properties
'''
if
nodename
is
None
:
nodename
=
__grains__
[
'id'
]
all_nodes
=
_get_all_nodes
()
if
nodename
not
in
all_nodes
:
raise
CommandExecutionError
(
SaltCloudConfigError
(
"Node {0} not declared in pillar."
.
format
(
nodename
)
)
)
return
all_nodes
[
nodename
]
def
get
(
key
,
nodename
=
None
):
'''
A function to get a node pillar configuration key.
CLI Example:
salt * node.get hostname
'''
return
_get_property
(
key
,
nodename
,
None
)
def
_explode_key
(
k
):
return
k
.
split
(
':'
)
def
_get_first_key
(
k
):
return
_explode_key
(
k
)[
0
]
def
_strip_first_key
(
k
):
return
':'
.
join
(
_explode_key
(
k
)[
1
:])
def
_get_property
(
key
,
nodename
,
default_value
,
parent
=
None
):
if
parent
is
None
:
parent
=
get_all_properties
(
nodename
)
if
':'
in
key
:
first_key
=
_get_first_key
(
key
)
if
first_key
in
parent
:
return
_get_property
(
_strip_first_key
(
key
),
nodename
,
default_value
,
parent
[
first_key
]
)
elif
key
in
parent
:
return
parent
[
key
]
return
default_value
def
list
(
key
,
nodename
=
None
):
'''
A function to get a node pillar configuration.
Returns a list if found, or an empty list if not found.
CLI Example:
salt * node.list network:ipv4_aliases
'''
return
_get_property
(
key
,
nodename
,
[])
def
has
(
key
,
nodename
=
None
):
'''
A function to get a node pillar configuration.
Returns a boolean, False if not found.
CLI Example:
salt * node.has network:ipv6_tunnel
'''
value
=
_get_property
(
key
,
nodename
,
False
)
return
bool
(
value
)
def
has_role
(
role
,
nodename
=
None
):
'''
A function to determine if a node has the specified role.
Returns a boolean, False if not found.
CLI Example:
salt * node.has_role devserver
'''
return
role
in
list
(
'roles'
,
nodename
)
def
filter_by_role
(
pillar_key
,
nodename
=
None
):
'''
A function to filter a dictionary by roles.
The dictionary must respect the following structure:
- keys are role to check the current node against
- values are list of items
Returns a list, extending all the filtered lists.
CLI Example:
salt * node.filter_by_role web_content_sls
'''
roles
=
list
(
'roles'
,
nodename
)
dictionary
=
__pillar__
.
get
(
pillar_key
,
{})
filtered_list
=
[]
for
role
,
items
in
dictionary
.
iteritems
():
if
role
in
roles
:
filtered_list
.
extend
(
items
)
return
filtered_list
def
get_wwwroot
(
nodename
=
None
):
'''
A function to determine the wwwroot folder to use.
Returns a string depending of the FQDN.
CLI Example:
salt * node.get_wwwroot
'''
hostname
=
_get_property
(
"hostname"
,
nodename
,
None
)
if
hostname
is
None
:
raise
CommandExecutionError
(
SaltCloudConfigError
(
"Node {0} doesn't have a hostname property"
.
format
(
nodename
)
)
)
if
hostname
.
count
(
'.'
)
<
2
:
return
"wwwroot/{0}/www"
.
format
(
hostname
)
fqdn
=
hostname
.
split
(
"."
)
return
"wwwroot/{1}/{0}"
.
format
(
"."
.
join
(
fqdn
[
0
:
-
2
]),
"."
.
join
(
fqdn
[
-
2
:])
)
File Metadata
Details
Attached
Mime Type
text/x-python
Expires
Mon, Nov 25, 16:57 (20 h, 3 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2260607
Default Alt Text
node.py (3 KB)
Attached To
Mode
rOPS Nasqueron Operations
Attached
Detach File
Event Timeline
Log In to Comment