In this part, we will learn minikube and kubectl. We will run a Kubernetes cluster on a local computer. Let’s start for learn! minikube and kubectl This is the minimal production cluster setup. It should contain at least two master and N nodes. What is minikube? Minikube means one node cluster with master and node….
Tag: docker
Let’s Learn Kubernetes – Part 2
Hello, here is Part 2 of the Let’s Learn Kubernetes series. If you want to read Part 1, you can follow Let’s Learn Kubernetes – Part 1 Deployment and StatefulSet In this example, now everything is running perfectly without any issue and the user can access the application via a browser. When the Application container…
Let’s Learn Kubernetes – Part 1
Hi, I’m starting to write a blog post series about Kubernetes basics and this is Part 1. You can follow the guide to understand “What is Kubernetes?” and “What you can do with it?”. What is Kubernetes? Kubernetes is an open-source container orchestration tool for automating software deployment, management, and scaling smoothly and fast. The…
SSL CA Problem on CentOS7 Docker and Solution
When I’m playing with CentOS7 docker image on MacBookPro M1, it looks like it doesn’t connect to the servers which require HTTPS connection. For example, when I run yum -y update the command it returns curl: (77) Problem with the SSL CA cert (path? access rights?). Hmm, it looks like an OS Bug because my…
Deploy nginx docker to AWS ECS with Terraform Automation
Last night, I want to play with AWS ECS Service. I wrote a terraform code to deploy everything at the same time. The terraform is creating all of the resources for run ECS in different VPC and isolated from your other resources. I used nginx:alpine docker image for this project but if you need, you…
Take your GitLab backup everyday if it works in Docker
I’m using GitLab in docker (because I love containerization) and I’m really okay with that because I can move the GitLab environment everywhere if I need and I can feel more elastic when I’m using docker. GitLab backups are really so important because you are keeping all of the source code and maybe wiki maybe…