gitextract_vecf3u3x/ ├── .gitignore ├── CHANGES ├── LICENSE ├── README.md ├── VERSION ├── bin/ │ ├── docklet-master │ ├── docklet-supermaster │ └── docklet-worker ├── cloudsdk-installer.sh ├── conf/ │ ├── container/ │ │ ├── lxc2.container.batch.conf │ │ ├── lxc2.container.conf │ │ ├── lxc3.container.batch.conf │ │ └── lxc3.container.conf │ ├── docklet.conf.template │ ├── lxc-script/ │ │ ├── lxc-ifdown │ │ ├── lxc-ifup │ │ ├── lxc-mount │ │ └── lxc-prestart │ └── nginx_docklet.conf ├── doc/ │ ├── devdoc/ │ │ ├── coding.md │ │ ├── config_info.md │ │ ├── network-arch.md │ │ ├── networkmgr.md │ │ ├── openvswitch-vlan.md │ │ ├── proxy-control.md │ │ └── startup.md │ ├── devguide/ │ │ └── devguide.md │ └── example/ │ └── example-LogisticRegression.py ├── meter/ │ ├── connector/ │ │ ├── master.py │ │ └── minion.py │ ├── daemon/ │ │ ├── http.py │ │ ├── master_v1.py │ │ └── minion_v1.py │ ├── intra/ │ │ ├── billing.py │ │ ├── cgroup.py │ │ ├── smart.py │ │ └── system.py │ ├── main.py │ └── policy/ │ ├── allocate.py │ └── quota.py ├── prepare.sh ├── src/ │ ├── master/ │ │ ├── beansapplicationmgr.py │ │ ├── bugreporter.py │ │ ├── cloudmgr.py │ │ ├── deploy.py │ │ ├── httprest.py │ │ ├── jobmgr.py │ │ ├── lockmgr.py │ │ ├── monitor.py │ │ ├── network.py │ │ ├── nodemgr.py │ │ ├── notificationmgr.py │ │ ├── parser.py │ │ ├── releasemgr.py │ │ ├── settings.py │ │ ├── sysmgr.py │ │ ├── taskmgr.py │ │ ├── testTaskCtrler.py │ │ ├── testTaskMgr.py │ │ ├── testTaskWorker.py │ │ ├── userManager.py │ │ ├── userinit.sh │ │ └── vclustermgr.py │ ├── protos/ │ │ ├── rpc.proto │ │ ├── rpc_pb2.py │ │ └── rpc_pb2_grpc.py │ ├── utils/ │ │ ├── env.py │ │ ├── etcdlib.py │ │ ├── gputools.py │ │ ├── imagemgr.py │ │ ├── log.py │ │ ├── logs.py │ │ ├── lvmtool.py │ │ ├── manage.py │ │ ├── model.py │ │ ├── nettools.py │ │ ├── proxytool.py │ │ ├── tools.py │ │ └── updatebase.py │ └── worker/ │ ├── container.py │ ├── monitor.py │ ├── ossmounter.py │ ├── taskcontroller.py │ ├── taskworker.py │ └── worker.py ├── tools/ │ ├── DOCKLET_NOTES.txt │ ├── R_demo.ipynb │ ├── alterUserTable.py │ ├── clean-usage.py │ ├── cloudsetting.aliyun.template.json │ ├── dl_start_spark.sh │ ├── dl_stop_spark.sh │ ├── docklet-deploy.sh │ ├── etcd-multi-nodes.sh │ ├── etcd-one-node.sh │ ├── nginx_config.sh │ ├── npmrc │ ├── pip.conf │ ├── python_demo.ipynb │ ├── resolv.conf │ ├── sources.list │ ├── start_jupyter.sh │ ├── update-UserTable.sh │ ├── update-basefs.sh │ ├── update_baseurl.sh │ ├── update_con_network.py │ ├── update_v0.3.2.py │ ├── upgrade.py │ ├── upgrade_file2db.py │ └── vimrc.local ├── user/ │ ├── stopreqmgr.py │ └── user.py └── web/ ├── static/ │ ├── css/ │ │ └── docklet.css │ ├── dist/ │ │ ├── css/ │ │ │ ├── AdminLTE.css │ │ │ ├── filebox.css │ │ │ ├── flotconfig.css │ │ │ ├── modalconfig.css │ │ │ └── skins/ │ │ │ ├── _all-skins.css │ │ │ └── skin-blue.css │ │ └── js/ │ │ └── app.js │ └── js/ │ ├── plot_monitor.js │ └── plot_monitorReal.js ├── templates/ │ ├── addCluster.html │ ├── base_AdminLTE.html │ ├── batch/ │ │ ├── batch_admin_list.html │ │ ├── batch_create.html │ │ ├── batch_info.html │ │ ├── batch_list.html │ │ └── batch_output.html │ ├── beansapplication.html │ ├── cloud.html │ ├── config.html │ ├── create_notification.html │ ├── dashboard.html │ ├── description.html │ ├── error/ │ │ ├── 401.html │ │ └── 500.html │ ├── error.html │ ├── home.template │ ├── listcontainer.html │ ├── login.html │ ├── logs.html │ ├── monitor/ │ │ ├── history.html │ │ ├── historyVNode.html │ │ ├── hosts.html │ │ ├── hostsConAll.html │ │ ├── hostsRealtime.html │ │ ├── monitorUserAll.html │ │ ├── monitorUserCluster.html │ │ ├── status.html │ │ └── statusRealtime.html │ ├── notification.html │ ├── notification_info.html │ ├── opfailed.html │ ├── opsuccess.html │ ├── register.html │ ├── saveconfirm.html │ ├── settings.html │ ├── user/ │ │ ├── activate.html │ │ ├── info.html │ │ └── mailservererror.html │ └── user_list.html ├── web.py └── webViews/ ├── admin.py ├── authenticate/ │ ├── auth.py │ ├── login.py │ └── register.py ├── batch.py ├── beansapplication.py ├── checkname.py ├── cloud.py ├── cluster.py ├── cookie_tool.py ├── dashboard.py ├── dockletrequest.py ├── log.py ├── monitor.py ├── notification/ │ └── notification.py ├── reportbug.py ├── syslogs.py ├── user/ │ ├── grouplist.py │ ├── userActivate.py │ ├── userinfo.py │ └── userlist.py └── view.py