Latest News

Read all latest blog posts

post image
author image
:date_long

Learn AWS EKS Kubernetes cluster and devops in AWS (Part 1)

Learn AWS EKS Kubernetes cluster and devops in AWS (Part 1) Starting AWS EKS cluster manually in AWS web console

Read More
post image
author image
:date_long

Force delete pods

kubectl delete pod drillcluster1-drillbit-0 zk-0 --grace-period=0 --force kubectl patch pod drillcluster1-drillbit-0 zk-0 -p '{"metadata":{"finalizers":null}}'

Read More
post image
author image
:date_long

Grafana dashboard loading

helm repo add grafana https://grafana.github.io/helm-charts helm template \ --show-only templates/configmap-dashboard-provider.yaml \ --show-only templates/deployment.

Read More
post image
author image
:date_long

Grafana dashboard via curl

do not forget to add “id: null” encapsulate to {“dashboard”: …} curl -L \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -X POST \ -uadmin \ --data @/tmp/path/dashboards/dashboard.

Read More
post image
author image
:date_long

Install K3S with Rancher UI

Adjust your /etc/hosts file # Adjust your /etc/hosts file cat /etc/hosts .

Read More
post image
author image
:date_long

K3S with Nvidia GPU

mkdir $HOME/.kube/ curl -sfL https://get.k3s.io | sh -s - --docker --write-kubeconfig-mode 644 --write-kubeconfig $HOME/.

Read More
post image
author image
:date_long

kubectl sort by

kubectl get pods -o wide -n prod --sort-by=.spec.nodeName

Read More