Skip to content

Commit

Permalink
docs: add info
Browse files Browse the repository at this point in the history
  • Loading branch information
lpsm-dev committed May 3, 2023
1 parent feeb0a6 commit e063d2d
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions infra/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
```

0 comments on commit e063d2d

Please sign in to comment.