Follow me on Twitter, happy to take your suggestions on topics or improvements /Chris
Docker
- Sign up for a free Azure account To use containers in the Cloud like a private registry you will need a free Azure account
- Docker part I - basics This part covers what Docker is and why I think you should use it. It brings up concepts such as images and containers and takes you through building and running your first container
- Docker part II - volumes this is about Volumes and how we can use volumes to persist data but also how we can turn our development environment into a Volume and make our development experience considerably better
- Docker part III - databases, linking and networks this is about how to deal with Databases, putting them into containers and how to make containers talk to other containers using legacy linking but also the new standard through networks
- Docker part IV - introducing Docker Compose this is how we manage more than one service using Docker Compose ( this is 1/2 part on Docker Compose)
- Docker part V- going deeper with Docker Compose this part is the second and concluding part on Docker Compose where we cover Volumes, Environment Variables and working with Databases and Networks
- Dockerfile great practices for beginners This is a guide that will ensure your Docker Image will be as small as possible but also ensure it's performant and you understand why you should use certain commands.
- Improve your Docker workflow with this VS Code extension VS Code can really help you with your Docker workflow with this extension, build run, author, deploy, lot's of great commands
- This two-part series Part I, Creating your Microservices with Docker Part II, Bring your container to the Cloud show how you can use Docker to build Microservices with Docker Compose as part of building and Cloud Hosted API
- Want to keep using Docker in the Cloud? This shows how you can build your containers and bring them with you to the Cloud
- My crash course and learning journey with Docker, I describe how I as a frontend developer barely understood what I was doing to finally understanding why I needed Docker and took the needed time to learn it and leverage its features
Kubernetes
Fundamentals
Kubernetes is about orchestrating containerized apps. Docker is great for your first few containers. As soon as you need to run on multiple machines and need to scale up/down and distribute the load and so on, you need an orchestrator - you need KubernetesNodes, Pods, Services, and Labeling
This second part aims to give additional context to Nodes, Pods and introduce the concept Service. There is some theory and some practice with Kubectl.Static scaling
This third part aims to show how you scale your application. We can easily set the number of Replicas we want of a certain application and let Kubernetes figure out how to do that. This is us defining a so-called desired state.Auto scaling
This fourth part is also about scaling but we are not talking about setting the number of Replicas. Instead, we are talking about automatic scaling, of letting Kubernetes scale to as many Replicas as it needs based on settings you set on CPU and other metrics. This is great way to handle a sudden barrage of incoming requests.YAML files in Kuberenetes
Learn about YAML files and how to use them in Kubernetes
Top comments (2)
very nice Chris 👍. Today I was learning kubernetics and I found your article.
Thanks :)