From 026c3f834f6270e019a72368f976f4e3b31e20f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rcio=20Fernandes?= Date: Wed, 18 Feb 2026 22:12:06 +0000 Subject: [PATCH] modified: README.md --- README.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4b26611..7baa61c 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ Kubernetes is an open‑source platform that automates the deployment, scaling, - [Manifest - StringData](#manifest---stringdata) - [Inline with heredoc and environment variables](#inline-with-heredoc-and-environment-variables) - [substr](#substr) +- [nodes](#nodes) - [Deployment](#deployment) - [Deployment - Set Replicas](#deployment---set-replicas) - [Deployment - Restart](#deployment---restart) @@ -68,6 +69,12 @@ POD_NAME=$(kubectl get pod -l app=borg-backup-sidekick -n git-limbosolutions-com echo $POD_NAME ``` +**Get pod name by text on description, for example find by ip:** + +``` bash + kubectl get pods -A -o wide | grep 10.0.3.224 +``` + ### Pod delete **Restart local Path Provisioner:** @@ -90,7 +97,6 @@ kubectl get pods --all-namespaces \ | grep OOMKilled ``` - ### Custom Resource Definitions - **Definition:** A Custom Resource Definition (CRD) is an extension of the Kubernetes API. @@ -317,6 +323,20 @@ envsubst < ./secret.yaml | kubectl apply -f - ``` +## nodes + +**get node taints:** + +``` bash +kubectl describe node | grep taint +``` + +**remove annotation:** + +``` bash +kubectl annotate node - +``` + ## Deployment ### Deployment - Set Replicas