Docker containers in today’s world is seeming to be a must for application deployment! A docker image is a file that defines which data and processes should exist inside a particular container when it starts. Any docker image be it from official repositories or the one built on your own might have vulnerabilities and possess […]
Read MoreKubernetes is one of the hottest buzz-words in today’s IT industry. In spite of Kubernetes being a container orchestration platform, we don’t manage containers directly. Well, deploying an application onto Kubernetes using any container service is no rocket science. The process of manually updating containerized applications can be time-consuming and monotonous. Upgrading a service to […]
Read MoreContainers have revolutionized the application deployment! Docker and Kubernetes go hand-in-hand and work the best together. Docker provides an open source standard to “create” a container and K8s helps to “manage’ these containers by automating the rest of the process. Docker and Kubernetes certainly seem to be a on stop solution for application deployment as […]
Read MoreMost of us love the GUI based interactions rather than the old and boring CLI ones. Are you wondering if the K8s also has a GUI which makes our lives a lot easier? Yes, it does! Its called the Kubernetes Dashboard. The web-based console, which is a general-purpose UI made to look after the Cluster […]
Read MoreKubernetes is in the spotlight of all the containerization platforms available. One of the hottest buzz-words in the IT world right now. Kubernetes, at its basic level, is a system for running and coordinating containerized applications across a cluster of machines. Ingress is an ‘intelligent high-level abstraction’ responsible for allowing simple host or URL based […]
Read MorePods are the smallest deployable unit of Kubernetes where we can run our applications. Scheduling in Kubernetes is a core component as it aims to schedule the pod to a correct and available node. If you want to understand why Pods are placed onto a particular Node, or if you’re planning to know types of […]
Read MoreKubernetes is a complete containerization orchestration, which provides the ability to run dynamically scaling, management of containerized applications. Persistent Storage in Kubernetes offers applications in K8s a handy way to request, and consume storage resources. To know more about the K8s Persistent Storage and its concept check out this blog post at k21academy.com/kubernetes36. In this […]
Read MoreWhen you install Kubernetes, choose an installation type based on ease of maintenance, security, control, available resources, and expertise required to operate and manage a cluster. You can deploy a Kubernetes cluster on a local machine, cloud, or choose a managed Kubernetes cluster. If you are interested in Docker & Kubernetes and wish to know […]
Read MoreKubernetes networking allows Kubernetes components to communicate with each other and with other applications such as communication between pods, containers, services, and external services. If you are interested in Docker & Kubernetes and wish to know more about Kubernetes Networking, then click on this link https://k21academy.com/kubernetes34 This post covers: – What is Kubernetes Networking? – […]
Read MoreDocker Compose is a tool for defining and running multi-container Docker applications. It makes it easier for users to orchestrate the processes of Docker containers, including starting up, shutting down, and setting up intra-container linking and volumes. If you are interested in Docker & Kubernetes and wish to know more about Docker Compose, then click […]
Read More