diff options
| author | Avesh Agarwal <avagarwa@redhat.com> | 2015-06-19 14:41:10 -0400 | 
|---|---|---|
| committer | Scott Dodson <sdodson@redhat.com> | 2015-08-26 13:22:42 -0400 | 
| commit | 1b3fff6248fbd6788a26ee2b6c60f7731891c0f4 (patch) | |
| tree | 6e2fc801a4366bf7e8075882e90f8383a638fb74 /bin/cluster | |
| parent | 2595194cc34db43de2d9f139ff7ed1cd41c47ab1 (diff) | |
| download | openshift-1b3fff6248fbd6788a26ee2b6c60f7731891c0f4.tar.gz openshift-1b3fff6248fbd6788a26ee2b6c60f7731891c0f4.tar.bz2 openshift-1b3fff6248fbd6788a26ee2b6c60f7731891c0f4.tar.xz openshift-1b3fff6248fbd6788a26ee2b6c60f7731891c0f4.zip  | |
Atomic Enterprise related changes.
Diffstat (limited to 'bin/cluster')
| -rwxr-xr-x | bin/cluster | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/cluster b/bin/cluster index c80fe0cab..486bf2a48 100755 --- a/bin/cluster +++ b/bin/cluster @@ -48,6 +48,7 @@ class Cluster(object):              deployment_type = os.environ['OS_DEPLOYMENT_TYPE']          return deployment_type +      def create(self, args):          """          Create an OpenShift cluster for given provider @@ -258,6 +259,9 @@ if __name__ == '__main__':      meta_parser.add_argument('-t', '--deployment-type',                               choices=['origin', 'online', 'enterprise'],                               help='Deployment type. (default: origin)') +    meta_parser.add_argument('-T', '--product-type', +                             choices=['openshift' 'atomic-enterprise'], +                             help='Product type. (default: openshift)')      meta_parser.add_argument('-o', '--option', action='append',                               help='options')  | 
