|
@@ -38,6 +38,7 @@ import os
|
|
|
import re
|
|
|
import shutil
|
|
|
import subprocess
|
|
|
+import tempfile
|
|
|
# pylint: disable=import-error
|
|
|
import ruamel.yaml as yaml
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
@@ -769,7 +770,8 @@ class OpenShiftCLI(object):
|
|
|
if not res['results']:
|
|
|
return res
|
|
|
|
|
|
- fname = '/tmp/%s' % rname
|
|
|
+ fname = Utils.create_tmpfile(rname + '-')
|
|
|
+
|
|
|
yed = Yedit(fname, res['results'][0], separator=sep)
|
|
|
changes = []
|
|
|
for key, value in content.items():
|
|
@@ -793,7 +795,7 @@ class OpenShiftCLI(object):
|
|
|
|
|
|
def _create_from_content(self, rname, content):
|
|
|
'''create a temporary file and then call oc create on it'''
|
|
|
- fname = '/tmp/%s' % rname
|
|
|
+ fname = Utils.create_tmpfile(rname + '-')
|
|
|
yed = Yedit(fname, content=content)
|
|
|
yed.write()
|
|
|
|
|
@@ -836,7 +838,7 @@ class OpenShiftCLI(object):
|
|
|
if results['returncode'] != 0 or not create:
|
|
|
return results
|
|
|
|
|
|
- fname = '/tmp/%s' % template_name
|
|
|
+ fname = Utils.create_tmpfile(template_name + '-')
|
|
|
yed = Yedit(fname, results['results'])
|
|
|
yed.write()
|
|
|
|
|
@@ -1017,32 +1019,50 @@ class OpenShiftCLI(object):
|
|
|
|
|
|
class Utils(object):
|
|
|
''' utilities for openshiftcli modules '''
|
|
|
+
|
|
|
+ @staticmethod
|
|
|
+ def _write(filename, contents):
|
|
|
+ ''' Actually write the file contents to disk. This helps with mocking. '''
|
|
|
+
|
|
|
+ with open(filename, 'w') as sfd:
|
|
|
+ sfd.write(contents)
|
|
|
+
|
|
|
@staticmethod
|
|
|
- def create_file(rname, data, ftype='yaml'):
|
|
|
+ def create_tmp_file_from_contents(rname, data, ftype='yaml'):
|
|
|
''' create a file in tmp with name and contents'''
|
|
|
- path = os.path.join('/tmp', rname)
|
|
|
- with open(path, 'w') as fds:
|
|
|
- if ftype == 'yaml':
|
|
|
- fds.write(yaml.dump(data, Dumper=yaml.RoundTripDumper))
|
|
|
|
|
|
- elif ftype == 'json':
|
|
|
- fds.write(json.dumps(data))
|
|
|
- else:
|
|
|
- fds.write(data)
|
|
|
+ tmp = Utils.create_tmpfile(prefix=rname)
|
|
|
+
|
|
|
+ if ftype == 'yaml':
|
|
|
+ Utils._write(tmp, yaml.dump(data, Dumper=yaml.RoundTripDumper))
|
|
|
+ elif ftype == 'json':
|
|
|
+ Utils._write(tmp, json.dumps(data))
|
|
|
+ else:
|
|
|
+ Utils._write(tmp, data)
|
|
|
|
|
|
# Register cleanup when module is done
|
|
|
- atexit.register(Utils.cleanup, [path])
|
|
|
- return path
|
|
|
+ atexit.register(Utils.cleanup, [tmp])
|
|
|
+ return tmp
|
|
|
+
|
|
|
+ @staticmethod
|
|
|
+ def create_tmpfile(prefix=None):
|
|
|
+ ''' Generates and returns a temporary file name '''
|
|
|
+
|
|
|
+ with tempfile.NamedTemporaryFile(prefix=prefix, delete=False) as tmp:
|
|
|
+ return tmp.name
|
|
|
|
|
|
@staticmethod
|
|
|
- def create_files_from_contents(content, content_type=None):
|
|
|
+ def create_tmp_files_from_contents(content, content_type=None):
|
|
|
'''Turn an array of dict: filename, content into a files array'''
|
|
|
if not isinstance(content, list):
|
|
|
content = [content]
|
|
|
files = []
|
|
|
for item in content:
|
|
|
- path = Utils.create_file(item['path'], item['data'], ftype=content_type)
|
|
|
- files.append({'name': os.path.basename(path), 'path': path})
|
|
|
+ path = Utils.create_tmp_file_from_contents(item['path'] + '-',
|
|
|
+ item['data'],
|
|
|
+ ftype=content_type)
|
|
|
+ files.append({'name': os.path.basename(item['path']),
|
|
|
+ 'path': path})
|
|
|
return files
|
|
|
|
|
|
@staticmethod
|
|
@@ -1418,7 +1438,7 @@ class OCSecret(OpenShiftCLI):
|
|
|
def create(self, files=None, contents=None):
|
|
|
'''Create a secret '''
|
|
|
if not files:
|
|
|
- files = Utils.create_files_from_contents(contents)
|
|
|
+ files = Utils.create_tmp_files_from_contents(contents)
|
|
|
|
|
|
secrets = ["%s=%s" % (sfile['name'], sfile['path']) for sfile in files]
|
|
|
cmd = ['secrets', 'new', self.name]
|
|
@@ -1451,7 +1471,7 @@ class OCSecret(OpenShiftCLI):
|
|
|
This is accomplished by passing -ojson. This will most likely change in the future
|
|
|
'''
|
|
|
if not files:
|
|
|
- files = Utils.create_files_from_contents(contents)
|
|
|
+ files = Utils.create_tmp_files_from_contents(contents)
|
|
|
|
|
|
secrets = ["%s=%s" % (sfile['name'], sfile['path']) for sfile in files]
|
|
|
cmd = ['-ojson', 'secrets', 'new', self.name]
|
|
@@ -1502,7 +1522,7 @@ class OCSecret(OpenShiftCLI):
|
|
|
if params['files']:
|
|
|
files = params['files']
|
|
|
elif params['contents']:
|
|
|
- files = Utils.create_files_from_contents(params['contents'])
|
|
|
+ files = Utils.create_tmp_files_from_contents(params['contents'])
|
|
|
else:
|
|
|
return {'failed': True,
|
|
|
'msg': 'Either specify files or contents.'}
|
|
@@ -1516,7 +1536,7 @@ class OCSecret(OpenShiftCLI):
|
|
|
return {'changed': True,
|
|
|
'msg': 'Would have performed a create.'}
|
|
|
|
|
|
- api_rval = ocsecret.create(params['files'], params['contents'])
|
|
|
+ api_rval = ocsecret.create(files, params['contents'])
|
|
|
|
|
|
# Remove files
|
|
|
if files and params['delete_after']:
|