├── .gitignore ├── FAQ.md ├── LICENSE ├── README.md ├── SUMMARY.md ├── benchmark.md ├── book.json ├── brief.md ├── components ├── README.md ├── agent.md ├── img │ ├── agent.png │ └── runtime.png └── selfmon.md ├── conception ├── HA.md ├── README.md ├── application.md ├── cpu.md ├── healthcheck.md ├── networking.md ├── node.md ├── pod.md ├── resource.md ├── runtime.md ├── scheduling.md └── workload.md ├── getstarted ├── README.md ├── bind_resource.md ├── sample_app.md ├── sdn.md ├── setup.md ├── update_app.md └── workload_status.md ├── history.md ├── img └── benchmark.png ├── installation ├── README.md ├── agent.md ├── calico.md ├── core.md ├── management.md └── requirements.md ├── ops └── check_calico.md ├── overview ├── README.md ├── arch.md ├── component.md ├── features.md ├── img │ ├── app.png │ ├── app.xml │ ├── core.png │ ├── core.xml │ ├── logic.png │ └── logic.xml └── resolution.md ├── projects.md ├── quickstart ├── README.md ├── example.md ├── img │ └── process.png ├── install.md └── release.md └── specs ├── README.md ├── agent.md ├── app.md └── core.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/.gitignore -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/FAQ.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/benchmark.md -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/book.json -------------------------------------------------------------------------------- /brief.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/brief.md -------------------------------------------------------------------------------- /components/README.md: -------------------------------------------------------------------------------- 1 | # Components 2 | 3 | -------------------------------------------------------------------------------- /components/agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/components/agent.md -------------------------------------------------------------------------------- /components/img/agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/components/img/agent.png -------------------------------------------------------------------------------- /components/img/runtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/components/img/runtime.png -------------------------------------------------------------------------------- /components/selfmon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/components/selfmon.md -------------------------------------------------------------------------------- /conception/HA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/conception/HA.md -------------------------------------------------------------------------------- /conception/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/conception/README.md -------------------------------------------------------------------------------- /conception/application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/conception/application.md -------------------------------------------------------------------------------- /conception/cpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/conception/cpu.md -------------------------------------------------------------------------------- /conception/healthcheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/conception/healthcheck.md -------------------------------------------------------------------------------- /conception/networking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/conception/networking.md -------------------------------------------------------------------------------- /conception/node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/conception/node.md -------------------------------------------------------------------------------- /conception/pod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/conception/pod.md -------------------------------------------------------------------------------- /conception/resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/conception/resource.md -------------------------------------------------------------------------------- /conception/runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/conception/runtime.md -------------------------------------------------------------------------------- /conception/scheduling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/conception/scheduling.md -------------------------------------------------------------------------------- /conception/workload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/conception/workload.md -------------------------------------------------------------------------------- /getstarted/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/getstarted/README.md -------------------------------------------------------------------------------- /getstarted/bind_resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/getstarted/bind_resource.md -------------------------------------------------------------------------------- /getstarted/sample_app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/getstarted/sample_app.md -------------------------------------------------------------------------------- /getstarted/sdn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/getstarted/sdn.md -------------------------------------------------------------------------------- /getstarted/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/getstarted/setup.md -------------------------------------------------------------------------------- /getstarted/update_app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/getstarted/update_app.md -------------------------------------------------------------------------------- /getstarted/workload_status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/getstarted/workload_status.md -------------------------------------------------------------------------------- /history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/history.md -------------------------------------------------------------------------------- /img/benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/img/benchmark.png -------------------------------------------------------------------------------- /installation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/installation/README.md -------------------------------------------------------------------------------- /installation/agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/installation/agent.md -------------------------------------------------------------------------------- /installation/calico.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/installation/calico.md -------------------------------------------------------------------------------- /installation/core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/installation/core.md -------------------------------------------------------------------------------- /installation/management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/installation/management.md -------------------------------------------------------------------------------- /installation/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/installation/requirements.md -------------------------------------------------------------------------------- /ops/check_calico.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/ops/check_calico.md -------------------------------------------------------------------------------- /overview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/overview/README.md -------------------------------------------------------------------------------- /overview/arch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/overview/arch.md -------------------------------------------------------------------------------- /overview/component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/overview/component.md -------------------------------------------------------------------------------- /overview/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/overview/features.md -------------------------------------------------------------------------------- /overview/img/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/overview/img/app.png -------------------------------------------------------------------------------- /overview/img/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/overview/img/app.xml -------------------------------------------------------------------------------- /overview/img/core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/overview/img/core.png -------------------------------------------------------------------------------- /overview/img/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/overview/img/core.xml -------------------------------------------------------------------------------- /overview/img/logic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/overview/img/logic.png -------------------------------------------------------------------------------- /overview/img/logic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/overview/img/logic.xml -------------------------------------------------------------------------------- /overview/resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/overview/resolution.md -------------------------------------------------------------------------------- /projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/projects.md -------------------------------------------------------------------------------- /quickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/quickstart/README.md -------------------------------------------------------------------------------- /quickstart/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/quickstart/example.md -------------------------------------------------------------------------------- /quickstart/img/process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/quickstart/img/process.png -------------------------------------------------------------------------------- /quickstart/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/quickstart/install.md -------------------------------------------------------------------------------- /quickstart/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/quickstart/release.md -------------------------------------------------------------------------------- /specs/README.md: -------------------------------------------------------------------------------- 1 | # Config & Specs 2 | 3 | 这里我们会详细介绍 Eru 的一些东西 4 | 5 | * App yaml 描述 6 | * 各组件的配置 7 | -------------------------------------------------------------------------------- /specs/agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/specs/agent.md -------------------------------------------------------------------------------- /specs/app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/specs/app.md -------------------------------------------------------------------------------- /specs/core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projecteru2/white-paper/HEAD/specs/core.md --------------------------------------------------------------------------------