├── .gitignore ├── CKA-book-2e-cover-FINAL-SMALL.png ├── LICENSE ├── README.md ├── ch_01 └── README.md ├── ch_02 └── README.md ├── ch_03 ├── deploy-to-test-sidecar-feature.yaml ├── kube-apiserver-with-sidecars-feature.yaml ├── kubelet-config-with-sidecar-featuregate.yaml └── kubelet-with-sidecar-featuregate.conf ├── ch_04 ├── affinity.yaml ├── init.yaml ├── redis-config.yaml ├── redis.yaml ├── sidecar.yaml ├── ssd-pod.yaml └── values.yaml ├── ch_05 ├── nginx-values.yaml └── pod-tolerate.yaml ├── ch_06 ├── gatewayClass-example-controller.yaml ├── gatewayClass-nginx-controller.yaml ├── hello-ingress.yaml ├── metallb-layer2-config.yaml ├── metallb-native.yaml └── nginx-ingress-controller.yaml ├── ch_07 └── backend.yaml └── ch_08 ├── 10-kubeadm.conf ├── deploy-and-svc.yaml ├── kube-apiserver.yaml ├── kube-proxy-configmap.yaml ├── kube-scheduler.yaml └── multi-container-pod-for-logging.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/.gitignore -------------------------------------------------------------------------------- /CKA-book-2e-cover-FINAL-SMALL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/CKA-book-2e-cover-FINAL-SMALL.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/README.md -------------------------------------------------------------------------------- /ch_01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_01/README.md -------------------------------------------------------------------------------- /ch_02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_02/README.md -------------------------------------------------------------------------------- /ch_03/deploy-to-test-sidecar-feature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_03/deploy-to-test-sidecar-feature.yaml -------------------------------------------------------------------------------- /ch_03/kube-apiserver-with-sidecars-feature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_03/kube-apiserver-with-sidecars-feature.yaml -------------------------------------------------------------------------------- /ch_03/kubelet-config-with-sidecar-featuregate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_03/kubelet-config-with-sidecar-featuregate.yaml -------------------------------------------------------------------------------- /ch_03/kubelet-with-sidecar-featuregate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_03/kubelet-with-sidecar-featuregate.conf -------------------------------------------------------------------------------- /ch_04/affinity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_04/affinity.yaml -------------------------------------------------------------------------------- /ch_04/init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_04/init.yaml -------------------------------------------------------------------------------- /ch_04/redis-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_04/redis-config.yaml -------------------------------------------------------------------------------- /ch_04/redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_04/redis.yaml -------------------------------------------------------------------------------- /ch_04/sidecar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_04/sidecar.yaml -------------------------------------------------------------------------------- /ch_04/ssd-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_04/ssd-pod.yaml -------------------------------------------------------------------------------- /ch_04/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_04/values.yaml -------------------------------------------------------------------------------- /ch_05/nginx-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_05/nginx-values.yaml -------------------------------------------------------------------------------- /ch_05/pod-tolerate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_05/pod-tolerate.yaml -------------------------------------------------------------------------------- /ch_06/gatewayClass-example-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_06/gatewayClass-example-controller.yaml -------------------------------------------------------------------------------- /ch_06/gatewayClass-nginx-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_06/gatewayClass-nginx-controller.yaml -------------------------------------------------------------------------------- /ch_06/hello-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_06/hello-ingress.yaml -------------------------------------------------------------------------------- /ch_06/metallb-layer2-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_06/metallb-layer2-config.yaml -------------------------------------------------------------------------------- /ch_06/metallb-native.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_06/metallb-native.yaml -------------------------------------------------------------------------------- /ch_06/nginx-ingress-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_06/nginx-ingress-controller.yaml -------------------------------------------------------------------------------- /ch_07/backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_07/backend.yaml -------------------------------------------------------------------------------- /ch_08/10-kubeadm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_08/10-kubeadm.conf -------------------------------------------------------------------------------- /ch_08/deploy-and-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_08/deploy-and-svc.yaml -------------------------------------------------------------------------------- /ch_08/kube-apiserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_08/kube-apiserver.yaml -------------------------------------------------------------------------------- /ch_08/kube-proxy-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_08/kube-proxy-configmap.yaml -------------------------------------------------------------------------------- /ch_08/kube-scheduler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_08/kube-scheduler.yaml -------------------------------------------------------------------------------- /ch_08/multi-container-pod-for-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmcrowell/acing-the-cka-exam/HEAD/ch_08/multi-container-pod-for-logging.yaml --------------------------------------------------------------------------------