├── .github └── workflows │ ├── mcad-CI.yml │ ├── mcad-release.yml │ └── update-codeflare-operator.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── OWNERS ├── README.md ├── cluster └── lib │ └── logging.sh ├── cmd └── kar-controllers │ ├── app │ ├── options │ │ └── options.go │ └── server.go │ └── main.go ├── config └── crd │ ├── bases │ ├── quota.codeflare.dev_quotasubtrees.yaml │ ├── workload.codeflare.dev_appwrappers.yaml │ └── workload.codeflare.dev_schedulingspecs.yaml │ └── kustomization.yaml ├── deployment └── mcad-controller │ ├── .helmignore │ ├── Chart.yaml │ ├── crds │ ├── quota.codeflare.dev_quotasubtrees.yaml │ ├── workload.codeflare.dev_appwrappers.yaml │ └── workload.codeflare.dev_schedulingspecs.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── deployment.yaml │ └── imageSecret.yaml │ └── values.yaml ├── doc ├── build │ └── build.md ├── deploy │ └── deployment.md ├── images │ ├── mcad-release.png │ ├── mcad_logo.png │ └── xqueuejob-controller.png └── usage │ ├── aw-01.yaml │ ├── aw-02.yaml │ ├── debugger │ ├── README.md │ └── launch.json.template │ ├── examples │ ├── aw-1-k8s-job1.yaml │ ├── aw-1-k8s-job2.yaml │ ├── aw-1-k8s-job3.yaml │ └── kuberay │ │ ├── config │ │ ├── aw-kuberay-glue.yaml │ │ ├── aw-raycluster-1.yaml │ │ ├── aw-raycluster.yaml │ │ └── xqueuejob-controller.yaml │ │ ├── kuberay-mcad.md │ │ └── raycluster │ │ └── ray-cluster.autoscaler.yaml │ ├── quota_management │ └── quickstart.md │ └── tutorial.md ├── go.mod ├── go.sum ├── hack ├── .golint_failures ├── boilerplate │ └── boilerplate.go.txt ├── e2e-kind-config.yaml ├── install-etcd.sh ├── lib │ ├── etcd.sh │ ├── golang.sh │ ├── init.sh │ ├── util.sh │ └── version.sh ├── make-rules │ ├── test-integration.sh │ └── test.sh ├── run-e2e-kind.sh ├── update-gofmt.sh ├── verify-gencode.sh ├── verify-gofmt.sh └── verify-golint.sh ├── pkg ├── apis │ ├── controller │ │ ├── utils │ │ │ └── utils.go │ │ └── v1beta1 │ │ │ ├── appwrapper.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── schedulingspec.go │ │ │ └── zz_generated.deepcopy.go │ └── quotaplugins │ │ └── quotasubtree │ │ └── v1alpha1 │ │ ├── doc.go │ │ ├── register.go │ │ ├── types.go │ │ └── zz_generated.deepcopy.go ├── client │ ├── applyconfiguration │ │ ├── controller │ │ │ └── v1beta1 │ │ │ │ ├── appwrapper.go │ │ │ │ ├── appwrappercondition.go │ │ │ │ ├── appwrappergenericresource.go │ │ │ │ ├── appwrapperresourcelist.go │ │ │ │ ├── appwrapperservice.go │ │ │ │ ├── appwrapperspec.go │ │ │ │ ├── appwrapperstatus.go │ │ │ │ ├── custompodresourcetemplate.go │ │ │ │ ├── dispatchdurationspec.go │ │ │ │ ├── pendingpodspec.go │ │ │ │ ├── requeuingtemplate.go │ │ │ │ └── schedulingspectemplate.go │ │ ├── internal │ │ │ └── internal.go │ │ └── utils.go │ ├── client_factory.go │ ├── clientset │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ ├── controller │ │ │ └── v1beta1 │ │ │ │ ├── appwrapper.go │ │ │ │ ├── controller_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_appwrapper.go │ │ │ │ └── fake_controller_client.go │ │ │ │ └── generated_expansion.go │ │ │ └── quotasubtree │ │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_quotasubtree.go │ │ │ └── fake_quotasubtree_client.go │ │ │ ├── generated_expansion.go │ │ │ ├── quotasubtree.go │ │ │ └── quotasubtree_client.go │ ├── informers │ │ └── externalversions │ │ │ ├── controller │ │ │ ├── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── appwrapper.go │ │ │ │ └── interface.go │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ ├── internalinterfaces │ │ │ └── factory_interfaces.go │ │ │ └── quotasubtree │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ ├── interface.go │ │ │ └── quotasubtree.go │ └── listers │ │ ├── controller │ │ └── v1beta1 │ │ │ ├── appwrapper.go │ │ │ └── expansion_generated.go │ │ └── quotasubtree │ │ ├── v1 │ │ ├── expansion_generated.go │ │ └── quotasubtree.go │ │ └── v1alpha1 │ │ ├── expansion_generated.go │ │ └── quotasubtree.go ├── config │ ├── config.go │ └── support.go ├── controller │ ├── clusterstate │ │ ├── api │ │ │ ├── cluster_info.go │ │ │ ├── helpers.go │ │ │ ├── histogram_info.go │ │ │ ├── node_info.go │ │ │ ├── resource_info.go │ │ │ └── types.go │ │ ├── cache │ │ │ ├── cache.go │ │ │ ├── event_handlers.go │ │ │ └── interface.go │ │ └── util │ │ │ └── priority_queue.go │ ├── heap.go │ ├── maputils │ │ └── sync_map.go │ ├── metrics │ │ └── adapter │ │ │ ├── adapter.go │ │ │ └── provider │ │ │ └── provider.go │ ├── queuejob │ │ ├── heap.go │ │ ├── queuejob_controller_ex.go │ │ ├── queuejob_controller_ex_test.go │ │ ├── queuejob_suite_test.go │ │ ├── scheduling_queue.go │ │ ├── utils.go │ │ └── utils_test.go │ ├── queuejobdispatch │ │ └── queuejobagent.go │ ├── queuejobresources │ │ └── genericresource │ │ │ └── genericresource.go │ └── quota │ │ ├── quota_manager_interface.go │ │ └── quotaforestmanager │ │ ├── qm_lib_backend_with_quotasubt_mgr.go │ │ └── qm_lib_backend_with_quotasubt_mgr │ │ └── quotasubtmgr │ │ ├── event_handlers.go │ │ ├── quota_subtree_manager.go │ │ └── util │ │ └── constants.go ├── health │ ├── health.go │ └── health_test.go └── quotaplugins │ ├── quota-forest │ └── quota-manager │ │ ├── .gitignore │ │ ├── README.md │ │ ├── demos │ │ ├── forest │ │ │ └── demo.go │ │ ├── incremental │ │ │ └── demo.go │ │ ├── manager │ │ │ ├── forest │ │ │ │ └── demo.go │ │ │ └── tree │ │ │ │ └── demo.go │ │ ├── tree │ │ │ └── demo.go │ │ ├── undo │ │ │ ├── forest │ │ │ │ └── demo.go │ │ │ └── tree │ │ │ │ └── demo.go │ │ └── updates │ │ │ ├── README.md │ │ │ ├── forest │ │ │ └── demo.go │ │ │ └── tree │ │ │ └── demo.go │ │ ├── docs │ │ ├── forest-example.pdf │ │ ├── quota-algorithm.pdf │ │ ├── quota-manager.png │ │ ├── tree-cache-example.pdf │ │ ├── tree-example.pdf │ │ └── tree-example.txt │ │ ├── go-legacy.mod │ │ ├── go-sum.mod │ │ ├── main.go │ │ ├── quota │ │ ├── consumerinfo.go │ │ ├── core │ │ │ ├── allocation.go │ │ │ ├── allocation_test.go │ │ │ ├── allocationrecovery.go │ │ │ ├── allocationresponse.go │ │ │ ├── allocationresponse_test.go │ │ │ ├── consumer.go │ │ │ ├── forestconsumer.go │ │ │ ├── forestcontroller.go │ │ │ ├── helpers.go │ │ │ ├── quotanode.go │ │ │ ├── quotanode_test.go │ │ │ ├── quotatree.go │ │ │ ├── treecache.go │ │ │ ├── treecontroller.go │ │ │ ├── treecontroller_test.go │ │ │ ├── treesnapshot.go │ │ │ └── treesnapshot_test.go │ │ ├── quotamanager.go │ │ ├── quotamanager_test.go │ │ ├── quotamanagerundo_test.go │ │ └── utils │ │ │ ├── defaults.go │ │ │ └── types.go │ │ ├── samples │ │ ├── ExampleConsumer.json │ │ ├── ExampleTree.json │ │ ├── TestConsumer.json │ │ ├── TestForestConsumer.json │ │ ├── TestTree.json │ │ ├── forest │ │ │ ├── ContextTree.json │ │ │ ├── ServiceTree.json │ │ │ ├── job1.json │ │ │ ├── job2.json │ │ │ ├── job3.json │ │ │ ├── job4.json │ │ │ └── job5.json │ │ └── tree │ │ │ ├── ca.json │ │ │ ├── cb.json │ │ │ ├── cc.json │ │ │ ├── cd.json │ │ │ ├── ce.json │ │ │ ├── cf.json │ │ │ ├── cg.json │ │ │ ├── ch.json │ │ │ ├── ci.json │ │ │ ├── cj.json │ │ │ └── tree.json │ │ └── tree │ │ ├── node.go │ │ ├── node_test.go │ │ ├── tree.go │ │ └── tree_test.go │ ├── quota-simple-rest │ └── quota_rest_manager.go │ └── util │ └── utils.go └── test ├── e2e-kuttl-borrowing ├── install-quota-subtree.yaml └── steps │ ├── 00-assert.yaml │ ├── 01-assert.yaml │ ├── 02-assert.yaml │ ├── 02-install.yaml │ ├── 03-assert.yaml │ ├── 03-install.yaml │ ├── 04-assert.yaml │ └── 04-install.yaml ├── e2e-kuttl-deployment-01 └── steps │ ├── 00-assert.yaml │ ├── 00-install.yaml │ ├── 01-assert.yaml │ ├── 01-install.yaml │ ├── 02-assert.yaml │ ├── 02-install.yaml │ ├── 03-assert.yaml │ ├── 03-install.yaml │ ├── 04-assert.yaml │ ├── 04-install.yaml │ ├── 05-assert.yaml │ ├── 05-install-single-quota-tree.yaml │ ├── 06-assert.yaml │ ├── 06-install.yaml │ ├── 07-assert.yaml │ ├── 07-install.yaml │ ├── 08-assert.yaml │ ├── 08-install.yaml │ └── 99-cleanup.yaml ├── e2e-kuttl-deployment-02 └── steps │ ├── 00-assert.yaml │ ├── 00-install.yaml │ ├── 01-assert.yaml │ ├── 01-install.yaml │ ├── 02-assert.yaml │ ├── 02-install.yaml │ ├── 03-assert.yaml │ ├── 03-restart-mcad.yaml │ ├── 04-assert.yaml │ ├── 04-install.yaml │ └── 99-cleanup.yaml ├── e2e-kuttl-deployment-03 └── steps │ ├── 00-assert.yaml │ ├── 00-install.yaml │ ├── 01-assert.yaml │ ├── 01-install.yaml │ ├── 02-assert.yaml │ ├── 02-install.yaml │ ├── 03-assert.yaml │ ├── 03-install-new-quota-node.yaml │ ├── 04-assert.yaml │ ├── 04-install.yaml │ ├── 05-assert.yaml │ ├── 05-install.yaml │ └── 99-cleanup.yaml ├── e2e-kuttl-extended-resources └── steps │ ├── 00-assert.yaml │ ├── 01-assert.yaml │ ├── 01-install.yaml │ ├── 02-assert.yaml │ └── 02-install.yaml ├── e2e-kuttl ├── install-quota-subtree.yaml ├── quota-errors │ ├── 00-assert.yaml │ ├── 01-assert.yaml │ ├── 02-assert.yaml │ ├── 02-install.yaml │ ├── 03-assert.yaml │ ├── 03-install.yaml │ ├── 04-delete-app-wrapper.yaml │ ├── 05-reapply-app-wrapper.yaml │ └── 99-cleanup.yaml └── quota-forest │ ├── 00-assert.yaml │ ├── 01-assert.yaml │ ├── 02-assert.yaml │ ├── 02-install.yaml │ ├── 03-assert.yaml │ ├── 03-install.yaml │ ├── 04-assert.yaml │ ├── 04-install.yaml │ ├── 05-assert.yaml │ ├── 05-install.yaml │ ├── 06-assert.yaml │ ├── 06-install.yaml │ ├── 07-assert.yaml │ ├── 07-install.yaml │ ├── 08-assert.yaml │ ├── 08-install.yaml │ ├── 09-assert.yaml │ ├── 09-install.yaml │ ├── 10-assert.yaml │ ├── 10-install.yaml │ ├── 11-assert.yaml │ ├── 11-install.yaml │ └── 99-cleanup.yaml ├── e2e ├── e2e_test.go ├── queue.go ├── quota.go └── util.go ├── kuttl-test-borrowing.yaml ├── kuttl-test-deployment-01.yaml ├── kuttl-test-deployment-02.yaml ├── kuttl-test-deployment-03.yaml ├── kuttl-test-extended-resources.yaml ├── kuttl-test.yaml ├── perf-test ├── cleanup-mcad-kwok.sh ├── cleanup.sh ├── kwokmcadperf.sh ├── node.yaml ├── nodes.sh ├── perf.sh ├── preempt-exp-kwok.yaml ├── preempt-exp.yaml └── simulatingnodesandappwrappers.md └── yaml ├── 0001-aw-generic-deployment-3.yaml ├── 0002-aw-job-quota.yaml ├── 0003-aw-job-no-quota.yaml ├── 0004-aw-large-job-no-quota.yaml ├── 0005-aw-two-quota-jobs.yaml ├── 0006-aw-init-containers.yaml └── 0008-aw-default.yaml /.github/workflows/mcad-CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/.github/workflows/mcad-CI.yml -------------------------------------------------------------------------------- /.github/workflows/mcad-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/.github/workflows/mcad-release.yml -------------------------------------------------------------------------------- /.github/workflows/update-codeflare-operator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/.github/workflows/update-codeflare-operator.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/README.md -------------------------------------------------------------------------------- /cluster/lib/logging.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/cluster/lib/logging.sh -------------------------------------------------------------------------------- /cmd/kar-controllers/app/options/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/cmd/kar-controllers/app/options/options.go -------------------------------------------------------------------------------- /cmd/kar-controllers/app/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/cmd/kar-controllers/app/server.go -------------------------------------------------------------------------------- /cmd/kar-controllers/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/cmd/kar-controllers/main.go -------------------------------------------------------------------------------- /config/crd/bases/quota.codeflare.dev_quotasubtrees.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/config/crd/bases/quota.codeflare.dev_quotasubtrees.yaml -------------------------------------------------------------------------------- /config/crd/bases/workload.codeflare.dev_appwrappers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/config/crd/bases/workload.codeflare.dev_appwrappers.yaml -------------------------------------------------------------------------------- /config/crd/bases/workload.codeflare.dev_schedulingspecs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/config/crd/bases/workload.codeflare.dev_schedulingspecs.yaml -------------------------------------------------------------------------------- /config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /deployment/mcad-controller/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/deployment/mcad-controller/.helmignore -------------------------------------------------------------------------------- /deployment/mcad-controller/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/deployment/mcad-controller/Chart.yaml -------------------------------------------------------------------------------- /deployment/mcad-controller/crds/quota.codeflare.dev_quotasubtrees.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/deployment/mcad-controller/crds/quota.codeflare.dev_quotasubtrees.yaml -------------------------------------------------------------------------------- /deployment/mcad-controller/crds/workload.codeflare.dev_appwrappers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/deployment/mcad-controller/crds/workload.codeflare.dev_appwrappers.yaml -------------------------------------------------------------------------------- /deployment/mcad-controller/crds/workload.codeflare.dev_schedulingspecs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/deployment/mcad-controller/crds/workload.codeflare.dev_schedulingspecs.yaml -------------------------------------------------------------------------------- /deployment/mcad-controller/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | The batch system of Kubernetes. 2 | -------------------------------------------------------------------------------- /deployment/mcad-controller/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/deployment/mcad-controller/templates/_helpers.tpl -------------------------------------------------------------------------------- /deployment/mcad-controller/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/deployment/mcad-controller/templates/configmap.yaml -------------------------------------------------------------------------------- /deployment/mcad-controller/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/deployment/mcad-controller/templates/deployment.yaml -------------------------------------------------------------------------------- /deployment/mcad-controller/templates/imageSecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/deployment/mcad-controller/templates/imageSecret.yaml -------------------------------------------------------------------------------- /deployment/mcad-controller/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/deployment/mcad-controller/values.yaml -------------------------------------------------------------------------------- /doc/build/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/doc/build/build.md -------------------------------------------------------------------------------- /doc/deploy/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/doc/deploy/deployment.md -------------------------------------------------------------------------------- /doc/images/mcad-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/doc/images/mcad-release.png -------------------------------------------------------------------------------- /doc/images/mcad_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/doc/images/mcad_logo.png -------------------------------------------------------------------------------- /doc/images/xqueuejob-controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/doc/images/xqueuejob-controller.png -------------------------------------------------------------------------------- /doc/usage/aw-01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/doc/usage/aw-01.yaml -------------------------------------------------------------------------------- /doc/usage/aw-02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/doc/usage/aw-02.yaml -------------------------------------------------------------------------------- /doc/usage/debugger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/doc/usage/debugger/README.md -------------------------------------------------------------------------------- /doc/usage/debugger/launch.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/doc/usage/debugger/launch.json.template -------------------------------------------------------------------------------- /doc/usage/examples/aw-1-k8s-job1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/doc/usage/examples/aw-1-k8s-job1.yaml -------------------------------------------------------------------------------- /doc/usage/examples/aw-1-k8s-job2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/doc/usage/examples/aw-1-k8s-job2.yaml -------------------------------------------------------------------------------- /doc/usage/examples/aw-1-k8s-job3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/doc/usage/examples/aw-1-k8s-job3.yaml -------------------------------------------------------------------------------- /doc/usage/examples/kuberay/config/aw-kuberay-glue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/doc/usage/examples/kuberay/config/aw-kuberay-glue.yaml -------------------------------------------------------------------------------- /doc/usage/examples/kuberay/config/aw-raycluster-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/doc/usage/examples/kuberay/config/aw-raycluster-1.yaml -------------------------------------------------------------------------------- /doc/usage/examples/kuberay/config/aw-raycluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/doc/usage/examples/kuberay/config/aw-raycluster.yaml -------------------------------------------------------------------------------- /doc/usage/examples/kuberay/config/xqueuejob-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/doc/usage/examples/kuberay/config/xqueuejob-controller.yaml -------------------------------------------------------------------------------- /doc/usage/examples/kuberay/kuberay-mcad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/doc/usage/examples/kuberay/kuberay-mcad.md -------------------------------------------------------------------------------- /doc/usage/examples/kuberay/raycluster/ray-cluster.autoscaler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/doc/usage/examples/kuberay/raycluster/ray-cluster.autoscaler.yaml -------------------------------------------------------------------------------- /doc/usage/quota_management/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/doc/usage/quota_management/quickstart.md -------------------------------------------------------------------------------- /doc/usage/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/doc/usage/tutorial.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/go.sum -------------------------------------------------------------------------------- /hack/.golint_failures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/hack/.golint_failures -------------------------------------------------------------------------------- /hack/boilerplate/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/hack/boilerplate/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/e2e-kind-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/hack/e2e-kind-config.yaml -------------------------------------------------------------------------------- /hack/install-etcd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/hack/install-etcd.sh -------------------------------------------------------------------------------- /hack/lib/etcd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/hack/lib/etcd.sh -------------------------------------------------------------------------------- /hack/lib/golang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/hack/lib/golang.sh -------------------------------------------------------------------------------- /hack/lib/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/hack/lib/init.sh -------------------------------------------------------------------------------- /hack/lib/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/hack/lib/util.sh -------------------------------------------------------------------------------- /hack/lib/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/hack/lib/version.sh -------------------------------------------------------------------------------- /hack/make-rules/test-integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/hack/make-rules/test-integration.sh -------------------------------------------------------------------------------- /hack/make-rules/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/hack/make-rules/test.sh -------------------------------------------------------------------------------- /hack/run-e2e-kind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/hack/run-e2e-kind.sh -------------------------------------------------------------------------------- /hack/update-gofmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/hack/update-gofmt.sh -------------------------------------------------------------------------------- /hack/verify-gencode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/hack/verify-gencode.sh -------------------------------------------------------------------------------- /hack/verify-gofmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/hack/verify-gofmt.sh -------------------------------------------------------------------------------- /hack/verify-golint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/hack/verify-golint.sh -------------------------------------------------------------------------------- /pkg/apis/controller/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/apis/controller/utils/utils.go -------------------------------------------------------------------------------- /pkg/apis/controller/v1beta1/appwrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/apis/controller/v1beta1/appwrapper.go -------------------------------------------------------------------------------- /pkg/apis/controller/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/apis/controller/v1beta1/doc.go -------------------------------------------------------------------------------- /pkg/apis/controller/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/apis/controller/v1beta1/register.go -------------------------------------------------------------------------------- /pkg/apis/controller/v1beta1/schedulingspec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/apis/controller/v1beta1/schedulingspec.go -------------------------------------------------------------------------------- /pkg/apis/controller/v1beta1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/apis/controller/v1beta1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/apis/quotaplugins/quotasubtree/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/apis/quotaplugins/quotasubtree/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/apis/quotaplugins/quotasubtree/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/apis/quotaplugins/quotasubtree/v1alpha1/register.go -------------------------------------------------------------------------------- /pkg/apis/quotaplugins/quotasubtree/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/apis/quotaplugins/quotasubtree/v1alpha1/types.go -------------------------------------------------------------------------------- /pkg/apis/quotaplugins/quotasubtree/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/apis/quotaplugins/quotasubtree/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/controller/v1beta1/appwrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/applyconfiguration/controller/v1beta1/appwrapper.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/controller/v1beta1/appwrappercondition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/applyconfiguration/controller/v1beta1/appwrappercondition.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/controller/v1beta1/appwrappergenericresource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/applyconfiguration/controller/v1beta1/appwrappergenericresource.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/controller/v1beta1/appwrapperresourcelist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/applyconfiguration/controller/v1beta1/appwrapperresourcelist.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/controller/v1beta1/appwrapperservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/applyconfiguration/controller/v1beta1/appwrapperservice.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/controller/v1beta1/appwrapperspec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/applyconfiguration/controller/v1beta1/appwrapperspec.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/controller/v1beta1/appwrapperstatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/applyconfiguration/controller/v1beta1/appwrapperstatus.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/controller/v1beta1/custompodresourcetemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/applyconfiguration/controller/v1beta1/custompodresourcetemplate.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/controller/v1beta1/dispatchdurationspec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/applyconfiguration/controller/v1beta1/dispatchdurationspec.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/controller/v1beta1/pendingpodspec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/applyconfiguration/controller/v1beta1/pendingpodspec.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/controller/v1beta1/requeuingtemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/applyconfiguration/controller/v1beta1/requeuingtemplate.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/controller/v1beta1/schedulingspectemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/applyconfiguration/controller/v1beta1/schedulingspectemplate.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/internal/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/applyconfiguration/internal/internal.go -------------------------------------------------------------------------------- /pkg/client/applyconfiguration/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/applyconfiguration/utils.go -------------------------------------------------------------------------------- /pkg/client/client_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/client_factory.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/clientset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/clientset/versioned/clientset.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/fake/clientset_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/clientset/versioned/fake/clientset_generated.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/fake/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/clientset/versioned/fake/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/fake/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/clientset/versioned/fake/register.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/scheme/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/clientset/versioned/scheme/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/scheme/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/clientset/versioned/scheme/register.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/controller/v1beta1/appwrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/clientset/versioned/typed/controller/v1beta1/appwrapper.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/controller/v1beta1/controller_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/clientset/versioned/typed/controller/v1beta1/controller_client.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/controller/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/clientset/versioned/typed/controller/v1beta1/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/controller/v1beta1/fake/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/clientset/versioned/typed/controller/v1beta1/fake/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/controller/v1beta1/fake/fake_appwrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/clientset/versioned/typed/controller/v1beta1/fake/fake_appwrapper.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/controller/v1beta1/fake/fake_controller_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/clientset/versioned/typed/controller/v1beta1/fake/fake_controller_client.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/controller/v1beta1/generated_expansion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/clientset/versioned/typed/controller/v1beta1/generated_expansion.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/quotasubtree/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/clientset/versioned/typed/quotasubtree/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/quotasubtree/v1alpha1/fake/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/clientset/versioned/typed/quotasubtree/v1alpha1/fake/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/quotasubtree/v1alpha1/fake/fake_quotasubtree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/clientset/versioned/typed/quotasubtree/v1alpha1/fake/fake_quotasubtree.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/quotasubtree/v1alpha1/fake/fake_quotasubtree_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/clientset/versioned/typed/quotasubtree/v1alpha1/fake/fake_quotasubtree_client.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/quotasubtree/v1alpha1/generated_expansion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/clientset/versioned/typed/quotasubtree/v1alpha1/generated_expansion.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/quotasubtree/v1alpha1/quotasubtree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/clientset/versioned/typed/quotasubtree/v1alpha1/quotasubtree.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/quotasubtree/v1alpha1/quotasubtree_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/clientset/versioned/typed/quotasubtree/v1alpha1/quotasubtree_client.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/controller/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/informers/externalversions/controller/interface.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/controller/v1beta1/appwrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/informers/externalversions/controller/v1beta1/appwrapper.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/controller/v1beta1/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/informers/externalversions/controller/v1beta1/interface.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/informers/externalversions/factory.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/informers/externalversions/generic.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/internalinterfaces/factory_interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/informers/externalversions/internalinterfaces/factory_interfaces.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/quotasubtree/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/informers/externalversions/quotasubtree/interface.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/quotasubtree/v1alpha1/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/informers/externalversions/quotasubtree/v1alpha1/interface.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/quotasubtree/v1alpha1/quotasubtree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/informers/externalversions/quotasubtree/v1alpha1/quotasubtree.go -------------------------------------------------------------------------------- /pkg/client/listers/controller/v1beta1/appwrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/listers/controller/v1beta1/appwrapper.go -------------------------------------------------------------------------------- /pkg/client/listers/controller/v1beta1/expansion_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/listers/controller/v1beta1/expansion_generated.go -------------------------------------------------------------------------------- /pkg/client/listers/quotasubtree/v1/expansion_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/listers/quotasubtree/v1/expansion_generated.go -------------------------------------------------------------------------------- /pkg/client/listers/quotasubtree/v1/quotasubtree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/listers/quotasubtree/v1/quotasubtree.go -------------------------------------------------------------------------------- /pkg/client/listers/quotasubtree/v1alpha1/expansion_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/listers/quotasubtree/v1alpha1/expansion_generated.go -------------------------------------------------------------------------------- /pkg/client/listers/quotasubtree/v1alpha1/quotasubtree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/client/listers/quotasubtree/v1alpha1/quotasubtree.go -------------------------------------------------------------------------------- /pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/config/config.go -------------------------------------------------------------------------------- /pkg/config/support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/config/support.go -------------------------------------------------------------------------------- /pkg/controller/clusterstate/api/cluster_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/clusterstate/api/cluster_info.go -------------------------------------------------------------------------------- /pkg/controller/clusterstate/api/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/clusterstate/api/helpers.go -------------------------------------------------------------------------------- /pkg/controller/clusterstate/api/histogram_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/clusterstate/api/histogram_info.go -------------------------------------------------------------------------------- /pkg/controller/clusterstate/api/node_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/clusterstate/api/node_info.go -------------------------------------------------------------------------------- /pkg/controller/clusterstate/api/resource_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/clusterstate/api/resource_info.go -------------------------------------------------------------------------------- /pkg/controller/clusterstate/api/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/clusterstate/api/types.go -------------------------------------------------------------------------------- /pkg/controller/clusterstate/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/clusterstate/cache/cache.go -------------------------------------------------------------------------------- /pkg/controller/clusterstate/cache/event_handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/clusterstate/cache/event_handlers.go -------------------------------------------------------------------------------- /pkg/controller/clusterstate/cache/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/clusterstate/cache/interface.go -------------------------------------------------------------------------------- /pkg/controller/clusterstate/util/priority_queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/clusterstate/util/priority_queue.go -------------------------------------------------------------------------------- /pkg/controller/heap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/heap.go -------------------------------------------------------------------------------- /pkg/controller/maputils/sync_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/maputils/sync_map.go -------------------------------------------------------------------------------- /pkg/controller/metrics/adapter/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/metrics/adapter/adapter.go -------------------------------------------------------------------------------- /pkg/controller/metrics/adapter/provider/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/metrics/adapter/provider/provider.go -------------------------------------------------------------------------------- /pkg/controller/queuejob/heap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/queuejob/heap.go -------------------------------------------------------------------------------- /pkg/controller/queuejob/queuejob_controller_ex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/queuejob/queuejob_controller_ex.go -------------------------------------------------------------------------------- /pkg/controller/queuejob/queuejob_controller_ex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/queuejob/queuejob_controller_ex_test.go -------------------------------------------------------------------------------- /pkg/controller/queuejob/queuejob_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/queuejob/queuejob_suite_test.go -------------------------------------------------------------------------------- /pkg/controller/queuejob/scheduling_queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/queuejob/scheduling_queue.go -------------------------------------------------------------------------------- /pkg/controller/queuejob/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/queuejob/utils.go -------------------------------------------------------------------------------- /pkg/controller/queuejob/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/queuejob/utils_test.go -------------------------------------------------------------------------------- /pkg/controller/queuejobdispatch/queuejobagent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/queuejobdispatch/queuejobagent.go -------------------------------------------------------------------------------- /pkg/controller/queuejobresources/genericresource/genericresource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/queuejobresources/genericresource/genericresource.go -------------------------------------------------------------------------------- /pkg/controller/quota/quota_manager_interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/quota/quota_manager_interface.go -------------------------------------------------------------------------------- /pkg/controller/quota/quotaforestmanager/qm_lib_backend_with_quotasubt_mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/quota/quotaforestmanager/qm_lib_backend_with_quotasubt_mgr.go -------------------------------------------------------------------------------- /pkg/controller/quota/quotaforestmanager/qm_lib_backend_with_quotasubt_mgr/quotasubtmgr/event_handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/quota/quotaforestmanager/qm_lib_backend_with_quotasubt_mgr/quotasubtmgr/event_handlers.go -------------------------------------------------------------------------------- /pkg/controller/quota/quotaforestmanager/qm_lib_backend_with_quotasubt_mgr/quotasubtmgr/quota_subtree_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/quota/quotaforestmanager/qm_lib_backend_with_quotasubt_mgr/quotasubtmgr/quota_subtree_manager.go -------------------------------------------------------------------------------- /pkg/controller/quota/quotaforestmanager/qm_lib_backend_with_quotasubt_mgr/quotasubtmgr/util/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/controller/quota/quotaforestmanager/qm_lib_backend_with_quotasubt_mgr/quotasubtmgr/util/constants.go -------------------------------------------------------------------------------- /pkg/health/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/health/health.go -------------------------------------------------------------------------------- /pkg/health/health_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/health/health_test.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/.gitignore -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/README.md -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/demos/forest/demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/demos/forest/demo.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/demos/incremental/demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/demos/incremental/demo.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/demos/manager/forest/demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/demos/manager/forest/demo.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/demos/manager/tree/demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/demos/manager/tree/demo.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/demos/tree/demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/demos/tree/demo.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/demos/undo/forest/demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/demos/undo/forest/demo.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/demos/undo/tree/demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/demos/undo/tree/demo.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/demos/updates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/demos/updates/README.md -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/demos/updates/forest/demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/demos/updates/forest/demo.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/demos/updates/tree/demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/demos/updates/tree/demo.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/docs/forest-example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/docs/forest-example.pdf -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/docs/quota-algorithm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/docs/quota-algorithm.pdf -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/docs/quota-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/docs/quota-manager.png -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/docs/tree-cache-example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/docs/tree-cache-example.pdf -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/docs/tree-example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/docs/tree-example.pdf -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/docs/tree-example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/docs/tree-example.txt -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/go-legacy.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/go-legacy.mod -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/go-sum.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/go-sum.mod -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/main.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/quota/consumerinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/quota/consumerinfo.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/quota/core/allocation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/quota/core/allocation.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/quota/core/allocation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/quota/core/allocation_test.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/quota/core/allocationrecovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/quota/core/allocationrecovery.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/quota/core/allocationresponse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/quota/core/allocationresponse.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/quota/core/allocationresponse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/quota/core/allocationresponse_test.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/quota/core/consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/quota/core/consumer.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/quota/core/forestconsumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/quota/core/forestconsumer.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/quota/core/forestcontroller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/quota/core/forestcontroller.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/quota/core/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/quota/core/helpers.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/quota/core/quotanode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/quota/core/quotanode.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/quota/core/quotanode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/quota/core/quotanode_test.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/quota/core/quotatree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/quota/core/quotatree.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/quota/core/treecache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/quota/core/treecache.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/quota/core/treecontroller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/quota/core/treecontroller.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/quota/core/treecontroller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/quota/core/treecontroller_test.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/quota/core/treesnapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/quota/core/treesnapshot.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/quota/core/treesnapshot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/quota/core/treesnapshot_test.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/quota/quotamanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/quota/quotamanager.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/quota/quotamanager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/quota/quotamanager_test.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/quota/quotamanagerundo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/quota/quotamanagerundo_test.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/quota/utils/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/quota/utils/defaults.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/quota/utils/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/quota/utils/types.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/samples/ExampleConsumer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/samples/ExampleConsumer.json -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/samples/ExampleTree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/samples/ExampleTree.json -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/samples/TestConsumer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/samples/TestConsumer.json -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/samples/TestForestConsumer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/samples/TestForestConsumer.json -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/samples/TestTree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/samples/TestTree.json -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/samples/forest/ContextTree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/samples/forest/ContextTree.json -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/samples/forest/ServiceTree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/samples/forest/ServiceTree.json -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/samples/forest/job1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/samples/forest/job1.json -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/samples/forest/job2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/samples/forest/job2.json -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/samples/forest/job3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/samples/forest/job3.json -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/samples/forest/job4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/samples/forest/job4.json -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/samples/forest/job5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/samples/forest/job5.json -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/samples/tree/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/samples/tree/ca.json -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/samples/tree/cb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/samples/tree/cb.json -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/samples/tree/cc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/samples/tree/cc.json -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/samples/tree/cd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/samples/tree/cd.json -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/samples/tree/ce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/samples/tree/ce.json -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/samples/tree/cf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/samples/tree/cf.json -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/samples/tree/cg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/samples/tree/cg.json -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/samples/tree/ch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/samples/tree/ch.json -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/samples/tree/ci.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/samples/tree/ci.json -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/samples/tree/cj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/samples/tree/cj.json -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/samples/tree/tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/samples/tree/tree.json -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/tree/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/tree/node.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/tree/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/tree/node_test.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/tree/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/tree/tree.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-forest/quota-manager/tree/tree_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-forest/quota-manager/tree/tree_test.go -------------------------------------------------------------------------------- /pkg/quotaplugins/quota-simple-rest/quota_rest_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/quota-simple-rest/quota_rest_manager.go -------------------------------------------------------------------------------- /pkg/quotaplugins/util/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/pkg/quotaplugins/util/utils.go -------------------------------------------------------------------------------- /test/e2e-kuttl-borrowing/install-quota-subtree.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-borrowing/install-quota-subtree.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-borrowing/steps/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-borrowing/steps/00-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-borrowing/steps/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-borrowing/steps/01-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-borrowing/steps/02-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-borrowing/steps/02-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-borrowing/steps/02-install.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: test -------------------------------------------------------------------------------- /test/e2e-kuttl-borrowing/steps/03-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-borrowing/steps/03-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-borrowing/steps/03-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-borrowing/steps/03-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-borrowing/steps/04-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-borrowing/steps/04-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-borrowing/steps/04-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-borrowing/steps/04-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-01/steps/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-01/steps/00-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-01/steps/00-install.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: start-up 5 | -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-01/steps/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-01/steps/01-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-01/steps/01-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-01/steps/01-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-01/steps/02-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-01/steps/02-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-01/steps/02-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-01/steps/02-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-01/steps/03-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-01/steps/03-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-01/steps/03-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-01/steps/03-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-01/steps/04-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-01/steps/04-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-01/steps/04-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-01/steps/04-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-01/steps/05-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-01/steps/05-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-01/steps/05-install-single-quota-tree.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-01/steps/05-install-single-quota-tree.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-01/steps/06-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-01/steps/06-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-01/steps/06-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-01/steps/06-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-01/steps/07-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-01/steps/07-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-01/steps/07-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-01/steps/07-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-01/steps/08-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-01/steps/08-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-01/steps/08-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-01/steps/08-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-01/steps/99-cleanup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-01/steps/99-cleanup.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-02/steps/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-02/steps/00-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-02/steps/00-install.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: start-up-02 5 | -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-02/steps/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-02/steps/01-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-02/steps/01-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-02/steps/01-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-02/steps/02-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-02/steps/02-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-02/steps/02-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-02/steps/02-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-02/steps/03-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-02/steps/03-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-02/steps/03-restart-mcad.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-02/steps/03-restart-mcad.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-02/steps/04-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-02/steps/04-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-02/steps/04-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-02/steps/04-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-02/steps/99-cleanup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-02/steps/99-cleanup.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-03/steps/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-03/steps/00-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-03/steps/00-install.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: start-up-03 5 | -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-03/steps/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-03/steps/01-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-03/steps/01-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-03/steps/01-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-03/steps/02-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-03/steps/02-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-03/steps/02-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-03/steps/02-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-03/steps/03-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-03/steps/03-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-03/steps/03-install-new-quota-node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-03/steps/03-install-new-quota-node.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-03/steps/04-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-03/steps/04-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-03/steps/04-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-03/steps/04-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-03/steps/05-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-03/steps/05-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-03/steps/05-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-03/steps/05-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-deployment-03/steps/99-cleanup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-deployment-03/steps/99-cleanup.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-extended-resources/steps/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-extended-resources/steps/00-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-extended-resources/steps/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-extended-resources/steps/01-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-extended-resources/steps/01-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-extended-resources/steps/01-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-extended-resources/steps/02-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-extended-resources/steps/02-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl-extended-resources/steps/02-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl-extended-resources/steps/02-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/install-quota-subtree.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/install-quota-subtree.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-errors/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-errors/00-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-errors/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-errors/01-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-errors/02-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-errors/02-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-errors/02-install.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: quota-errors -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-errors/03-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-errors/03-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-errors/03-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-errors/03-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-errors/04-delete-app-wrapper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-errors/04-delete-app-wrapper.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-errors/05-reapply-app-wrapper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-errors/05-reapply-app-wrapper.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-errors/99-cleanup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-errors/99-cleanup.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-forest/00-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-forest/00-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-forest/01-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-forest/01-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-forest/02-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-forest/02-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-forest/02-install.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: test -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-forest/03-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-forest/03-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-forest/03-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-forest/03-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-forest/04-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-forest/04-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-forest/04-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-forest/04-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-forest/05-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-forest/05-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-forest/05-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-forest/05-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-forest/06-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-forest/06-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-forest/06-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-forest/06-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-forest/07-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-forest/07-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-forest/07-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-forest/07-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-forest/08-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-forest/08-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-forest/08-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-forest/08-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-forest/09-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-forest/09-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-forest/09-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-forest/09-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-forest/10-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-forest/10-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-forest/10-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-forest/10-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-forest/11-assert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-forest/11-assert.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-forest/11-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-forest/11-install.yaml -------------------------------------------------------------------------------- /test/e2e-kuttl/quota-forest/99-cleanup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e-kuttl/quota-forest/99-cleanup.yaml -------------------------------------------------------------------------------- /test/e2e/e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e/e2e_test.go -------------------------------------------------------------------------------- /test/e2e/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e/queue.go -------------------------------------------------------------------------------- /test/e2e/quota.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e/quota.go -------------------------------------------------------------------------------- /test/e2e/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/e2e/util.go -------------------------------------------------------------------------------- /test/kuttl-test-borrowing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/kuttl-test-borrowing.yaml -------------------------------------------------------------------------------- /test/kuttl-test-deployment-01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/kuttl-test-deployment-01.yaml -------------------------------------------------------------------------------- /test/kuttl-test-deployment-02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/kuttl-test-deployment-02.yaml -------------------------------------------------------------------------------- /test/kuttl-test-deployment-03.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/kuttl-test-deployment-03.yaml -------------------------------------------------------------------------------- /test/kuttl-test-extended-resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/kuttl-test-extended-resources.yaml -------------------------------------------------------------------------------- /test/kuttl-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/kuttl-test.yaml -------------------------------------------------------------------------------- /test/perf-test/cleanup-mcad-kwok.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/perf-test/cleanup-mcad-kwok.sh -------------------------------------------------------------------------------- /test/perf-test/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/perf-test/cleanup.sh -------------------------------------------------------------------------------- /test/perf-test/kwokmcadperf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/perf-test/kwokmcadperf.sh -------------------------------------------------------------------------------- /test/perf-test/node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/perf-test/node.yaml -------------------------------------------------------------------------------- /test/perf-test/nodes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/perf-test/nodes.sh -------------------------------------------------------------------------------- /test/perf-test/perf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/perf-test/perf.sh -------------------------------------------------------------------------------- /test/perf-test/preempt-exp-kwok.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/perf-test/preempt-exp-kwok.yaml -------------------------------------------------------------------------------- /test/perf-test/preempt-exp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/perf-test/preempt-exp.yaml -------------------------------------------------------------------------------- /test/perf-test/simulatingnodesandappwrappers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/perf-test/simulatingnodesandappwrappers.md -------------------------------------------------------------------------------- /test/yaml/0001-aw-generic-deployment-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/yaml/0001-aw-generic-deployment-3.yaml -------------------------------------------------------------------------------- /test/yaml/0002-aw-job-quota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/yaml/0002-aw-job-quota.yaml -------------------------------------------------------------------------------- /test/yaml/0003-aw-job-no-quota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/yaml/0003-aw-job-no-quota.yaml -------------------------------------------------------------------------------- /test/yaml/0004-aw-large-job-no-quota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/yaml/0004-aw-large-job-no-quota.yaml -------------------------------------------------------------------------------- /test/yaml/0005-aw-two-quota-jobs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/yaml/0005-aw-two-quota-jobs.yaml -------------------------------------------------------------------------------- /test/yaml/0006-aw-init-containers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/yaml/0006-aw-init-containers.yaml -------------------------------------------------------------------------------- /test/yaml/0008-aw-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-codeflare/multi-cluster-app-dispatcher/HEAD/test/yaml/0008-aw-default.yaml --------------------------------------------------------------------------------