Civo is a cloud-native service powered exclusively by Kubernetes.
Continue readingTag Archives: Kubernetes cluster
Leave a reply
eksctl – How to Create and Manage AWS EKS clusters
A review of eksctl and step by step guide how to create and manage AWS Elastic Kubernetes Service (EKS) clusters.
Kaniko – Building Container Images In Kubernetes Without Docker
How do we build container images inside containers running in a Kubernetes cluster? Docker is a bad option since it cannot run inside containers. Using it requires communication to the Docker engine running in cluster nodes. Even if that security concern is not enough, Dockershim is deprecated in Kubernetes 1.20 and will be (or already is) removed from 1.22. That means that alternative container engines like ContainerD will take its place. In other words, using Docker is not even an option anymore.
Kaniko comes to the rescue. It is a tool to build container images from a Dockerfile, inside a container or Kubernetes cluster.