|
@@ -1,7 +1,15 @@
|
|
|
-#!/usr/bin/env python
|
|
|
+#!usr/bin/env python
|
|
|
+# ___ ___ _ _ ___ ___ _ _____ ___ ___
|
|
|
+# / __| __| \| | __| _ \ /_\_ _| __| \
|
|
|
+# | (_ | _|| .` | _|| / / _ \| | | _|| |) |
|
|
|
+# \___|___|_|\_|___|_|_\/_/_\_\_|_|___|___/_ _____
|
|
|
+# | \ / _ \ | \| |/ _ \_ _| | __| \_ _|_ _|
|
|
|
+# | |) | (_) | | .` | (_) || | | _|| |) | | | |
|
|
|
+# |___/ \___/ |_|\_|\___/ |_| |___|___/___| |_|
|
|
|
'''
|
|
|
- OpenShiftCLI class that wraps the oc commands in a subprocess
|
|
|
+ OpenShiftCLI class that wraps the oc commands in a subprocess
|
|
|
'''
|
|
|
+
|
|
|
import atexit
|
|
|
import json
|
|
|
import os
|
|
@@ -9,6 +17,7 @@ import shutil
|
|
|
import subprocess
|
|
|
import yaml
|
|
|
|
|
|
+# pylint: disable=too-few-public-methods
|
|
|
class OpenShiftCLI(object):
|
|
|
''' Class to wrap the oc command line tools '''
|
|
|
def __init__(self,
|
|
@@ -20,22 +29,39 @@ class OpenShiftCLI(object):
|
|
|
self.verbose = verbose
|
|
|
self.kubeconfig = kubeconfig
|
|
|
|
|
|
- def replace(self, fname, force=False):
|
|
|
+ # Pylint allows only 5 arguments to be passed.
|
|
|
+ # pylint: disable=too-many-arguments
|
|
|
+ def _replace_content(self, resource, rname, content, force=False):
|
|
|
+ ''' replace the current object with the content '''
|
|
|
+ res = self._get(resource, rname)
|
|
|
+ if not res['results']:
|
|
|
+ return res
|
|
|
+
|
|
|
+ fname = '/tmp/%s' % rname
|
|
|
+ yed = Yedit(fname, res['results'][0])
|
|
|
+ for key, value in content.items():
|
|
|
+ yed.put(key, value)
|
|
|
+
|
|
|
+ atexit.register(Utils.cleanup, [fname])
|
|
|
+
|
|
|
+ return self._replace(fname, force)
|
|
|
+
|
|
|
+ def _replace(self, fname, force=False):
|
|
|
'''return all pods '''
|
|
|
- cmd = ['replace', '-f', fname]
|
|
|
+ cmd = ['-n', self.namespace, 'replace', '-f', fname]
|
|
|
if force:
|
|
|
- cmd = ['replace', '--force', '-f', fname]
|
|
|
+ cmd.append('--force')
|
|
|
return self.oc_cmd(cmd)
|
|
|
|
|
|
- def create(self, fname):
|
|
|
+ def _create(self, fname):
|
|
|
'''return all pods '''
|
|
|
return self.oc_cmd(['create', '-f', fname, '-n', self.namespace])
|
|
|
|
|
|
- def delete(self, resource, rname):
|
|
|
+ def _delete(self, resource, rname):
|
|
|
'''return all pods '''
|
|
|
return self.oc_cmd(['delete', resource, rname, '-n', self.namespace])
|
|
|
|
|
|
- def get(self, resource, rname=None):
|
|
|
+ def _get(self, resource, rname=None):
|
|
|
'''return a secret by name '''
|
|
|
cmd = ['get', resource, '-o', 'json', '-n', self.namespace]
|
|
|
if rname:
|
|
@@ -96,7 +122,7 @@ class Utils(object):
|
|
|
path = os.path.join('/tmp', rname)
|
|
|
with open(path, 'w') as fds:
|
|
|
if ftype == 'yaml':
|
|
|
- fds.write(yaml.dump(data, default_flow_style=False))
|
|
|
+ fds.write(yaml.safe_dump(data, default_flow_style=False))
|
|
|
|
|
|
elif ftype == 'json':
|
|
|
fds.write(json.dumps(data))
|
|
@@ -173,7 +199,7 @@ class Utils(object):
|
|
|
''' Given a user defined definition, compare it with the results given back by our query. '''
|
|
|
|
|
|
# Currently these values are autogenerated and we do not need to check them
|
|
|
- skip = ['creationTimestamp', 'selfLink', 'resourceVersion', 'uid', 'namespace']
|
|
|
+ skip = ['metadata', 'status']
|
|
|
|
|
|
for key, value in result_def.items():
|
|
|
if key in skip:
|
|
@@ -222,45 +248,246 @@ class Utils(object):
|
|
|
|
|
|
return True
|
|
|
|
|
|
-class DeploymentConfig(OpenShiftCLI):
|
|
|
- ''' Class to wrap the oc command line tools
|
|
|
- '''
|
|
|
+class YeditException(Exception):
|
|
|
+ ''' Exception class for Yedit '''
|
|
|
+ pass
|
|
|
+
|
|
|
+class Yedit(object):
|
|
|
+ ''' Class to modify yaml files '''
|
|
|
+
|
|
|
+ def __init__(self, filename=None, content=None):
|
|
|
+ self.content = content
|
|
|
+ self.filename = filename
|
|
|
+ self.__yaml_dict = content
|
|
|
+ if self.filename and not self.content:
|
|
|
+ self.get()
|
|
|
+ elif self.filename and self.content:
|
|
|
+ self.write()
|
|
|
+
|
|
|
+ @property
|
|
|
+ def yaml_dict(self):
|
|
|
+ ''' getter method for yaml_dict '''
|
|
|
+ return self.__yaml_dict
|
|
|
+
|
|
|
+ @yaml_dict.setter
|
|
|
+ def yaml_dict(self, value):
|
|
|
+ ''' setter method for yaml_dict '''
|
|
|
+ self.__yaml_dict = value
|
|
|
+
|
|
|
+ @staticmethod
|
|
|
+ def remove_entry(data, keys):
|
|
|
+ ''' remove an item from a dictionary with key notation a.b.c
|
|
|
+ d = {'a': {'b': 'c'}}}
|
|
|
+ keys = a.b
|
|
|
+ item = c
|
|
|
+ '''
|
|
|
+ if "." in keys:
|
|
|
+ key, rest = keys.split(".", 1)
|
|
|
+ if key in data.keys():
|
|
|
+ Yedit.remove_entry(data[key], rest)
|
|
|
+ else:
|
|
|
+ del data[keys]
|
|
|
+
|
|
|
+ @staticmethod
|
|
|
+ def add_entry(data, keys, item):
|
|
|
+ ''' Add an item to a dictionary with key notation a.b.c
|
|
|
+ d = {'a': {'b': 'c'}}}
|
|
|
+ keys = a.b
|
|
|
+ item = c
|
|
|
+ '''
|
|
|
+ if "." in keys:
|
|
|
+ key, rest = keys.split(".", 1)
|
|
|
+ if key not in data:
|
|
|
+ data[key] = {}
|
|
|
+
|
|
|
+ if not isinstance(data, dict):
|
|
|
+ raise YeditException('Invalid add_entry called on a [%s] of type [%s].' % (data, type(data)))
|
|
|
+ else:
|
|
|
+ Yedit.add_entry(data[key], rest, item)
|
|
|
+
|
|
|
+ else:
|
|
|
+ data[keys] = item
|
|
|
+
|
|
|
+
|
|
|
+ @staticmethod
|
|
|
+ def get_entry(data, keys):
|
|
|
+ ''' Get an item from a dictionary with key notation a.b.c
|
|
|
+ d = {'a': {'b': 'c'}}}
|
|
|
+ keys = a.b
|
|
|
+ return c
|
|
|
+ '''
|
|
|
+ if keys and "." in keys:
|
|
|
+ key, rest = keys.split(".", 1)
|
|
|
+ if not isinstance(data[key], dict):
|
|
|
+ raise YeditException('Invalid get_entry called on a [%s] of type [%s].' % (data, type(data)))
|
|
|
+
|
|
|
+ else:
|
|
|
+ return Yedit.get_entry(data[key], rest)
|
|
|
+
|
|
|
+ else:
|
|
|
+ return data.get(keys, None)
|
|
|
+
|
|
|
+
|
|
|
+ def write(self):
|
|
|
+ ''' write to file '''
|
|
|
+ if not self.filename:
|
|
|
+ raise YeditException('Please specify a filename.')
|
|
|
+
|
|
|
+ with open(self.filename, 'w') as yfd:
|
|
|
+ yfd.write(yaml.safe_dump(self.yaml_dict, default_flow_style=False))
|
|
|
+
|
|
|
+ def read(self):
|
|
|
+ ''' write to file '''
|
|
|
+ # check if it exists
|
|
|
+ if not self.exists():
|
|
|
+ return None
|
|
|
+
|
|
|
+ contents = None
|
|
|
+ with open(self.filename) as yfd:
|
|
|
+ contents = yfd.read()
|
|
|
+
|
|
|
+ return contents
|
|
|
+
|
|
|
+ def exists(self):
|
|
|
+ ''' return whether file exists '''
|
|
|
+ if os.path.exists(self.filename):
|
|
|
+ return True
|
|
|
+
|
|
|
+ return False
|
|
|
+
|
|
|
+ def get(self):
|
|
|
+ ''' return yaml file '''
|
|
|
+ contents = self.read()
|
|
|
+
|
|
|
+ if not contents:
|
|
|
+ return None
|
|
|
+
|
|
|
+ # check if it is yaml
|
|
|
+ try:
|
|
|
+ self.yaml_dict = yaml.load(contents)
|
|
|
+ except yaml.YAMLError as _:
|
|
|
+ # Error loading yaml
|
|
|
+ return None
|
|
|
+
|
|
|
+ return self.yaml_dict
|
|
|
+
|
|
|
+ def delete(self, key):
|
|
|
+ ''' put key, value into a yaml file '''
|
|
|
+ try:
|
|
|
+ entry = Yedit.get_entry(self.yaml_dict, key)
|
|
|
+ except KeyError as _:
|
|
|
+ entry = None
|
|
|
+ if not entry:
|
|
|
+ return (False, self.yaml_dict)
|
|
|
+
|
|
|
+ Yedit.remove_entry(self.yaml_dict, key)
|
|
|
+ self.write()
|
|
|
+ return (True, self.get())
|
|
|
+
|
|
|
+ def put(self, key, value):
|
|
|
+ ''' put key, value into a yaml file '''
|
|
|
+ try:
|
|
|
+ entry = Yedit.get_entry(self.yaml_dict, key)
|
|
|
+ except KeyError as _:
|
|
|
+ entry = None
|
|
|
+
|
|
|
+ if entry == value:
|
|
|
+ return (False, self.yaml_dict)
|
|
|
+
|
|
|
+ Yedit.add_entry(self.yaml_dict, key, value)
|
|
|
+ self.write()
|
|
|
+ return (True, self.get())
|
|
|
+
|
|
|
+ def create(self, key, value):
|
|
|
+ ''' create the file '''
|
|
|
+ if not self.exists():
|
|
|
+ self.yaml_dict = {key: value}
|
|
|
+ self.write()
|
|
|
+ return (True, self.get())
|
|
|
+
|
|
|
+ return (False, self.get())
|
|
|
+
|
|
|
+class OCObject(OpenShiftCLI):
|
|
|
+ ''' Class to wrap the oc command line tools '''
|
|
|
+
|
|
|
+ # pylint allows 5. we need 6
|
|
|
+ # pylint: disable=too-many-arguments
|
|
|
def __init__(self,
|
|
|
+ kind,
|
|
|
namespace,
|
|
|
- dname=None,
|
|
|
+ rname=None,
|
|
|
kubeconfig='/etc/origin/master/admin.kubeconfig',
|
|
|
verbose=False):
|
|
|
''' Constructor for OpenshiftOC '''
|
|
|
- super(DeploymentConfig, self).__init__(namespace, kubeconfig)
|
|
|
+ super(OCObject, self).__init__(namespace, kubeconfig)
|
|
|
+ self.kind = kind
|
|
|
self.namespace = namespace
|
|
|
- self.name = dname
|
|
|
+ self.name = rname
|
|
|
self.kubeconfig = kubeconfig
|
|
|
self.verbose = verbose
|
|
|
|
|
|
- def get_dc(self):
|
|
|
+ def get(self):
|
|
|
'''return a deploymentconfig by name '''
|
|
|
- return self.get('dc', self.name)
|
|
|
+ return self._get(self.kind, rname=self.name)
|
|
|
|
|
|
- def delete_dc(self):
|
|
|
+ def delete(self):
|
|
|
'''return all pods '''
|
|
|
- return self.delete('dc', self.name)
|
|
|
+ return self._delete(self.kind, self.name)
|
|
|
|
|
|
- def new_dc(self, dfile):
|
|
|
+ def create(self, files=None, content=None):
|
|
|
'''Create a deploymentconfig '''
|
|
|
- return self.create(dfile)
|
|
|
+ if files:
|
|
|
+ return self._create(files[0])
|
|
|
+
|
|
|
+ return self._create(Utils.create_files_from_contents(content))
|
|
|
|
|
|
- def update_dc(self, dfile, force=False):
|
|
|
+
|
|
|
+ # pylint: disable=too-many-function-args
|
|
|
+ def update(self, files=None, content=None, force=False):
|
|
|
'''run update dc
|
|
|
|
|
|
This receives a list of file names and takes the first filename and calls replace.
|
|
|
'''
|
|
|
- return self.replace(dfile, force)
|
|
|
+ if files:
|
|
|
+ return self._replace(files[0], force)
|
|
|
+
|
|
|
+ return self.update_content(content, force)
|
|
|
+
|
|
|
+ def update_content(self, content, force=False):
|
|
|
+ '''update the dc with the content'''
|
|
|
+ return self._replace_content(self.kind, self.name, content, force=force)
|
|
|
+
|
|
|
+ def needs_update(self, files=None, content=None, content_type='yaml'):
|
|
|
+ ''' check to see if we need to update '''
|
|
|
+ objects = self.get()
|
|
|
+ if objects['returncode'] != 0:
|
|
|
+ return objects
|
|
|
+
|
|
|
+ # pylint: disable=no-member
|
|
|
+ data = None
|
|
|
+ if files:
|
|
|
+ data = Utils.get_resource_file(files[0], content_type)
|
|
|
+
|
|
|
+ # if equal then no need. So not equal is True
|
|
|
+ return not Utils.check_def_equal(data, objects['results'][0], True)
|
|
|
+ else:
|
|
|
+ data = content
|
|
|
+
|
|
|
+ for key, value in data.items():
|
|
|
+ if key == 'metadata':
|
|
|
+ continue
|
|
|
+ if not objects['results'][0].has_key(key):
|
|
|
+ return True
|
|
|
+ if value != objects['results'][0][key]:
|
|
|
+ return True
|
|
|
+
|
|
|
+ return False
|
|
|
|
|
|
|
|
|
# pylint: disable=too-many-branches
|
|
|
def main():
|
|
|
'''
|
|
|
- ansible oc module for deploymentconfig
|
|
|
+ ansible oc module for services
|
|
|
'''
|
|
|
|
|
|
module = AnsibleModule(
|
|
@@ -271,24 +498,30 @@ def main():
|
|
|
debug=dict(default=False, type='bool'),
|
|
|
namespace=dict(default='default', type='str'),
|
|
|
name=dict(default=None, type='str'),
|
|
|
- deploymentconfig_file=dict(default=None, type='str'),
|
|
|
- input_type=dict(default='yaml', choices=['yaml', 'json'], type='str'),
|
|
|
+ files=dict(default=None, type='list'),
|
|
|
+ kind=dict(required=True,
|
|
|
+ type='str',
|
|
|
+ choices=['dc', 'deploymentconfig',
|
|
|
+ 'svc', 'service',
|
|
|
+ 'secret',
|
|
|
+ ]),
|
|
|
delete_after=dict(default=False, type='bool'),
|
|
|
content=dict(default=None, type='dict'),
|
|
|
force=dict(default=False, type='bool'),
|
|
|
),
|
|
|
- mutually_exclusive=[["contents", "deploymentconfig_file"]],
|
|
|
+ mutually_exclusive=[["content", "files"]],
|
|
|
|
|
|
supports_check_mode=True,
|
|
|
)
|
|
|
- occmd = DeploymentConfig(module.params['namespace'],
|
|
|
- dname=module.params['name'],
|
|
|
- kubeconfig=module.params['kubeconfig'],
|
|
|
- verbose=module.params['debug'])
|
|
|
+ ocobj = OCObject(module.params['kind'],
|
|
|
+ module.params['namespace'],
|
|
|
+ module.params['name'],
|
|
|
+ kubeconfig=module.params['kubeconfig'],
|
|
|
+ verbose=module.params['debug'])
|
|
|
|
|
|
state = module.params['state']
|
|
|
|
|
|
- api_rval = occmd.get_dc()
|
|
|
+ api_rval = ocobj.get()
|
|
|
|
|
|
#####
|
|
|
# Get
|
|
@@ -308,18 +541,10 @@ def main():
|
|
|
if module.check_mode:
|
|
|
module.exit_json(change=False, msg='Would have performed a delete.')
|
|
|
|
|
|
- api_rval = occmd.delete_dc()
|
|
|
+ api_rval = ocobj.delete()
|
|
|
module.exit_json(changed=True, results=api_rval, state="absent")
|
|
|
|
|
|
-
|
|
|
if state == 'present':
|
|
|
- if module.params['deploymentconfig_file']:
|
|
|
- dfile = module.params['deploymentconfig_file']
|
|
|
- elif module.params['content']:
|
|
|
- dfile = Utils.create_file('dc', module.params['content'])
|
|
|
- else:
|
|
|
- module.fail_json(msg="Please specify content or deploymentconfig file.")
|
|
|
-
|
|
|
########
|
|
|
# Create
|
|
|
########
|
|
@@ -328,40 +553,54 @@ def main():
|
|
|
if module.check_mode:
|
|
|
module.exit_json(change=False, msg='Would have performed a create.')
|
|
|
|
|
|
- api_rval = occmd.new_dc(dfile)
|
|
|
+ # Create it here
|
|
|
+ api_rval = ocobj.create(module.params['files'], module.params['content'])
|
|
|
+ if api_rval['returncode'] != 0:
|
|
|
+ module.fail_json(msg=api_rval)
|
|
|
|
|
|
- # Remove files
|
|
|
- if module.params['deploymentconfig_file'] and module.params['delete_after']:
|
|
|
- Utils.cleanup([dfile])
|
|
|
+ # return the created object
|
|
|
+ api_rval = ocobj.get()
|
|
|
|
|
|
if api_rval['returncode'] != 0:
|
|
|
module.fail_json(msg=api_rval)
|
|
|
|
|
|
+ # Remove files
|
|
|
+ if module.params['files'] and module.params['delete_after']:
|
|
|
+ Utils.cleanup(module.params['files'])
|
|
|
+
|
|
|
module.exit_json(changed=True, results=api_rval, state="present")
|
|
|
|
|
|
########
|
|
|
# Update
|
|
|
########
|
|
|
- if Utils.check_def_equal(Utils.get_resource_file(dfile), api_rval['results'][0]):
|
|
|
+ # if a file path is passed, use it.
|
|
|
+ update = ocobj.needs_update(module.params['files'], module.params['content'])
|
|
|
+ if not isinstance(update, bool):
|
|
|
+ module.fail_json(msg=update)
|
|
|
|
|
|
- # Remove files
|
|
|
- if module.params['deploymentconfig_file'] and module.params['delete_after']:
|
|
|
- Utils.cleanup([dfile])
|
|
|
+ # No changes
|
|
|
+ if not update:
|
|
|
+ if module.params['files'] and module.params['delete_after']:
|
|
|
+ Utils.cleanup(module.params['files'])
|
|
|
|
|
|
- module.exit_json(changed=False, results=api_rval['results'], state="present")
|
|
|
+ module.exit_json(changed=False, results=api_rval['results'][0], state="present")
|
|
|
|
|
|
if module.check_mode:
|
|
|
module.exit_json(change=False, msg='Would have performed an update.')
|
|
|
|
|
|
- api_rval = occmd.update_dc(dfile, force=module.params['force'])
|
|
|
+ api_rval = ocobj.update(module.params['files'],
|
|
|
+ module.params['content'],
|
|
|
+ module.params['force'])
|
|
|
|
|
|
- # Remove files
|
|
|
- if module.params['deploymentconfig_file'] and module.params['delete_after']:
|
|
|
- Utils.cleanup([dfile])
|
|
|
|
|
|
if api_rval['returncode'] != 0:
|
|
|
module.fail_json(msg=api_rval)
|
|
|
|
|
|
+ # return the created object
|
|
|
+ api_rval = ocobj.get()
|
|
|
+
|
|
|
+ if api_rval['returncode'] != 0:
|
|
|
+ module.fail_json(msg=api_rval)
|
|
|
|
|
|
module.exit_json(changed=True, results=api_rval, state="present")
|
|
|
|