├── .github └── workflows │ └── markdownlint.yml ├── .gitignore ├── .markdownlint.json ├── LICENSE ├── README.md ├── media └── kubernetes-dashboard-login.png ├── package.json ├── template.md └── text ├── 2020-09-08-easily-send-http-request-on-workflow-task.md ├── 2020-10-22-authn-and-authz-on-chaos-dashboard.md ├── 2020-11-09-chaos-mesh-workflow.md ├── 2021-03-11-unified-selector.md ├── 2021-07-23-extensible-chaosctl.md ├── 2021-08-11-implement-physical-machine-chaos.md ├── 2021-09-09-physical-machine-auth.md ├── 2021-09-27-refine-error-handling.md ├── 2021-10-08-monitoring-metrics-about-chaos-mesh.md ├── 2021-11-17-ui-monorepo.md ├── 2021-12-09-logging.md ├── 2021-12-29-openapi-to-typescript-api-client-and-forms.md ├── 2022-01-17-keep-a-changelog.md └── 2022-02-21-workflow-status-check.md /.github/workflows/markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaos-mesh/rfcs/HEAD/.github/workflows/markdownlint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaos-mesh/rfcs/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaos-mesh/rfcs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaos-mesh/rfcs/HEAD/README.md -------------------------------------------------------------------------------- /media/kubernetes-dashboard-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaos-mesh/rfcs/HEAD/media/kubernetes-dashboard-login.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaos-mesh/rfcs/HEAD/package.json -------------------------------------------------------------------------------- /template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaos-mesh/rfcs/HEAD/template.md -------------------------------------------------------------------------------- /text/2020-09-08-easily-send-http-request-on-workflow-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaos-mesh/rfcs/HEAD/text/2020-09-08-easily-send-http-request-on-workflow-task.md -------------------------------------------------------------------------------- /text/2020-10-22-authn-and-authz-on-chaos-dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaos-mesh/rfcs/HEAD/text/2020-10-22-authn-and-authz-on-chaos-dashboard.md -------------------------------------------------------------------------------- /text/2020-11-09-chaos-mesh-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaos-mesh/rfcs/HEAD/text/2020-11-09-chaos-mesh-workflow.md -------------------------------------------------------------------------------- /text/2021-03-11-unified-selector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaos-mesh/rfcs/HEAD/text/2021-03-11-unified-selector.md -------------------------------------------------------------------------------- /text/2021-07-23-extensible-chaosctl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaos-mesh/rfcs/HEAD/text/2021-07-23-extensible-chaosctl.md -------------------------------------------------------------------------------- /text/2021-08-11-implement-physical-machine-chaos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaos-mesh/rfcs/HEAD/text/2021-08-11-implement-physical-machine-chaos.md -------------------------------------------------------------------------------- /text/2021-09-09-physical-machine-auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaos-mesh/rfcs/HEAD/text/2021-09-09-physical-machine-auth.md -------------------------------------------------------------------------------- /text/2021-09-27-refine-error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaos-mesh/rfcs/HEAD/text/2021-09-27-refine-error-handling.md -------------------------------------------------------------------------------- /text/2021-10-08-monitoring-metrics-about-chaos-mesh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaos-mesh/rfcs/HEAD/text/2021-10-08-monitoring-metrics-about-chaos-mesh.md -------------------------------------------------------------------------------- /text/2021-11-17-ui-monorepo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaos-mesh/rfcs/HEAD/text/2021-11-17-ui-monorepo.md -------------------------------------------------------------------------------- /text/2021-12-09-logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaos-mesh/rfcs/HEAD/text/2021-12-09-logging.md -------------------------------------------------------------------------------- /text/2021-12-29-openapi-to-typescript-api-client-and-forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaos-mesh/rfcs/HEAD/text/2021-12-29-openapi-to-typescript-api-client-and-forms.md -------------------------------------------------------------------------------- /text/2022-01-17-keep-a-changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaos-mesh/rfcs/HEAD/text/2022-01-17-keep-a-changelog.md -------------------------------------------------------------------------------- /text/2022-02-21-workflow-status-check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaos-mesh/rfcs/HEAD/text/2022-02-21-workflow-status-check.md --------------------------------------------------------------------------------