alainivars/utils2devops

View on GitHub
utils2devops/lxd_lxc/lxc_container.py

Summary

Maintainability
A
45 mins
Test Coverage
#!/home/alain/venv/utils2devops/bin/python
from utils2devops.lxd_lxc.base import parser
from utils2devops.lxd_lxc.container import Container

if __name__ == '__main__':
    group2 = parser.add_mutually_exclusive_group(required=True)
    group2.add_argument('-statusAll', action='store_true', default=False,
                        help='give the status of all container')
    group2.add_argument('-deleteAll', action='store_true', default=False,
                        help='delete all container')
    group2.add_argument('-startAll', action='store_true', default=False,
                        help='start all container')
    group2.add_argument('-stopAll', action='store_true', default=False,
                        help='stop all container')
    group3 = parser.add_argument_group()
    group3.add_argument('-controller_uuid', default='', required=False, help='''
        All container of that controller UUID, get it with -d -statusAll''')
    group3.add_argument('-model_uuid', default='', required=False, help='''
        All container of that model UUID, get it with -d -statusAll''')

    args = parser.parse_args()
    if args.endpoint:
        object = Container(args.verbose, args.endpoint, args.cert)
    else:
        object = Container(args.verbose)
    if args.statusAll:
        object.status_all()
    elif args.startAll:
        object.start_all(args.controller_uuid, args.model_uuid)
    elif args.stopAll:
        object.stop_all(args.controller_uuid, args.model_uuid)
    elif args.deleteAll and args.sure == 'YES_I_AM_SURE':
        object.delete_all(args.controller_uuid, args.model_uuid)
    else:
        print(parser.format_help())