├── ..data ├── .gitignore ├── README.md ├── TROUBLESHOOTING.md ├── exercise-1 ├── README.md ├── README_AWS.md └── img │ ├── IGdemo.png │ ├── IGdemoattach.png │ ├── VPCdemo.png │ └── k8sdesign.png ├── exercise-10 └── README.md ├── exercise-11 └── README.md ├── exercise-12 └── README.md ├── exercise-13 ├── README.md └── install-auto-injector.sh ├── exercise-14 └── README.md ├── exercise-15 └── README.md ├── exercise-16 ├── README.md └── pull-files.sh ├── exercise-2 ├── README.md └── optional.md ├── exercise-3 └── README.md ├── exercise-4 └── README.md ├── exercise-4a └── README.md ├── exercise-5 └── README.md ├── exercise-6 └── README.md ├── exercise-7 └── README.md ├── exercise-8 └── README.md ├── exercise-8a └── README.md ├── exercise-9 └── README.md ├── guestbook ├── broken-redis-service.yaml ├── deleteGuestBook.sh ├── destination-rule-helloworld.yaml ├── guestbook-deployment.yaml ├── guestbook-gateway.yaml ├── guestbook-ingress.yaml ├── guestbook-service.yaml ├── guestbook-telemetry.yaml ├── guestbook-ui-deployment.yaml ├── guestbook-ui-service.yaml ├── guestbook-virtualservice-mobile-canary ├── helloworld-deployment-v2.yaml ├── helloworld-deployment.yaml ├── helloworld-service.yaml ├── mixer-kubernetes-rules.yaml ├── mixer-rule-denial-v2.yaml ├── mixer-rule-denial.yaml ├── mysql-deployment.yaml ├── mysql-pvc.yaml ├── mysql-service.yaml ├── rate-limit-ui-service.yaml ├── redis-deployment.yaml ├── redis-service.yaml ├── route-rule-80-20.yaml ├── route-rule-delay-guestbook.yaml ├── route-rule-force-hello-v1.yaml ├── route-rule-helloworld-service-503.yaml ├── route-rule-retry.yaml ├── route-rule-user-agent-chrome.yaml ├── route-rule-user-mobile.yaml ├── simple.json ├── telemetry-global.yaml └── telemtry_rule.yaml ├── images ├── homescreen.png └── homescreen2.png ├── kubernetes ├── helloworldservice-deployment.yaml └── helloworldservice-service.yaml └── setup └── README.md /..data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/README.md -------------------------------------------------------------------------------- /TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /exercise-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-1/README.md -------------------------------------------------------------------------------- /exercise-1/README_AWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-1/README_AWS.md -------------------------------------------------------------------------------- /exercise-1/img/IGdemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-1/img/IGdemo.png -------------------------------------------------------------------------------- /exercise-1/img/IGdemoattach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-1/img/IGdemoattach.png -------------------------------------------------------------------------------- /exercise-1/img/VPCdemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-1/img/VPCdemo.png -------------------------------------------------------------------------------- /exercise-1/img/k8sdesign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-1/img/k8sdesign.png -------------------------------------------------------------------------------- /exercise-10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-10/README.md -------------------------------------------------------------------------------- /exercise-11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-11/README.md -------------------------------------------------------------------------------- /exercise-12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-12/README.md -------------------------------------------------------------------------------- /exercise-13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-13/README.md -------------------------------------------------------------------------------- /exercise-13/install-auto-injector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-13/install-auto-injector.sh -------------------------------------------------------------------------------- /exercise-14/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-14/README.md -------------------------------------------------------------------------------- /exercise-15/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-15/README.md -------------------------------------------------------------------------------- /exercise-16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-16/README.md -------------------------------------------------------------------------------- /exercise-16/pull-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-16/pull-files.sh -------------------------------------------------------------------------------- /exercise-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-2/README.md -------------------------------------------------------------------------------- /exercise-2/optional.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-2/optional.md -------------------------------------------------------------------------------- /exercise-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-3/README.md -------------------------------------------------------------------------------- /exercise-4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-4/README.md -------------------------------------------------------------------------------- /exercise-4a/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-4a/README.md -------------------------------------------------------------------------------- /exercise-5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-5/README.md -------------------------------------------------------------------------------- /exercise-6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-6/README.md -------------------------------------------------------------------------------- /exercise-7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-7/README.md -------------------------------------------------------------------------------- /exercise-8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-8/README.md -------------------------------------------------------------------------------- /exercise-8a/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-8a/README.md -------------------------------------------------------------------------------- /exercise-9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/exercise-9/README.md -------------------------------------------------------------------------------- /guestbook/broken-redis-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/broken-redis-service.yaml -------------------------------------------------------------------------------- /guestbook/deleteGuestBook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/deleteGuestBook.sh -------------------------------------------------------------------------------- /guestbook/destination-rule-helloworld.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/destination-rule-helloworld.yaml -------------------------------------------------------------------------------- /guestbook/guestbook-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/guestbook-deployment.yaml -------------------------------------------------------------------------------- /guestbook/guestbook-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/guestbook-gateway.yaml -------------------------------------------------------------------------------- /guestbook/guestbook-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/guestbook-ingress.yaml -------------------------------------------------------------------------------- /guestbook/guestbook-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/guestbook-service.yaml -------------------------------------------------------------------------------- /guestbook/guestbook-telemetry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/guestbook-telemetry.yaml -------------------------------------------------------------------------------- /guestbook/guestbook-ui-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/guestbook-ui-deployment.yaml -------------------------------------------------------------------------------- /guestbook/guestbook-ui-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/guestbook-ui-service.yaml -------------------------------------------------------------------------------- /guestbook/guestbook-virtualservice-mobile-canary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/guestbook-virtualservice-mobile-canary -------------------------------------------------------------------------------- /guestbook/helloworld-deployment-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/helloworld-deployment-v2.yaml -------------------------------------------------------------------------------- /guestbook/helloworld-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/helloworld-deployment.yaml -------------------------------------------------------------------------------- /guestbook/helloworld-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/helloworld-service.yaml -------------------------------------------------------------------------------- /guestbook/mixer-kubernetes-rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/mixer-kubernetes-rules.yaml -------------------------------------------------------------------------------- /guestbook/mixer-rule-denial-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/mixer-rule-denial-v2.yaml -------------------------------------------------------------------------------- /guestbook/mixer-rule-denial.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/mixer-rule-denial.yaml -------------------------------------------------------------------------------- /guestbook/mysql-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/mysql-deployment.yaml -------------------------------------------------------------------------------- /guestbook/mysql-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/mysql-pvc.yaml -------------------------------------------------------------------------------- /guestbook/mysql-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/mysql-service.yaml -------------------------------------------------------------------------------- /guestbook/rate-limit-ui-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/rate-limit-ui-service.yaml -------------------------------------------------------------------------------- /guestbook/redis-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/redis-deployment.yaml -------------------------------------------------------------------------------- /guestbook/redis-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/redis-service.yaml -------------------------------------------------------------------------------- /guestbook/route-rule-80-20.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/route-rule-80-20.yaml -------------------------------------------------------------------------------- /guestbook/route-rule-delay-guestbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/route-rule-delay-guestbook.yaml -------------------------------------------------------------------------------- /guestbook/route-rule-force-hello-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/route-rule-force-hello-v1.yaml -------------------------------------------------------------------------------- /guestbook/route-rule-helloworld-service-503.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/route-rule-helloworld-service-503.yaml -------------------------------------------------------------------------------- /guestbook/route-rule-retry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/route-rule-retry.yaml -------------------------------------------------------------------------------- /guestbook/route-rule-user-agent-chrome.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/route-rule-user-agent-chrome.yaml -------------------------------------------------------------------------------- /guestbook/route-rule-user-mobile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/route-rule-user-mobile.yaml -------------------------------------------------------------------------------- /guestbook/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/simple.json -------------------------------------------------------------------------------- /guestbook/telemetry-global.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/telemetry-global.yaml -------------------------------------------------------------------------------- /guestbook/telemtry_rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/guestbook/telemtry_rule.yaml -------------------------------------------------------------------------------- /images/homescreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/images/homescreen.png -------------------------------------------------------------------------------- /images/homescreen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/images/homescreen2.png -------------------------------------------------------------------------------- /kubernetes/helloworldservice-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/kubernetes/helloworldservice-deployment.yaml -------------------------------------------------------------------------------- /kubernetes/helloworldservice-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/kubernetes/helloworldservice-service.yaml -------------------------------------------------------------------------------- /setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saturnism/istio-workshop/HEAD/setup/README.md --------------------------------------------------------------------------------