├── .github ├── ISSUE_TEMPLATES │ ├── presentation.md │ ├── proposal.md │ └── suggestion.md └── settings.yml ├── .gitignore ├── LICENSE ├── README.md ├── presentations └── 2020_05_07_moving_beyond_http.pdf ├── recommendations ├── chaos-mesh.md ├── linkerd.md ├── smi-arch.png └── smi.md └── service-mesh-wg └── README.md /.github/ISSUE_TEMPLATES/presentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-network/HEAD/.github/ISSUE_TEMPLATES/presentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATES/proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-network/HEAD/.github/ISSUE_TEMPLATES/proposal.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATES/suggestion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-network/HEAD/.github/ISSUE_TEMPLATES/suggestion.md -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-network/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/settings.json 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-network/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-network/HEAD/README.md -------------------------------------------------------------------------------- /presentations/2020_05_07_moving_beyond_http.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-network/HEAD/presentations/2020_05_07_moving_beyond_http.pdf -------------------------------------------------------------------------------- /recommendations/chaos-mesh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-network/HEAD/recommendations/chaos-mesh.md -------------------------------------------------------------------------------- /recommendations/linkerd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-network/HEAD/recommendations/linkerd.md -------------------------------------------------------------------------------- /recommendations/smi-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-network/HEAD/recommendations/smi-arch.png -------------------------------------------------------------------------------- /recommendations/smi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-network/HEAD/recommendations/smi.md -------------------------------------------------------------------------------- /service-mesh-wg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cncf/tag-network/HEAD/service-mesh-wg/README.md --------------------------------------------------------------------------------