├── .bluemix ├── deploy.json ├── icon.svg ├── pipeline.yml ├── toolchain.svg └── toolchain.yml ├── .gitignore ├── .travis.yml ├── .yamllint.yml ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINERS.md ├── README-ko.md ├── README.md ├── gifs ├── grafana1.gif └── grafana2.gif ├── images ├── circuit_breaker.png ├── circuit_breaker2.png ├── content_based_routing.png ├── fault_tolerance.png ├── microprofile-istio.png ├── schedule_diff.png ├── session_diff.png ├── speaker_diff.png ├── traffic_routing.png ├── ui1.png ├── ui2.png ├── ui3.png ├── ui4.png ├── ui5.png ├── vote_diff.png ├── webapp_1.png ├── webapp_2.png ├── webapp_3.png ├── webapp_4.png └── webapp_diff.png ├── manifests ├── circuit-breaker-db.yaml ├── deploy-broken-cloudant.yaml ├── deploy-cloudant.yaml ├── deploy-job.yaml ├── deploy-schedule.yaml ├── deploy-session.yaml ├── deploy-speaker.yaml ├── deploy-vote.yaml ├── deploy-webapp.yaml ├── fault-injection.yaml ├── istio-gateway-vote-timeout.yaml └── istio-gateway.yaml ├── microprofile_ui.md ├── scripts ├── bx_auth.sh ├── bx_login.sh ├── deploy.sh ├── get_code_linux.sh ├── get_code_osx.sh ├── install.sh ├── quickstart.sh └── resources.sh ├── test-requirements.txt ├── tests ├── deploy-minikube.sh └── test-kubernetes.sh └── yaml_modification.md /.bluemix/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/.bluemix/deploy.json -------------------------------------------------------------------------------- /.bluemix/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/.bluemix/icon.svg -------------------------------------------------------------------------------- /.bluemix/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/.bluemix/pipeline.yml -------------------------------------------------------------------------------- /.bluemix/toolchain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/.bluemix/toolchain.svg -------------------------------------------------------------------------------- /.bluemix/toolchain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/.bluemix/toolchain.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/.yamllint.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README-ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/README-ko.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/README.md -------------------------------------------------------------------------------- /gifs/grafana1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/gifs/grafana1.gif -------------------------------------------------------------------------------- /gifs/grafana2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/gifs/grafana2.gif -------------------------------------------------------------------------------- /images/circuit_breaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/images/circuit_breaker.png -------------------------------------------------------------------------------- /images/circuit_breaker2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/images/circuit_breaker2.png -------------------------------------------------------------------------------- /images/content_based_routing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/images/content_based_routing.png -------------------------------------------------------------------------------- /images/fault_tolerance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/images/fault_tolerance.png -------------------------------------------------------------------------------- /images/microprofile-istio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/images/microprofile-istio.png -------------------------------------------------------------------------------- /images/schedule_diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/images/schedule_diff.png -------------------------------------------------------------------------------- /images/session_diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/images/session_diff.png -------------------------------------------------------------------------------- /images/speaker_diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/images/speaker_diff.png -------------------------------------------------------------------------------- /images/traffic_routing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/images/traffic_routing.png -------------------------------------------------------------------------------- /images/ui1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/images/ui1.png -------------------------------------------------------------------------------- /images/ui2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/images/ui2.png -------------------------------------------------------------------------------- /images/ui3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/images/ui3.png -------------------------------------------------------------------------------- /images/ui4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/images/ui4.png -------------------------------------------------------------------------------- /images/ui5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/images/ui5.png -------------------------------------------------------------------------------- /images/vote_diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/images/vote_diff.png -------------------------------------------------------------------------------- /images/webapp_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/images/webapp_1.png -------------------------------------------------------------------------------- /images/webapp_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/images/webapp_2.png -------------------------------------------------------------------------------- /images/webapp_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/images/webapp_3.png -------------------------------------------------------------------------------- /images/webapp_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/images/webapp_4.png -------------------------------------------------------------------------------- /images/webapp_diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/images/webapp_diff.png -------------------------------------------------------------------------------- /manifests/circuit-breaker-db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/manifests/circuit-breaker-db.yaml -------------------------------------------------------------------------------- /manifests/deploy-broken-cloudant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/manifests/deploy-broken-cloudant.yaml -------------------------------------------------------------------------------- /manifests/deploy-cloudant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/manifests/deploy-cloudant.yaml -------------------------------------------------------------------------------- /manifests/deploy-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/manifests/deploy-job.yaml -------------------------------------------------------------------------------- /manifests/deploy-schedule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/manifests/deploy-schedule.yaml -------------------------------------------------------------------------------- /manifests/deploy-session.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/manifests/deploy-session.yaml -------------------------------------------------------------------------------- /manifests/deploy-speaker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/manifests/deploy-speaker.yaml -------------------------------------------------------------------------------- /manifests/deploy-vote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/manifests/deploy-vote.yaml -------------------------------------------------------------------------------- /manifests/deploy-webapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/manifests/deploy-webapp.yaml -------------------------------------------------------------------------------- /manifests/fault-injection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/manifests/fault-injection.yaml -------------------------------------------------------------------------------- /manifests/istio-gateway-vote-timeout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/manifests/istio-gateway-vote-timeout.yaml -------------------------------------------------------------------------------- /manifests/istio-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/manifests/istio-gateway.yaml -------------------------------------------------------------------------------- /microprofile_ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/microprofile_ui.md -------------------------------------------------------------------------------- /scripts/bx_auth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/scripts/bx_auth.sh -------------------------------------------------------------------------------- /scripts/bx_login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/scripts/bx_login.sh -------------------------------------------------------------------------------- /scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/scripts/deploy.sh -------------------------------------------------------------------------------- /scripts/get_code_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/scripts/get_code_linux.sh -------------------------------------------------------------------------------- /scripts/get_code_osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/scripts/get_code_osx.sh -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/quickstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/scripts/quickstart.sh -------------------------------------------------------------------------------- /scripts/resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/scripts/resources.sh -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | yamllint 2 | -------------------------------------------------------------------------------- /tests/deploy-minikube.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/tests/deploy-minikube.sh -------------------------------------------------------------------------------- /tests/test-kubernetes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/tests/test-kubernetes.sh -------------------------------------------------------------------------------- /yaml_modification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/resilient-java-microservices-with-istio/HEAD/yaml_modification.md --------------------------------------------------------------------------------