modify_yaml.py 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. def main():
  20. ''' Modify key (supplied in jinja2 dot notation) in yaml file, setting
  21. the key to the desired value.
  22. '''
  23. # disabling pylint errors for global-variable-undefined and invalid-name
  24. # for 'global module' usage, since it is required to use ansible_facts
  25. # pylint: disable=global-variable-undefined, invalid-name,
  26. # redefined-outer-name
  27. global module
  28. module = AnsibleModule(
  29. argument_spec=dict(
  30. dest=dict(required=True),
  31. yaml_key=dict(required=True),
  32. yaml_value=dict(required=True),
  33. backup=dict(required=False, default=True, type='bool'),
  34. ),
  35. supports_check_mode=True,
  36. )
  37. dest = module.params['dest']
  38. yaml_key = module.params['yaml_key']
  39. yaml_value = module.safe_eval(module.params['yaml_value'])
  40. backup = module.params['backup']
  41. # Represent null values as an empty string.
  42. # pylint: disable=missing-docstring, unused-argument
  43. def none_representer(dumper, data):
  44. return yaml.ScalarNode(tag=u'tag:yaml.org,2002:null', value=u'')
  45. yaml.add_representer(type(None), none_representer)
  46. try:
  47. changes = []
  48. yaml_file = open(dest)
  49. yaml_data = yaml.safe_load(yaml_file.read())
  50. yaml_file.close()
  51. ptr = yaml_data
  52. for key in yaml_key.split('.'):
  53. if key not in ptr and key != yaml_key.split('.')[-1]:
  54. ptr[key] = {}
  55. elif key == yaml_key.split('.')[-1]:
  56. if (key in ptr and module.safe_eval(ptr[key]) != yaml_value) or (key not in ptr):
  57. ptr[key] = yaml_value
  58. changes.append((yaml_key, yaml_value))
  59. else:
  60. ptr = ptr[key]
  61. if len(changes) > 0:
  62. if backup:
  63. module.backup_local(dest)
  64. yaml_file = open(dest, 'w')
  65. yaml_string = yaml.dump(yaml_data, default_flow_style=False)
  66. yaml_string = yaml_string.replace('\'\'', '""')
  67. yaml_file.write(yaml_string)
  68. yaml_file.close()
  69. return module.exit_json(changed=(len(changes) > 0), changes=changes)
  70. # ignore broad-except error to avoid stack trace to ansible user
  71. # pylint: disable=broad-except
  72. except Exception, e:
  73. return module.fail_json(msg=str(e))
  74. # ignore pylint errors related to the module_utils import
  75. # pylint: disable=redefined-builtin, unused-wildcard-import, wildcard-import
  76. # import module snippets
  77. from ansible.module_utils.basic import *
  78. if __name__ == '__main__':
  79. main()