diff options
author | Thomas Wiest <twiest@users.noreply.github.com> | 2015-07-06 14:31:07 -0400 |
---|---|---|
committer | Thomas Wiest <twiest@users.noreply.github.com> | 2015-07-06 14:31:07 -0400 |
commit | a7f98a0b8c19d7d20c2e9761104ca24affbbb249 (patch) | |
tree | 27c3a08e9771230ee66a4a665ca5e3f2d3e3343d /bin | |
parent | 80ea7241e019c1881bf8b536b8606f8ef22c583d (diff) | |
parent | 3c48b582bf63fdf46efb2eb644f3adac313ffd6d (diff) | |
download | openshift-a7f98a0b8c19d7d20c2e9761104ca24affbbb249.tar.gz openshift-a7f98a0b8c19d7d20c2e9761104ca24affbbb249.tar.bz2 openshift-a7f98a0b8c19d7d20c2e9761104ca24affbbb249.tar.xz openshift-a7f98a0b8c19d7d20c2e9761104ca24affbbb249.zip |
Merge pull request #269 from lhuard1A/oo_option
Add a generic mechanism for passing options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/cluster | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/cluster b/bin/cluster index cb8ff0439..720dd230c 100755 --- a/bin/cluster +++ b/bin/cluster @@ -174,7 +174,7 @@ class Cluster(object): if args.option: for opt in args.option: k, v = opt.split('=', 1) - env['opt_' + k] = v + env['cli_' + k] = v ansible_env = '-e \'{}\''.format( ' '.join(['%s=%s' % (key, value) for (key, value) in env.items()]) |