|
@@ -245,6 +245,7 @@ EXAMPLES = '''
|
|
|
# -*- -*- -*- End included fragment: doc/registry -*- -*- -*-
|
|
|
|
|
|
# -*- -*- -*- Begin included fragment: ../../lib_utils/src/class/yedit.py -*- -*- -*-
|
|
|
+# pylint: disable=undefined-variable,missing-docstring
|
|
|
# noqa: E301,E302
|
|
|
|
|
|
|
|
@@ -439,14 +440,16 @@ class Yedit(object):
|
|
|
if self.backup and self.file_exists():
|
|
|
shutil.copy(self.filename, self.filename + '.orig')
|
|
|
|
|
|
- if hasattr(yaml, 'RoundTripDumper'):
|
|
|
- # pylint: disable=no-member
|
|
|
- if hasattr(self.yaml_dict, 'fa'):
|
|
|
- self.yaml_dict.fa.set_block_style()
|
|
|
+ # Try to set format attributes if supported
|
|
|
+ try:
|
|
|
+ self.yaml_dict.fa.set_block_style()
|
|
|
+ except AttributeError:
|
|
|
+ pass
|
|
|
|
|
|
- # pylint: disable=no-member
|
|
|
+ # Try to use RoundTripDumper if supported.
|
|
|
+ try:
|
|
|
Yedit._write(self.filename, yaml.dump(self.yaml_dict, Dumper=yaml.RoundTripDumper))
|
|
|
- else:
|
|
|
+ except AttributeError:
|
|
|
Yedit._write(self.filename, yaml.safe_dump(self.yaml_dict, default_flow_style=False))
|
|
|
|
|
|
return (True, self.yaml_dict)
|
|
@@ -487,15 +490,23 @@ class Yedit(object):
|
|
|
# check if it is yaml
|
|
|
try:
|
|
|
if content_type == 'yaml' and contents:
|
|
|
- # pylint: disable=no-member
|
|
|
- if hasattr(yaml, 'RoundTripLoader'):
|
|
|
- self.yaml_dict = yaml.load(contents, yaml.RoundTripLoader)
|
|
|
- else:
|
|
|
+ # Try to set format attributes if supported
|
|
|
+ try:
|
|
|
+ self.yaml_dict.fa.set_block_style()
|
|
|
+ except AttributeError:
|
|
|
+ pass
|
|
|
+
|
|
|
+ # Try to use RoundTripLoader if supported.
|
|
|
+ try:
|
|
|
+ self.yaml_dict = yaml.safe_load(contents, yaml.RoundTripLoader)
|
|
|
+ except AttributeError:
|
|
|
self.yaml_dict = yaml.safe_load(contents)
|
|
|
|
|
|
- # pylint: disable=no-member
|
|
|
- if hasattr(self.yaml_dict, 'fa'):
|
|
|
+ # Try to set format attributes if supported
|
|
|
+ try:
|
|
|
self.yaml_dict.fa.set_block_style()
|
|
|
+ except AttributeError:
|
|
|
+ pass
|
|
|
|
|
|
elif content_type == 'json' and contents:
|
|
|
self.yaml_dict = json.loads(contents)
|
|
@@ -525,14 +536,16 @@ class Yedit(object):
|
|
|
return (False, self.yaml_dict)
|
|
|
|
|
|
if isinstance(entry, dict):
|
|
|
- # pylint: disable=no-member,maybe-no-member
|
|
|
+ # AUDIT:maybe-no-member makes sense due to fuzzy types
|
|
|
+ # pylint: disable=maybe-no-member
|
|
|
if key_or_item in entry:
|
|
|
entry.pop(key_or_item)
|
|
|
return (True, self.yaml_dict)
|
|
|
return (False, self.yaml_dict)
|
|
|
|
|
|
elif isinstance(entry, list):
|
|
|
- # pylint: disable=no-member,maybe-no-member
|
|
|
+ # AUDIT:maybe-no-member makes sense due to fuzzy types
|
|
|
+ # pylint: disable=maybe-no-member
|
|
|
ind = None
|
|
|
try:
|
|
|
ind = entry.index(key_or_item)
|
|
@@ -600,7 +613,9 @@ class Yedit(object):
|
|
|
if not isinstance(entry, list):
|
|
|
return (False, self.yaml_dict)
|
|
|
|
|
|
- # pylint: disable=no-member,maybe-no-member
|
|
|
+ # AUDIT:maybe-no-member makes sense due to loading data from
|
|
|
+ # a serialized format.
|
|
|
+ # pylint: disable=maybe-no-member
|
|
|
entry.append(value)
|
|
|
return (True, self.yaml_dict)
|
|
|
|
|
@@ -613,7 +628,8 @@ class Yedit(object):
|
|
|
entry = None
|
|
|
|
|
|
if isinstance(entry, dict):
|
|
|
- # pylint: disable=no-member,maybe-no-member
|
|
|
+ # AUDIT:maybe-no-member makes sense due to fuzzy types
|
|
|
+ # pylint: disable=maybe-no-member
|
|
|
if not isinstance(value, dict):
|
|
|
raise YeditException('Cannot replace key, value entry in ' +
|
|
|
'dict with non-dict type. value=[%s] [%s]' % (value, type(value))) # noqa: E501
|
|
@@ -622,7 +638,8 @@ class Yedit(object):
|
|
|
return (True, self.yaml_dict)
|
|
|
|
|
|
elif isinstance(entry, list):
|
|
|
- # pylint: disable=no-member,maybe-no-member
|
|
|
+ # AUDIT:maybe-no-member makes sense due to fuzzy types
|
|
|
+ # pylint: disable=maybe-no-member
|
|
|
ind = None
|
|
|
if curr_value:
|
|
|
try:
|
|
@@ -661,19 +678,20 @@ class Yedit(object):
|
|
|
return (False, self.yaml_dict)
|
|
|
|
|
|
# deepcopy didn't work
|
|
|
- if hasattr(yaml, 'round_trip_dump'):
|
|
|
- # pylint: disable=no-member
|
|
|
+ # Try to use ruamel.yaml and fallback to pyyaml
|
|
|
+ try:
|
|
|
tmp_copy = yaml.load(yaml.round_trip_dump(self.yaml_dict,
|
|
|
default_flow_style=False),
|
|
|
yaml.RoundTripLoader)
|
|
|
-
|
|
|
- # pylint: disable=no-member
|
|
|
- if hasattr(self.yaml_dict, 'fa'):
|
|
|
- tmp_copy.fa.set_block_style()
|
|
|
-
|
|
|
- else:
|
|
|
+ except AttributeError:
|
|
|
tmp_copy = copy.deepcopy(self.yaml_dict)
|
|
|
|
|
|
+ # set the format attributes if available
|
|
|
+ try:
|
|
|
+ tmp_copy.fa.set_block_style()
|
|
|
+ except AttributeError:
|
|
|
+ pass
|
|
|
+
|
|
|
result = Yedit.add_entry(tmp_copy, path, value, self.separator)
|
|
|
if not result:
|
|
|
return (False, self.yaml_dict)
|
|
@@ -686,17 +704,20 @@ class Yedit(object):
|
|
|
''' create a yaml file '''
|
|
|
if not self.file_exists():
|
|
|
# deepcopy didn't work
|
|
|
- if hasattr(yaml, 'round_trip_dump'):
|
|
|
- # pylint: disable=no-member
|
|
|
- tmp_copy = yaml.load(yaml.round_trip_dump(self.yaml_dict, default_flow_style=False), # noqa: E501
|
|
|
+ # Try to use ruamel.yaml and fallback to pyyaml
|
|
|
+ try:
|
|
|
+ tmp_copy = yaml.load(yaml.round_trip_dump(self.yaml_dict,
|
|
|
+ default_flow_style=False),
|
|
|
yaml.RoundTripLoader)
|
|
|
-
|
|
|
- # pylint: disable=no-member
|
|
|
- if hasattr(self.yaml_dict, 'fa'):
|
|
|
- tmp_copy.fa.set_block_style()
|
|
|
- else:
|
|
|
+ except AttributeError:
|
|
|
tmp_copy = copy.deepcopy(self.yaml_dict)
|
|
|
|
|
|
+ # set the format attributes if available
|
|
|
+ try:
|
|
|
+ tmp_copy.fa.set_block_style()
|
|
|
+ except AttributeError:
|
|
|
+ pass
|
|
|
+
|
|
|
result = Yedit.add_entry(tmp_copy, path, value, self.separator)
|
|
|
if result:
|
|
|
self.yaml_dict = tmp_copy
|
|
@@ -1138,6 +1159,7 @@ class Utils(object):
|
|
|
tmp = Utils.create_tmpfile(prefix=rname)
|
|
|
|
|
|
if ftype == 'yaml':
|
|
|
+ # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
|
|
|
# pylint: disable=no-member
|
|
|
if hasattr(yaml, 'RoundTripDumper'):
|
|
|
Utils._write(tmp, yaml.dump(data, Dumper=yaml.RoundTripDumper))
|
|
@@ -1225,6 +1247,7 @@ class Utils(object):
|
|
|
contents = sfd.read()
|
|
|
|
|
|
if sfile_type == 'yaml':
|
|
|
+ # AUDIT:no-member makes sense here due to ruamel.YAML/PyYAML usage
|
|
|
# pylint: disable=no-member
|
|
|
if hasattr(yaml, 'RoundTripLoader'):
|
|
|
contents = yaml.load(contents, yaml.RoundTripLoader)
|
|
@@ -1482,7 +1505,6 @@ spec:
|
|
|
|
|
|
super(DeploymentConfig, self).__init__(content=content)
|
|
|
|
|
|
- # pylint: disable=no-member
|
|
|
def add_env_value(self, key, value):
|
|
|
''' add key, value pair to env array '''
|
|
|
rval = False
|
|
@@ -1845,7 +1867,6 @@ class Secret(Yedit):
|
|
|
|
|
|
def update_secret(self, key, value):
|
|
|
''' update a secret'''
|
|
|
- # pylint: disable=no-member
|
|
|
if key in self.secrets:
|
|
|
self.secrets[key] = value
|
|
|
else:
|