From e063d2d141e220640640698c64ae9c0ce7104181 Mon Sep 17 00:00:00 2001 From: lpmatos Date: Wed, 3 May 2023 00:57:44 -0300 Subject: [PATCH] docs: add info --- infra/README.md | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/infra/README.md b/infra/README.md index 7f0d0c4..a879140 100644 --- a/infra/README.md +++ b/infra/README.md @@ -16,6 +16,19 @@ Terraform is an infrastructure as code (IaC) tool that allows you to build, chan Kubernetes is an open-source container orchestration platform designed to automate the deployment, scaling, and management of containerized applications. +**K9S** + +K9s is a terminal based UI to interact with your Kubernetes clusters. The aim of this project is to make it easier to navigate, observe and manage your deployed applications in the wild. K9s continually watches Kubernetes for changes and offers subsequent commands to interact with your observed resources. + +**Kind** + +Kind is a tool for running local Kubernetes clusters using Docker container “nodes”. Kind was primarily designed for testing Kubernetes itself, but may be used for local development or CI. + +```bash +kind create cluster --config kind.yaml +kind delete cluster +``` + **Helm** Helm is a tool that streamlines installing and managing Kubernetes applications. Think of it like Apt/Yum/Homebrew for K8S. @@ -28,12 +41,3 @@ kubectl get ns kubectl get pod -n xmrig k9s ``` - -**Kind** - -Kind is a tool for running local Kubernetes clusters using Docker container “nodes”. Kind was primarily designed for testing Kubernetes itself, but may be used for local development or CI. - -```bash -kind create cluster --config kind.yaml -kind delete cluster -```