├── .gitignore ├── README.md ├── Section_Deployment ├── Exercise 1 │ └── deployment-definition.yml ├── Exercise 2 │ └── deployment-definition.yml ├── Exercise 3 │ └── deployment-definition.yml ├── Exercise 4 │ └── deployment-definition.yml ├── Exercise 5 │ └── deployment-definition.yml ├── Exercise 6 │ ├── deployment-definition.yml │ └── pod-definition.yml └── Exercise 7 │ ├── deployment-definition.yml │ └── pod-definition.yml ├── Section_Pod ├── Exercise 1 │ └── pod-definition.yml ├── Exercise 2 │ └── pod-definition.yml ├── Exercise 3 │ └── pod-definition.yml ├── Exercise 4 │ └── pod-definition.yml ├── Exercise 5 │ └── pod-definition.yml ├── Exercise 6 │ └── pod-definition.yml ├── Exercise 7 │ └── pod-definition.yml ├── Exercise 8 │ └── pod-definition.yml └── Exercise 9 │ └── pod-definition.yml ├── Section_ReplicaSet ├── Exercise 1 │ └── replicaset-definition.yml ├── Exercise 2 │ └── replicaset-definition.yml ├── Exercise 3 │ └── replicaset-definition.yml ├── Exercise 4 │ └── replicaset-definition.yml ├── Exercise 5 │ └── replicaset-definition.yml ├── Exercise 6 │ ├── pod-definition.yml │ └── replicaset-definition.yml └── Exercise 7 │ ├── pod-definition.yml │ └── replicaset-definition.yml ├── Section_Services ├── Exercise 1 │ └── service-definition.yml ├── Exercise 2 │ └── service-definition.yml ├── Exercise 3 │ └── service-definition.yml ├── Exercise 4 │ └── service-definition.yml ├── Exercise 5 │ └── service-definition.yml ├── Exercise 6 │ └── service-definition.yml ├── Exercise 7 │ ├── deployment-definition.yml │ └── service-definition.yml └── Exercise 8 │ ├── deployment-definition.yml │ └── service-definition.yml └── Section_YAML ├── Exercise_1 └── playbook.yml ├── Exercise_2 └── food.yml ├── Exercise_3 └── food.yml ├── Exercise_4 └── employee.yml ├── Exercise_5 └── employee.yml └── Exercise_6 └── employee.yml /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/README.md -------------------------------------------------------------------------------- /Section_Deployment/Exercise 1/deployment-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Deployment/Exercise 1/deployment-definition.yml -------------------------------------------------------------------------------- /Section_Deployment/Exercise 2/deployment-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Deployment/Exercise 2/deployment-definition.yml -------------------------------------------------------------------------------- /Section_Deployment/Exercise 3/deployment-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Deployment/Exercise 3/deployment-definition.yml -------------------------------------------------------------------------------- /Section_Deployment/Exercise 4/deployment-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Deployment/Exercise 4/deployment-definition.yml -------------------------------------------------------------------------------- /Section_Deployment/Exercise 5/deployment-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Deployment/Exercise 5/deployment-definition.yml -------------------------------------------------------------------------------- /Section_Deployment/Exercise 6/deployment-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Deployment/Exercise 6/deployment-definition.yml -------------------------------------------------------------------------------- /Section_Deployment/Exercise 6/pod-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Deployment/Exercise 6/pod-definition.yml -------------------------------------------------------------------------------- /Section_Deployment/Exercise 7/deployment-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Deployment/Exercise 7/deployment-definition.yml -------------------------------------------------------------------------------- /Section_Deployment/Exercise 7/pod-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Deployment/Exercise 7/pod-definition.yml -------------------------------------------------------------------------------- /Section_Pod/Exercise 1/pod-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Pod/Exercise 1/pod-definition.yml -------------------------------------------------------------------------------- /Section_Pod/Exercise 2/pod-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Pod/Exercise 2/pod-definition.yml -------------------------------------------------------------------------------- /Section_Pod/Exercise 3/pod-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Pod/Exercise 3/pod-definition.yml -------------------------------------------------------------------------------- /Section_Pod/Exercise 4/pod-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Pod/Exercise 4/pod-definition.yml -------------------------------------------------------------------------------- /Section_Pod/Exercise 5/pod-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Pod/Exercise 5/pod-definition.yml -------------------------------------------------------------------------------- /Section_Pod/Exercise 6/pod-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Pod/Exercise 6/pod-definition.yml -------------------------------------------------------------------------------- /Section_Pod/Exercise 7/pod-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Pod/Exercise 7/pod-definition.yml -------------------------------------------------------------------------------- /Section_Pod/Exercise 8/pod-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Pod/Exercise 8/pod-definition.yml -------------------------------------------------------------------------------- /Section_Pod/Exercise 9/pod-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Pod/Exercise 9/pod-definition.yml -------------------------------------------------------------------------------- /Section_ReplicaSet/Exercise 1/replicaset-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_ReplicaSet/Exercise 1/replicaset-definition.yml -------------------------------------------------------------------------------- /Section_ReplicaSet/Exercise 2/replicaset-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_ReplicaSet/Exercise 2/replicaset-definition.yml -------------------------------------------------------------------------------- /Section_ReplicaSet/Exercise 3/replicaset-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_ReplicaSet/Exercise 3/replicaset-definition.yml -------------------------------------------------------------------------------- /Section_ReplicaSet/Exercise 4/replicaset-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_ReplicaSet/Exercise 4/replicaset-definition.yml -------------------------------------------------------------------------------- /Section_ReplicaSet/Exercise 5/replicaset-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_ReplicaSet/Exercise 5/replicaset-definition.yml -------------------------------------------------------------------------------- /Section_ReplicaSet/Exercise 6/pod-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_ReplicaSet/Exercise 6/pod-definition.yml -------------------------------------------------------------------------------- /Section_ReplicaSet/Exercise 6/replicaset-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_ReplicaSet/Exercise 6/replicaset-definition.yml -------------------------------------------------------------------------------- /Section_ReplicaSet/Exercise 7/pod-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_ReplicaSet/Exercise 7/pod-definition.yml -------------------------------------------------------------------------------- /Section_ReplicaSet/Exercise 7/replicaset-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_ReplicaSet/Exercise 7/replicaset-definition.yml -------------------------------------------------------------------------------- /Section_Services/Exercise 1/service-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Services/Exercise 1/service-definition.yml -------------------------------------------------------------------------------- /Section_Services/Exercise 2/service-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Services/Exercise 2/service-definition.yml -------------------------------------------------------------------------------- /Section_Services/Exercise 3/service-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Services/Exercise 3/service-definition.yml -------------------------------------------------------------------------------- /Section_Services/Exercise 4/service-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Services/Exercise 4/service-definition.yml -------------------------------------------------------------------------------- /Section_Services/Exercise 5/service-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Services/Exercise 5/service-definition.yml -------------------------------------------------------------------------------- /Section_Services/Exercise 6/service-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Services/Exercise 6/service-definition.yml -------------------------------------------------------------------------------- /Section_Services/Exercise 7/deployment-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Services/Exercise 7/deployment-definition.yml -------------------------------------------------------------------------------- /Section_Services/Exercise 7/service-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Services/Exercise 7/service-definition.yml -------------------------------------------------------------------------------- /Section_Services/Exercise 8/deployment-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Services/Exercise 8/deployment-definition.yml -------------------------------------------------------------------------------- /Section_Services/Exercise 8/service-definition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_Services/Exercise 8/service-definition.yml -------------------------------------------------------------------------------- /Section_YAML/Exercise_1/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_YAML/Exercise_1/playbook.yml -------------------------------------------------------------------------------- /Section_YAML/Exercise_2/food.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_YAML/Exercise_2/food.yml -------------------------------------------------------------------------------- /Section_YAML/Exercise_3/food.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_YAML/Exercise_3/food.yml -------------------------------------------------------------------------------- /Section_YAML/Exercise_4/employee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_YAML/Exercise_4/employee.yml -------------------------------------------------------------------------------- /Section_YAML/Exercise_5/employee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_YAML/Exercise_5/employee.yml -------------------------------------------------------------------------------- /Section_YAML/Exercise_6/employee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george0st/kubernetes-training-answers/HEAD/Section_YAML/Exercise_6/employee.yml --------------------------------------------------------------------------------