├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Lab 0 └── README.md ├── Lab 1 ├── Dockerfile ├── README.md ├── app.js ├── package.json └── script │ └── script.md ├── Lab 2 ├── Dockerfile ├── README.md ├── app.js ├── healthcheck.yml └── package.json ├── Lab 3 ├── README.md ├── watson-deployment.yml ├── watson-talk │ ├── Dockerfile │ ├── app.js │ └── package.json └── watson │ ├── Dockerfile │ ├── app.js │ └── package.json ├── Lab 4 └── README.md ├── Lab 5 ├── Images │ └── cs_security.png ├── README.md └── script │ └── script.md ├── License.txt ├── MAINTAINERS.md ├── README.md ├── bx_login.sh ├── deploy.sh ├── deploy_rollup.sh ├── images ├── VMvsContainer.png ├── app_deploy_workflow.png ├── cluster_ha_roadmap.png ├── container-pod-node-master-relationship.jpg └── kubernetes_arch.png ├── install_bx.sh └── test_yml.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Lab 0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/Lab 0/README.md -------------------------------------------------------------------------------- /Lab 1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/Lab 1/Dockerfile -------------------------------------------------------------------------------- /Lab 1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/Lab 1/README.md -------------------------------------------------------------------------------- /Lab 1/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/Lab 1/app.js -------------------------------------------------------------------------------- /Lab 1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/Lab 1/package.json -------------------------------------------------------------------------------- /Lab 1/script/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/Lab 1/script/script.md -------------------------------------------------------------------------------- /Lab 2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/Lab 2/Dockerfile -------------------------------------------------------------------------------- /Lab 2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/Lab 2/README.md -------------------------------------------------------------------------------- /Lab 2/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/Lab 2/app.js -------------------------------------------------------------------------------- /Lab 2/healthcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/Lab 2/healthcheck.yml -------------------------------------------------------------------------------- /Lab 2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/Lab 2/package.json -------------------------------------------------------------------------------- /Lab 3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/Lab 3/README.md -------------------------------------------------------------------------------- /Lab 3/watson-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/Lab 3/watson-deployment.yml -------------------------------------------------------------------------------- /Lab 3/watson-talk/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/Lab 3/watson-talk/Dockerfile -------------------------------------------------------------------------------- /Lab 3/watson-talk/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/Lab 3/watson-talk/app.js -------------------------------------------------------------------------------- /Lab 3/watson-talk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/Lab 3/watson-talk/package.json -------------------------------------------------------------------------------- /Lab 3/watson/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/Lab 3/watson/Dockerfile -------------------------------------------------------------------------------- /Lab 3/watson/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/Lab 3/watson/app.js -------------------------------------------------------------------------------- /Lab 3/watson/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/Lab 3/watson/package.json -------------------------------------------------------------------------------- /Lab 4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/Lab 4/README.md -------------------------------------------------------------------------------- /Lab 5/Images/cs_security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/Lab 5/Images/cs_security.png -------------------------------------------------------------------------------- /Lab 5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/Lab 5/README.md -------------------------------------------------------------------------------- /Lab 5/script/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/Lab 5/script/script.md -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/License.txt -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/README.md -------------------------------------------------------------------------------- /bx_login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/bx_login.sh -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/deploy.sh -------------------------------------------------------------------------------- /deploy_rollup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/deploy_rollup.sh -------------------------------------------------------------------------------- /images/VMvsContainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/images/VMvsContainer.png -------------------------------------------------------------------------------- /images/app_deploy_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/images/app_deploy_workflow.png -------------------------------------------------------------------------------- /images/cluster_ha_roadmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/images/cluster_ha_roadmap.png -------------------------------------------------------------------------------- /images/container-pod-node-master-relationship.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/images/container-pod-node-master-relationship.jpg -------------------------------------------------------------------------------- /images/kubernetes_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/images/kubernetes_arch.png -------------------------------------------------------------------------------- /install_bx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/install_bx.sh -------------------------------------------------------------------------------- /test_yml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/container-service-getting-started-wt/HEAD/test_yml.sh --------------------------------------------------------------------------------