├── .gitignore ├── Beginner ├── basic-containers │ └── README.md ├── basic-linux │ └── README.md ├── basic-networking │ └── README.md ├── install-kubectl │ └── README.md ├── k8s-architecture │ └── README.md ├── k8s-concepts │ └── README.md ├── k8s-overview │ └── README.md ├── k8s-run-local-cluster │ └── README.md ├── run-first-resources │ └── README.md └── whats-k8s │ └── README.md ├── Intermediate ├── advanced-configuration │ └── README.md ├── deployments-and-pods │ └── README.md ├── metrics-and-logs │ └── README.md ├── scaling-and-scheduling │ └── README.md ├── security │ └── README.md ├── service-and-ingress │ └── README.md ├── stateful-and-volumes │ └── README.md └── troubleshooting │ └── README.md ├── Intros ├── build-fundamentals │ └── README.md ├── intro-k8s │ └── README.md ├── journey-start │ └── README.md ├── k8s-basic-finish │ └── README.md ├── run-first-cluster │ └── README.md └── understand-cluster-infra │ └── README.md ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .vscode 3 | -------------------------------------------------------------------------------- /Beginner/basic-containers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/Beginner/basic-containers/README.md -------------------------------------------------------------------------------- /Beginner/basic-linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/Beginner/basic-linux/README.md -------------------------------------------------------------------------------- /Beginner/basic-networking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/Beginner/basic-networking/README.md -------------------------------------------------------------------------------- /Beginner/install-kubectl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/Beginner/install-kubectl/README.md -------------------------------------------------------------------------------- /Beginner/k8s-architecture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/Beginner/k8s-architecture/README.md -------------------------------------------------------------------------------- /Beginner/k8s-concepts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/Beginner/k8s-concepts/README.md -------------------------------------------------------------------------------- /Beginner/k8s-overview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/Beginner/k8s-overview/README.md -------------------------------------------------------------------------------- /Beginner/k8s-run-local-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/Beginner/k8s-run-local-cluster/README.md -------------------------------------------------------------------------------- /Beginner/run-first-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/Beginner/run-first-resources/README.md -------------------------------------------------------------------------------- /Beginner/whats-k8s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/Beginner/whats-k8s/README.md -------------------------------------------------------------------------------- /Intermediate/advanced-configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/Intermediate/advanced-configuration/README.md -------------------------------------------------------------------------------- /Intermediate/deployments-and-pods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/Intermediate/deployments-and-pods/README.md -------------------------------------------------------------------------------- /Intermediate/metrics-and-logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/Intermediate/metrics-and-logs/README.md -------------------------------------------------------------------------------- /Intermediate/scaling-and-scheduling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/Intermediate/scaling-and-scheduling/README.md -------------------------------------------------------------------------------- /Intermediate/security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/Intermediate/security/README.md -------------------------------------------------------------------------------- /Intermediate/service-and-ingress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/Intermediate/service-and-ingress/README.md -------------------------------------------------------------------------------- /Intermediate/stateful-and-volumes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/Intermediate/stateful-and-volumes/README.md -------------------------------------------------------------------------------- /Intermediate/troubleshooting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/Intermediate/troubleshooting/README.md -------------------------------------------------------------------------------- /Intros/build-fundamentals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/Intros/build-fundamentals/README.md -------------------------------------------------------------------------------- /Intros/intro-k8s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/Intros/intro-k8s/README.md -------------------------------------------------------------------------------- /Intros/journey-start/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/Intros/journey-start/README.md -------------------------------------------------------------------------------- /Intros/k8s-basic-finish/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/Intros/k8s-basic-finish/README.md -------------------------------------------------------------------------------- /Intros/run-first-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/Intros/run-first-cluster/README.md -------------------------------------------------------------------------------- /Intros/understand-cluster-infra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/Intros/understand-cluster-infra/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guymenahem/the-kubernetes-journey/HEAD/README.md --------------------------------------------------------------------------------