├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── BUILD.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── mok-image ├── Dockerfile ├── files │ ├── LICENSES │ │ └── README │ ├── etc │ │ ├── crictl.yaml │ │ ├── crio │ │ │ └── crio.conf.d │ │ │ │ └── 11-crio.conf │ │ ├── default │ │ │ └── kubelet │ │ ├── sysctl.d │ │ │ ├── 10-network-magic.conf │ │ │ └── 10-network-security.conf │ │ └── systemd │ │ │ └── system │ │ │ ├── kubelet.service │ │ │ ├── kubelet.service.d │ │ │ ├── 10-kubeadm.conf │ │ │ └── 11-kind.conf │ │ │ ├── kubelet.slice │ │ │ ├── node-address-update.service │ │ │ └── undo-mount-hacks.service │ ├── kind │ │ ├── README.txt │ │ └── bin │ │ │ ├── create-kubelet-cgroup-v2.sh │ │ │ ├── mount-product-files.sh │ │ │ └── undo-mount-hacks.sh │ ├── kube-flannel.yml │ ├── mok │ │ └── README │ └── usr │ │ └── local │ │ └── bin │ │ ├── clean-install │ │ ├── entrypoint │ │ └── update_kube-proxy.sh └── scripts │ ├── target-cc │ └── third_party │ └── gimme │ ├── LICENSE │ ├── README.md │ └── gimme ├── package └── mok ├── src ├── arch.sh ├── buildimage.sh ├── containerutils.sh ├── createcluster.sh ├── deletecluster.sh ├── embed-dockerfile.sh ├── error.sh ├── exec.sh ├── getcluster.sh ├── globals.sh ├── lib │ ├── JSONPath.sh │ └── parser.sh ├── machine.sh ├── machinecreate.sh ├── machinedestroy.sh ├── machinelist.sh ├── machinesetup.sh ├── machinestart.sh ├── machinestop.sh ├── macos.sh ├── main.sh ├── util.sh └── versions.sh └── tests ├── README.md ├── build-tests.sh ├── e2e-logs ├── 2020-06-05-1591359733_test-1_BAD_1.0000.log ├── 2020-06-05-1591359996_test-1_BAD_1.0000.log ├── 2020-06-05-1591360319_test-1_GOOD_1.0000.log ├── 2020-06-05-1591365638_test-1_GOOD_1.0000.log ├── 2020-06-05-1591366321_test-1_GOOD_1.0000.log ├── 2020-06-05-1591366441_test-2_GOOD_1.0000.log ├── 2020-06-05-1591366586_test-1_GOOD_1.0000.log ├── 2020-06-05-1591367000_test-2_GOOD_1.0000.log ├── 2020-06-05-1591372712_test-1_GOOD_1.0000.log ├── 2020-06-05-1591372979_test-2_GOOD_1.0000.log ├── 2020-06-05-1591377275_test-1_GOOD_1.0000.log ├── 2020-06-05-1591377693_test-2_GOOD_1.0000.log ├── 2020-06-05-1591396993_test-1_BAD_0.9927.log ├── 2020-06-05-1591397543_test-1_GOOD_1.0000.log ├── 2020-06-05-1591397979_test-2_GOOD_1.0000.log ├── 2020-06-06-1591400029_test-1_BAD_0.9913.log ├── 2020-06-06-1591401501_test-1_BAD_1.0000.log ├── 2020-06-06-1591401794_test-2_BAD_1.0000.log ├── 2020-06-06-1591403459_test-2_BAD_1.0000.log ├── 2020-06-06-1591403901_test-1_BAD_1.0000.log ├── 2020-06-06-1591404157_test-2_BAD_1.0000.log ├── 2020-06-06-1591404451_test-1_GOOD_1.0000.log ├── 2020-06-06-1591404854_test-2_GOOD_1.0000.log ├── 2020-06-07-1591548681_test-1_GOOD_1.0000.log ├── 2020-06-07-1591549005_test-2_GOOD_1.0000.log ├── 2020-06-07-1591552672_test-1_GOOD_1.0000.log ├── 2020-06-07-1591553096_test-2_GOOD_1.0000.log ├── 2020-06-08-1591651739_test-1_GOOD_1.0000.log ├── 2020-06-08-1591652144_test-2_GOOD_.log ├── 2020-06-25-1593124118_test-1_GOOD_1.0000.log ├── 2020-06-26-1593173882_test-1_BAD_1.0000.log ├── 2020-06-26-1593173916_test-1_BAD_1.0000.log ├── 2020-06-26-1593173991_test-1_BAD_1.0000.log ├── 2020-06-26-1593175450_test-1_GOOD_1.0000.log ├── 2020-06-26-1593175717_test-2_GOOD_1.0000.log ├── 2020-06-27-1593276521_test-1_BAD_1.0000.log ├── 2020-06-27-1593276576_test-1_BAD_1.0000.log ├── 2020-06-27-1593277981_test-1_GOOD_.log ├── 2020-06-27-1593278281_test-2_GOOD_1.0000.log ├── 2020-06-27-1593281825_test-1_GOOD_1.0000.log ├── 2020-06-27-1593282103_test-2_GOOD_1.0000.log ├── 2020-09-16-1600251508_test-1_GOOD_1.0000.log ├── 2020-09-16-1600251786_test-2_BAD_1.0000.log ├── 2020-09-16-1600270058_test-1_BAD_1.0000.log ├── 2020-09-16-1600270127_test-1_BAD_1.0000.log ├── 2020-09-16-1600280454_test-1_GOOD_1.0000.log ├── 2020-09-16-1600280636_test-2_GOOD_1.0000.log ├── 2020-09-16-1600282808_test-1_BAD_1.0000.log ├── 2020-09-16-1600283125_test-1_GOOD_1.0000.log ├── 2020-09-16-1600283316_test-2_GOOD_1.0000.log ├── 2020-09-16-1600284989_test-1_GOOD_1.0000.log ├── 2020-09-16-1600285349_test-2_GOOD_1.0000.log └── training │ ├── 2020-06-05-1591359418_test-1_BAD_1.0000.log │ ├── 2020-06-05-1591359857_test-1_BAD_1.0000.log │ ├── 2020-06-05-1591360319_test-1_GOOD_1.0000.log │ ├── 2020-06-06-1591400374_test-2_BAD_1.0000.log │ ├── 2020-06-06-1591403178_test-1_BAD_1.0000.log │ └── README.md ├── e2e-tests.sh ├── e2e ├── crm114 │ ├── BAD │ ├── BUILD_USAGE │ ├── CREATE_USAGE │ ├── DELETE_USAGE │ ├── EXEC_USAGE │ ├── GET_USAGE │ ├── GOOD │ ├── UNKNOWN_USAGE │ ├── classify.crm │ ├── learn.crm │ ├── unlearn.crm │ └── usage_match.crm ├── e2e-test-1.scr └── e2e-test-2.scr ├── shunit2 ├── testfiles └── docker_inspect_container.txt ├── unit-tests.sh └── usage-checks.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/BUILD.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/README.md -------------------------------------------------------------------------------- /mok-image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/mok-image/Dockerfile -------------------------------------------------------------------------------- /mok-image/files/LICENSES/README: -------------------------------------------------------------------------------- 1 | Go license files 2 | -------------------------------------------------------------------------------- /mok-image/files/etc/crictl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/mok-image/files/etc/crictl.yaml -------------------------------------------------------------------------------- /mok-image/files/etc/crio/crio.conf.d/11-crio.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/mok-image/files/etc/crio/crio.conf.d/11-crio.conf -------------------------------------------------------------------------------- /mok-image/files/etc/default/kubelet: -------------------------------------------------------------------------------- 1 | KUBELET_EXTRA_ARGS= 2 | -------------------------------------------------------------------------------- /mok-image/files/etc/sysctl.d/10-network-magic.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/mok-image/files/etc/sysctl.d/10-network-magic.conf -------------------------------------------------------------------------------- /mok-image/files/etc/sysctl.d/10-network-security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/mok-image/files/etc/sysctl.d/10-network-security.conf -------------------------------------------------------------------------------- /mok-image/files/etc/systemd/system/kubelet.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/mok-image/files/etc/systemd/system/kubelet.service -------------------------------------------------------------------------------- /mok-image/files/etc/systemd/system/kubelet.service.d/10-kubeadm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/mok-image/files/etc/systemd/system/kubelet.service.d/10-kubeadm.conf -------------------------------------------------------------------------------- /mok-image/files/etc/systemd/system/kubelet.service.d/11-kind.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/mok-image/files/etc/systemd/system/kubelet.service.d/11-kind.conf -------------------------------------------------------------------------------- /mok-image/files/etc/systemd/system/kubelet.slice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/mok-image/files/etc/systemd/system/kubelet.slice -------------------------------------------------------------------------------- /mok-image/files/etc/systemd/system/node-address-update.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/mok-image/files/etc/systemd/system/node-address-update.service -------------------------------------------------------------------------------- /mok-image/files/etc/systemd/system/undo-mount-hacks.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/mok-image/files/etc/systemd/system/undo-mount-hacks.service -------------------------------------------------------------------------------- /mok-image/files/kind/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/mok-image/files/kind/README.txt -------------------------------------------------------------------------------- /mok-image/files/kind/bin/create-kubelet-cgroup-v2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/mok-image/files/kind/bin/create-kubelet-cgroup-v2.sh -------------------------------------------------------------------------------- /mok-image/files/kind/bin/mount-product-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/mok-image/files/kind/bin/mount-product-files.sh -------------------------------------------------------------------------------- /mok-image/files/kind/bin/undo-mount-hacks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/mok-image/files/kind/bin/undo-mount-hacks.sh -------------------------------------------------------------------------------- /mok-image/files/kube-flannel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/mok-image/files/kube-flannel.yml -------------------------------------------------------------------------------- /mok-image/files/mok/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mok-image/files/usr/local/bin/clean-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/mok-image/files/usr/local/bin/clean-install -------------------------------------------------------------------------------- /mok-image/files/usr/local/bin/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/mok-image/files/usr/local/bin/entrypoint -------------------------------------------------------------------------------- /mok-image/files/usr/local/bin/update_kube-proxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/mok-image/files/usr/local/bin/update_kube-proxy.sh -------------------------------------------------------------------------------- /mok-image/scripts/target-cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/mok-image/scripts/target-cc -------------------------------------------------------------------------------- /mok-image/scripts/third_party/gimme/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/mok-image/scripts/third_party/gimme/LICENSE -------------------------------------------------------------------------------- /mok-image/scripts/third_party/gimme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/mok-image/scripts/third_party/gimme/README.md -------------------------------------------------------------------------------- /mok-image/scripts/third_party/gimme/gimme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/mok-image/scripts/third_party/gimme/gimme -------------------------------------------------------------------------------- /package/mok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/package/mok -------------------------------------------------------------------------------- /src/arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/src/arch.sh -------------------------------------------------------------------------------- /src/buildimage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/src/buildimage.sh -------------------------------------------------------------------------------- /src/containerutils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/src/containerutils.sh -------------------------------------------------------------------------------- /src/createcluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/src/createcluster.sh -------------------------------------------------------------------------------- /src/deletecluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/src/deletecluster.sh -------------------------------------------------------------------------------- /src/embed-dockerfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/src/embed-dockerfile.sh -------------------------------------------------------------------------------- /src/error.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/src/error.sh -------------------------------------------------------------------------------- /src/exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/src/exec.sh -------------------------------------------------------------------------------- /src/getcluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/src/getcluster.sh -------------------------------------------------------------------------------- /src/globals.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/src/globals.sh -------------------------------------------------------------------------------- /src/lib/JSONPath.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/src/lib/JSONPath.sh -------------------------------------------------------------------------------- /src/lib/parser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/src/lib/parser.sh -------------------------------------------------------------------------------- /src/machine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/src/machine.sh -------------------------------------------------------------------------------- /src/machinecreate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/src/machinecreate.sh -------------------------------------------------------------------------------- /src/machinedestroy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/src/machinedestroy.sh -------------------------------------------------------------------------------- /src/machinelist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/src/machinelist.sh -------------------------------------------------------------------------------- /src/machinesetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/src/machinesetup.sh -------------------------------------------------------------------------------- /src/machinestart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/src/machinestart.sh -------------------------------------------------------------------------------- /src/machinestop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/src/machinestop.sh -------------------------------------------------------------------------------- /src/macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/src/macos.sh -------------------------------------------------------------------------------- /src/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/src/main.sh -------------------------------------------------------------------------------- /src/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/src/util.sh -------------------------------------------------------------------------------- /src/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/src/versions.sh -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/build-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/build-tests.sh -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-05-1591359733_test-1_BAD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-05-1591359733_test-1_BAD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-05-1591359996_test-1_BAD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-05-1591359996_test-1_BAD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-05-1591360319_test-1_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-05-1591360319_test-1_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-05-1591365638_test-1_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-05-1591365638_test-1_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-05-1591366321_test-1_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-05-1591366321_test-1_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-05-1591366441_test-2_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-05-1591366441_test-2_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-05-1591366586_test-1_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-05-1591366586_test-1_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-05-1591367000_test-2_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-05-1591367000_test-2_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-05-1591372712_test-1_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-05-1591372712_test-1_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-05-1591372979_test-2_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-05-1591372979_test-2_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-05-1591377275_test-1_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-05-1591377275_test-1_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-05-1591377693_test-2_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-05-1591377693_test-2_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-05-1591396993_test-1_BAD_0.9927.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-05-1591396993_test-1_BAD_0.9927.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-05-1591397543_test-1_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-05-1591397543_test-1_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-05-1591397979_test-2_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-05-1591397979_test-2_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-06-1591400029_test-1_BAD_0.9913.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-06-1591400029_test-1_BAD_0.9913.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-06-1591401501_test-1_BAD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-06-1591401501_test-1_BAD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-06-1591401794_test-2_BAD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-06-1591401794_test-2_BAD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-06-1591403459_test-2_BAD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-06-1591403459_test-2_BAD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-06-1591403901_test-1_BAD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-06-1591403901_test-1_BAD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-06-1591404157_test-2_BAD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-06-1591404157_test-2_BAD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-06-1591404451_test-1_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-06-1591404451_test-1_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-06-1591404854_test-2_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-06-1591404854_test-2_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-07-1591548681_test-1_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-07-1591548681_test-1_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-07-1591549005_test-2_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-07-1591549005_test-2_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-07-1591552672_test-1_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-07-1591552672_test-1_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-07-1591553096_test-2_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-07-1591553096_test-2_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-08-1591651739_test-1_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-08-1591651739_test-1_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-08-1591652144_test-2_GOOD_.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-08-1591652144_test-2_GOOD_.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-25-1593124118_test-1_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-25-1593124118_test-1_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-26-1593173882_test-1_BAD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-26-1593173882_test-1_BAD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-26-1593173916_test-1_BAD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-26-1593173916_test-1_BAD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-26-1593173991_test-1_BAD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-26-1593173991_test-1_BAD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-26-1593175450_test-1_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-26-1593175450_test-1_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-26-1593175717_test-2_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-26-1593175717_test-2_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-27-1593276521_test-1_BAD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-27-1593276521_test-1_BAD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-27-1593276576_test-1_BAD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-27-1593276576_test-1_BAD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-27-1593277981_test-1_GOOD_.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-27-1593277981_test-1_GOOD_.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-27-1593278281_test-2_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-27-1593278281_test-2_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-27-1593281825_test-1_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-27-1593281825_test-1_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-06-27-1593282103_test-2_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-06-27-1593282103_test-2_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-09-16-1600251508_test-1_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-09-16-1600251508_test-1_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-09-16-1600251786_test-2_BAD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-09-16-1600251786_test-2_BAD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-09-16-1600270058_test-1_BAD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-09-16-1600270058_test-1_BAD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-09-16-1600270127_test-1_BAD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-09-16-1600270127_test-1_BAD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-09-16-1600280454_test-1_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-09-16-1600280454_test-1_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-09-16-1600280636_test-2_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-09-16-1600280636_test-2_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-09-16-1600282808_test-1_BAD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-09-16-1600282808_test-1_BAD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-09-16-1600283125_test-1_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-09-16-1600283125_test-1_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-09-16-1600283316_test-2_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-09-16-1600283316_test-2_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-09-16-1600284989_test-1_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-09-16-1600284989_test-1_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/2020-09-16-1600285349_test-2_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/2020-09-16-1600285349_test-2_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/training/2020-06-05-1591359418_test-1_BAD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/training/2020-06-05-1591359418_test-1_BAD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/training/2020-06-05-1591359857_test-1_BAD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/training/2020-06-05-1591359857_test-1_BAD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/training/2020-06-05-1591360319_test-1_GOOD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/training/2020-06-05-1591360319_test-1_GOOD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/training/2020-06-06-1591400374_test-2_BAD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/training/2020-06-06-1591400374_test-2_BAD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/training/2020-06-06-1591403178_test-1_BAD_1.0000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/training/2020-06-06-1591403178_test-1_BAD_1.0000.log -------------------------------------------------------------------------------- /tests/e2e-logs/training/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-logs/training/README.md -------------------------------------------------------------------------------- /tests/e2e-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e-tests.sh -------------------------------------------------------------------------------- /tests/e2e/crm114/BAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e/crm114/BAD -------------------------------------------------------------------------------- /tests/e2e/crm114/BUILD_USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e/crm114/BUILD_USAGE -------------------------------------------------------------------------------- /tests/e2e/crm114/CREATE_USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e/crm114/CREATE_USAGE -------------------------------------------------------------------------------- /tests/e2e/crm114/DELETE_USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e/crm114/DELETE_USAGE -------------------------------------------------------------------------------- /tests/e2e/crm114/EXEC_USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e/crm114/EXEC_USAGE -------------------------------------------------------------------------------- /tests/e2e/crm114/GET_USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e/crm114/GET_USAGE -------------------------------------------------------------------------------- /tests/e2e/crm114/GOOD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e/crm114/GOOD -------------------------------------------------------------------------------- /tests/e2e/crm114/UNKNOWN_USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e/crm114/UNKNOWN_USAGE -------------------------------------------------------------------------------- /tests/e2e/crm114/classify.crm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e/crm114/classify.crm -------------------------------------------------------------------------------- /tests/e2e/crm114/learn.crm: -------------------------------------------------------------------------------- 1 | { 2 | learn (:*:_arg2:) 3 | } 4 | -------------------------------------------------------------------------------- /tests/e2e/crm114/unlearn.crm: -------------------------------------------------------------------------------- 1 | { 2 | learn (:*:_arg2:) 3 | } 4 | -------------------------------------------------------------------------------- /tests/e2e/crm114/usage_match.crm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e/crm114/usage_match.crm -------------------------------------------------------------------------------- /tests/e2e/e2e-test-1.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e/e2e-test-1.scr -------------------------------------------------------------------------------- /tests/e2e/e2e-test-2.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/e2e/e2e-test-2.scr -------------------------------------------------------------------------------- /tests/shunit2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/shunit2 -------------------------------------------------------------------------------- /tests/testfiles/docker_inspect_container.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/testfiles/docker_inspect_container.txt -------------------------------------------------------------------------------- /tests/unit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/unit-tests.sh -------------------------------------------------------------------------------- /tests/usage-checks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bashtools/mok/HEAD/tests/usage-checks.sh --------------------------------------------------------------------------------