├── .gitignore ├── README.md ├── artifacts ├── circuit-breakers │ ├── cb-web-frontend.yaml │ ├── fortio.yaml │ ├── outlier-web-frontend.yaml │ └── web-frontend-failing.yaml ├── discovery │ ├── helloworld-dr.yaml │ ├── helloworld-lb.yaml │ └── helloworld-vs.yaml ├── ingress │ ├── gateway-tls.yaml │ ├── gateway.yaml │ ├── k8s-gw-tls.yaml │ ├── k8s-gw.yaml │ ├── web-frontend-route.yaml │ └── web-frontend-virtualservice.yaml ├── observability │ ├── enable-tracing.yaml │ └── trace-config.yaml ├── security │ ├── authz-policy-customers.yaml │ └── mtls-strict.yaml ├── sidecar-injection │ └── nginx-pod.yaml ├── the-app │ ├── customers.yaml │ ├── sleep.yaml │ └── web-frontend.yaml └── traffic-shifting │ ├── customers-destinationrule.yaml │ ├── customers-route-canary.yaml │ ├── customers-route-debug.yaml │ ├── customers-route-final.yaml │ ├── customers-route.yaml │ ├── customers-subsets.yaml │ ├── customers-v2.yaml │ ├── customers-virtualservice-final.yaml │ ├── customers-virtualservice.yaml │ ├── customers-vs-canary.yaml │ └── customers-vs-debug.yaml ├── docs ├── assets │ ├── tetrate-logo-black.png │ └── tetrate-logo-white.png ├── circuit-breakers.md ├── css │ └── custom.css ├── dashboards.md ├── discovery.md ├── environment.md ├── index.md ├── ingress-gwapi.md ├── ingress.md ├── install.md ├── security.md ├── sidecar-injection.md ├── summary.md ├── the-app.md ├── traffic-shifting-gwapi.md └── traffic-shifting.md ├── mkdocs.yml └── overrides └── partials └── logo.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | site/ 3 | .envrc 4 | notes 5 | 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/README.md -------------------------------------------------------------------------------- /artifacts/circuit-breakers/cb-web-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/circuit-breakers/cb-web-frontend.yaml -------------------------------------------------------------------------------- /artifacts/circuit-breakers/fortio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/circuit-breakers/fortio.yaml -------------------------------------------------------------------------------- /artifacts/circuit-breakers/outlier-web-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/circuit-breakers/outlier-web-frontend.yaml -------------------------------------------------------------------------------- /artifacts/circuit-breakers/web-frontend-failing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/circuit-breakers/web-frontend-failing.yaml -------------------------------------------------------------------------------- /artifacts/discovery/helloworld-dr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/discovery/helloworld-dr.yaml -------------------------------------------------------------------------------- /artifacts/discovery/helloworld-lb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/discovery/helloworld-lb.yaml -------------------------------------------------------------------------------- /artifacts/discovery/helloworld-vs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/discovery/helloworld-vs.yaml -------------------------------------------------------------------------------- /artifacts/ingress/gateway-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/ingress/gateway-tls.yaml -------------------------------------------------------------------------------- /artifacts/ingress/gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/ingress/gateway.yaml -------------------------------------------------------------------------------- /artifacts/ingress/k8s-gw-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/ingress/k8s-gw-tls.yaml -------------------------------------------------------------------------------- /artifacts/ingress/k8s-gw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/ingress/k8s-gw.yaml -------------------------------------------------------------------------------- /artifacts/ingress/web-frontend-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/ingress/web-frontend-route.yaml -------------------------------------------------------------------------------- /artifacts/ingress/web-frontend-virtualservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/ingress/web-frontend-virtualservice.yaml -------------------------------------------------------------------------------- /artifacts/observability/enable-tracing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/observability/enable-tracing.yaml -------------------------------------------------------------------------------- /artifacts/observability/trace-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/observability/trace-config.yaml -------------------------------------------------------------------------------- /artifacts/security/authz-policy-customers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/security/authz-policy-customers.yaml -------------------------------------------------------------------------------- /artifacts/security/mtls-strict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/security/mtls-strict.yaml -------------------------------------------------------------------------------- /artifacts/sidecar-injection/nginx-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/sidecar-injection/nginx-pod.yaml -------------------------------------------------------------------------------- /artifacts/the-app/customers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/the-app/customers.yaml -------------------------------------------------------------------------------- /artifacts/the-app/sleep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/the-app/sleep.yaml -------------------------------------------------------------------------------- /artifacts/the-app/web-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/the-app/web-frontend.yaml -------------------------------------------------------------------------------- /artifacts/traffic-shifting/customers-destinationrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/traffic-shifting/customers-destinationrule.yaml -------------------------------------------------------------------------------- /artifacts/traffic-shifting/customers-route-canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/traffic-shifting/customers-route-canary.yaml -------------------------------------------------------------------------------- /artifacts/traffic-shifting/customers-route-debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/traffic-shifting/customers-route-debug.yaml -------------------------------------------------------------------------------- /artifacts/traffic-shifting/customers-route-final.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/traffic-shifting/customers-route-final.yaml -------------------------------------------------------------------------------- /artifacts/traffic-shifting/customers-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/traffic-shifting/customers-route.yaml -------------------------------------------------------------------------------- /artifacts/traffic-shifting/customers-subsets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/traffic-shifting/customers-subsets.yaml -------------------------------------------------------------------------------- /artifacts/traffic-shifting/customers-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/traffic-shifting/customers-v2.yaml -------------------------------------------------------------------------------- /artifacts/traffic-shifting/customers-virtualservice-final.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/traffic-shifting/customers-virtualservice-final.yaml -------------------------------------------------------------------------------- /artifacts/traffic-shifting/customers-virtualservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/traffic-shifting/customers-virtualservice.yaml -------------------------------------------------------------------------------- /artifacts/traffic-shifting/customers-vs-canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/traffic-shifting/customers-vs-canary.yaml -------------------------------------------------------------------------------- /artifacts/traffic-shifting/customers-vs-debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/artifacts/traffic-shifting/customers-vs-debug.yaml -------------------------------------------------------------------------------- /docs/assets/tetrate-logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/docs/assets/tetrate-logo-black.png -------------------------------------------------------------------------------- /docs/assets/tetrate-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/docs/assets/tetrate-logo-white.png -------------------------------------------------------------------------------- /docs/circuit-breakers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/docs/circuit-breakers.md -------------------------------------------------------------------------------- /docs/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/docs/css/custom.css -------------------------------------------------------------------------------- /docs/dashboards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/docs/dashboards.md -------------------------------------------------------------------------------- /docs/discovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/docs/discovery.md -------------------------------------------------------------------------------- /docs/environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/docs/environment.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/ingress-gwapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/docs/ingress-gwapi.md -------------------------------------------------------------------------------- /docs/ingress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/docs/ingress.md -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/docs/security.md -------------------------------------------------------------------------------- /docs/sidecar-injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/docs/sidecar-injection.md -------------------------------------------------------------------------------- /docs/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/docs/summary.md -------------------------------------------------------------------------------- /docs/the-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/docs/the-app.md -------------------------------------------------------------------------------- /docs/traffic-shifting-gwapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/docs/traffic-shifting-gwapi.md -------------------------------------------------------------------------------- /docs/traffic-shifting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/docs/traffic-shifting.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /overrides/partials/logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tetratelabs/istio-0to60/HEAD/overrides/partials/logo.html --------------------------------------------------------------------------------