modify_yaml.py 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. # vim: expandtab:tabstop=4:shiftwidth=4
  4. ''' modify_yaml ansible module '''
  5. import yaml
  6. DOCUMENTATION = '''
  7. ---
  8. module: modify_yaml
  9. short_description: Modify yaml key value pairs
  10. author: Andrew Butcher
  11. requirements: [ ]
  12. '''
  13. EXAMPLES = '''
  14. - modify_yaml:
  15. dest: /etc/origin/master/master-config.yaml
  16. yaml_key: 'kubernetesMasterConfig.masterCount'
  17. yaml_value: 2
  18. '''
  19. # pylint: disable=missing-docstring
  20. def set_key(yaml_data, yaml_key, yaml_value):
  21. changes = []
  22. ptr = yaml_data
  23. for key in yaml_key.split('.'):
  24. if key not in ptr and key != yaml_key.split('.')[-1]:
  25. ptr[key] = {}
  26. ptr = ptr[key]
  27. elif key == yaml_key.split('.')[-1]:
  28. if (key in ptr and module.safe_eval(ptr[key]) != yaml_value) or (key not in ptr): # noqa: F405
  29. ptr[key] = yaml_value
  30. changes.append((yaml_key, yaml_value))
  31. else:
  32. ptr = ptr[key]
  33. return changes
  34. def main():
  35. ''' Modify key (supplied in jinja2 dot notation) in yaml file, setting
  36. the key to the desired value.
  37. '''
  38. # disabling pylint errors for global-variable-undefined and invalid-name
  39. # for 'global module' usage, since it is required to use ansible_facts
  40. # pylint: disable=global-variable-undefined, invalid-name,
  41. # redefined-outer-name
  42. global module
  43. module = AnsibleModule( # noqa: F405
  44. argument_spec=dict(
  45. dest=dict(required=True),
  46. yaml_key=dict(required=True),
  47. yaml_value=dict(required=True),
  48. backup=dict(required=False, default=True, type='bool'),
  49. ),
  50. supports_check_mode=True,
  51. )
  52. dest = module.params['dest']
  53. yaml_key = module.params['yaml_key']
  54. yaml_value = module.safe_eval(module.params['yaml_value'])
  55. backup = module.params['backup']
  56. # Represent null values as an empty string.
  57. # pylint: disable=missing-docstring, unused-argument
  58. def none_representer(dumper, data):
  59. return yaml.ScalarNode(tag=u'tag:yaml.org,2002:null', value=u'')
  60. yaml.add_representer(type(None), none_representer)
  61. try:
  62. yaml_file = open(dest)
  63. yaml_data = yaml.safe_load(yaml_file.read())
  64. yaml_file.close()
  65. changes = set_key(yaml_data, yaml_key, yaml_value)
  66. if len(changes) > 0:
  67. if backup:
  68. module.backup_local(dest)
  69. yaml_file = open(dest, 'w')
  70. yaml_string = yaml.dump(yaml_data, default_flow_style=False)
  71. yaml_string = yaml_string.replace('\'\'', '""')
  72. yaml_file.write(yaml_string)
  73. yaml_file.close()
  74. return module.exit_json(changed=(len(changes) > 0), changes=changes)
  75. # ignore broad-except error to avoid stack trace to ansible user
  76. # pylint: disable=broad-except
  77. except Exception, e:
  78. return module.fail_json(msg=str(e))
  79. # ignore pylint errors related to the module_utils import
  80. # pylint: disable=redefined-builtin, unused-wildcard-import, wildcard-import, wrong-import-position
  81. # import module snippets
  82. from ansible.module_utils.basic import * # noqa: F402,F403
  83. if __name__ == '__main__':
  84. main()