Main Menu

Search

HTML - Home - ABOUT TARBOTS


Welcome to tarbots.com
... AI Search Assistant

This site has articles which provides information on everyday commands, procedures & scripts for DevOps & Infrastructure technologies which will be very useful for System Admin, DevOps, CloudOps, Network Admins and any teams or individuals working on Infrastructure technologies.

CLICK HERE to learn more about tarbots.com


Technologies Covered In This Site

HTML - HOME - RECENT ARTICLES TITLE


Recent Articles


KUBERNETES: How to Install Nginx Ingress Controller on Kubernetes Cluster Using Helm

Following are steps to install nginx ingress controller using helm.

1) Add the helm repo for nginx ingress controller, in this example helm-ingress-nginx 

helm repo add helm-ingress-nginx https://kubernetes.github.io/ingress-nginx
  
2) Verify and Update the downloaded Nginx ingress controller helm chart   

Update the helm repo to make sure you have latest nginx ingress controller helm chart. Following is the command.

helm repo update
  
List the Helm repositories to make sure you see nginx ingress controller chart. Following is the command.

helm repo list

3) Create a Kubernetes namespace for nginx ingress controller. In this example ingressns

kubectl create namespace ingressns

4) Install nginx ingress controller using helm

helm upgrade --install ingressns helm-ingress-nginx/ingress-nginx --namespace ingressns

5) Verify that the Nginx Ingress Controller pod is up

kubectl get pods -n ingress

Redhat Enterprise Linux 8: Kickstart Installation File For Installing RHEL8

Refer to following Github link for kickstart installation file for Redhat Enterprise Linux 8 (RHEL8)


Rocky Linux 8: Kickstart File For Installing Rocky Linux 8 (Github)

Refer to following Git link for Kickstart file for installing Rocky Linux 8


KUBERNETES: Kubectl Command to Decode Grafana Admin User Password

Below Kubectl Command can  be used to Decode Grafana Admin User Password. 

kubectl get secret --namespace $NAMESPACE grafana \
    -o jsonpath="{.data.admin-password}" | base64 --decode ; echo