Install Kubernetes on Ubuntu

Install Kubernetes on Ubuntu

Tiempo de lectura: 2 minutos Let’s install Kubernetes on an Ubuntu environment (https://kubernetes.io/docs/tasks/tools/included/install-kubectl-linux/) Install Docker The first step is to install Docker in our environment: Install Docker Compose on Ubuntu following the official Docker website instructions Update dependencies and install necessary packages sudo apt-get update sudo apt-get install ca-certificates curl gnupg sudo install -m 0755 -d /etc/apt/keyrings curl -fsSL https://download.docker.com/linux/ubuntu/gpg … Read more

Install Kubernetes on Windows

Install Kubernetes on Windows

Tiempo de lectura: 2 minutos Kubernetes is an open-source platform designed to automate the deployment, scaling, and operation of containerized applications. It was developed by Google and donated to the Cloud Native Computing Foundation (CNCF). Kubernetes provides an environment to efficiently and scalably orchestrate and manage containers across machine clusters. Kubernetes comes bundled with the Docker Desktop package, so let’s … Read more

Use a Docker Registry with authentication together with Kubernetes

Use a Docker Registry with authentication together with Kubernetes

Tiempo de lectura: 4 minutos If your Docker Registry requires authentication with a username and password, you’ll need to provide those credentials to the Kubernetes cluster so it can access the registry images during deployment. Here’s an example of how you can do it: Using Docker Compose with Docker Registry with Authentication Let’s assume your original Docker Compose looks like … Read more

Migrate a Docker Compose to Kubernetes

Migrate a Docker Compose to Kubernetes

Tiempo de lectura: 5 minutos Today, we’re going to learn, with an example, how to migrate a Docker Compose (https://www.docker.com/) setup to Kubernetes (https://kubernetes.io/). First, let me explain what the two mentioned technologies are: Docker Compose: Docker Compose is a tool that allows you to define and run multi-container Docker applications. With Docker Compose, you can describe the entire configuration … Read more