├── LICENSE ├── README.md ├── cheatsheets └── README.md ├── exercise01 ├── Dockerfile ├── index.html └── solution.md ├── exercise02 └── Readme.md ├── exercise03 └── README.md ├── finaltest ├── README.md ├── certs │ ├── nginx.crt │ └── nginx.key ├── conf │ └── ssl-nginx.conf ├── solution.md └── solution │ ├── configmap.yaml │ ├── deployment.yaml │ ├── secret.yaml │ └── service.yaml ├── pingponredis └── deployment.yaml ├── pingredis ├── ping-svc.yaml ├── pingredis-dep.yaml ├── redis-dep.yaml └── redis-svc.yaml └── secrets ├── pod-secret.yaml └── secret.yaml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubecamp/kubernetes_in_one_day/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # kubernetes_in_one_day 2 | Material for the training course 3 | -------------------------------------------------------------------------------- /cheatsheets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubecamp/kubernetes_in_one_day/HEAD/cheatsheets/README.md -------------------------------------------------------------------------------- /exercise01/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubecamp/kubernetes_in_one_day/HEAD/exercise01/Dockerfile -------------------------------------------------------------------------------- /exercise01/index.html: -------------------------------------------------------------------------------- 1 |

Super hello

2 | -------------------------------------------------------------------------------- /exercise01/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubecamp/kubernetes_in_one_day/HEAD/exercise01/solution.md -------------------------------------------------------------------------------- /exercise02/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubecamp/kubernetes_in_one_day/HEAD/exercise02/Readme.md -------------------------------------------------------------------------------- /exercise03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubecamp/kubernetes_in_one_day/HEAD/exercise03/README.md -------------------------------------------------------------------------------- /finaltest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubecamp/kubernetes_in_one_day/HEAD/finaltest/README.md -------------------------------------------------------------------------------- /finaltest/certs/nginx.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubecamp/kubernetes_in_one_day/HEAD/finaltest/certs/nginx.crt -------------------------------------------------------------------------------- /finaltest/certs/nginx.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubecamp/kubernetes_in_one_day/HEAD/finaltest/certs/nginx.key -------------------------------------------------------------------------------- /finaltest/conf/ssl-nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubecamp/kubernetes_in_one_day/HEAD/finaltest/conf/ssl-nginx.conf -------------------------------------------------------------------------------- /finaltest/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubecamp/kubernetes_in_one_day/HEAD/finaltest/solution.md -------------------------------------------------------------------------------- /finaltest/solution/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubecamp/kubernetes_in_one_day/HEAD/finaltest/solution/configmap.yaml -------------------------------------------------------------------------------- /finaltest/solution/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubecamp/kubernetes_in_one_day/HEAD/finaltest/solution/deployment.yaml -------------------------------------------------------------------------------- /finaltest/solution/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubecamp/kubernetes_in_one_day/HEAD/finaltest/solution/secret.yaml -------------------------------------------------------------------------------- /finaltest/solution/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubecamp/kubernetes_in_one_day/HEAD/finaltest/solution/service.yaml -------------------------------------------------------------------------------- /pingponredis/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubecamp/kubernetes_in_one_day/HEAD/pingponredis/deployment.yaml -------------------------------------------------------------------------------- /pingredis/ping-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubecamp/kubernetes_in_one_day/HEAD/pingredis/ping-svc.yaml -------------------------------------------------------------------------------- /pingredis/pingredis-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubecamp/kubernetes_in_one_day/HEAD/pingredis/pingredis-dep.yaml -------------------------------------------------------------------------------- /pingredis/redis-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubecamp/kubernetes_in_one_day/HEAD/pingredis/redis-dep.yaml -------------------------------------------------------------------------------- /pingredis/redis-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubecamp/kubernetes_in_one_day/HEAD/pingredis/redis-svc.yaml -------------------------------------------------------------------------------- /secrets/pod-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubecamp/kubernetes_in_one_day/HEAD/secrets/pod-secret.yaml -------------------------------------------------------------------------------- /secrets/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubecamp/kubernetes_in_one_day/HEAD/secrets/secret.yaml --------------------------------------------------------------------------------