© 2023 Hashnode
#kubectl
Kubernetes is a powerful container orchestration system that has taken the world of cloud computing by storm. With its ability to manage and scale containers across multiple hosts, Kubernetes has beco…
Kubernetes Objects - Kubernetes uses objects to represent the state of your cluster.- what containerized applications are running (and on which node)- The policies around how those application behave,…
- Login to aws- launch 3 instance- ubuntu 16.04 (t2 medium)- use puttygen, create private key and save- access all the 3 instance (1 master, 2 nodes)Commands common for master & node- sudo su- apt-get…
To create the pod let's first install the Minikube from here. Let's start with the basic pod. vi first-pod.yml kind: Pod apiVersion: v1 metadata: name: my-pod spec: containers: - name: container1 image: ubuntu command: …
Plugins are software extensions that can be loaded on a program to improve its functionality. kubectl is a tool that allows you to perform literally any and all Kubernetes-related tasks. This tool is …
Hello everyone, It’s my pleasure to announce the v0.1.0 release of the Kubectl EKS Plugin. I had this of the kubectl plugin for EKS from the day I started using Amazon EKS. But I finally made it into …
1. What is Kubernetes? Kubernetes is an open-source container orchestration tool developed by Google. Kubernetes offers the following features: High availability Scalability or high performance. Di…
Have you ever wondered about running kubectl commands in parallel for some of your clusters? You must have written custom shell scripts or Golang scripts to do so. Fortunately, a tool to run commands …
Does that word cluster amaze you? If you are trying to get an Kubernetes cluster running by yourself. Then you are at the right place. The article covers simple to do steps to understand kubernetes by…
In the rare case you need to update the Container Images Manually instead of managing the Deployment the GitOps Way via FluxCD or ArgoCD. Then see the commands bellow. With FluxCD you can do the follo…