Latest News

Read all latest blog posts

post image
August 18, 2020

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
February 24, 2022

Kubernetes RBAC

There are namespaced and non namespaced resources in Kubernetes. Role (namespaced) -> RoleBinding ClusterRole (non namespaced) -> ClusterRoleBinding Be extra careful with ClusterRole and ClusterRoleBinding because these are not only assigned to currently existing namespaces but also to namespaces created in future.

Read More
post image
February 22, 2022

Verify binaries

One has to compare the binary version which is currently running at the Kubernetes master and later on find out the PID of kubelet process.

Read More
post image
February 22, 2022

cks-benchmakring.md

CSI Kubernetes Benchmark 1.6.0 (at the time) Make sure to check CSI vs.

Read More
post image
February 21, 2022

Protect Kubernetes node metadata

Deny all traffic to google’s metadata server Study this rule carefully - it takes time to understand it :)

Read More
post image
February 21, 2022

Kubernetes dashboard

Kubectl proxy creates a proxy server between localhost and the Kubernetes API Server uses connection as configured in the kubeconfig Run kubectl proxy command at your master node cks-master Kubectl port-forward Install kubenretes dashboard kubectl apply -f https://raw.

Read More
post image
February 21, 2022

Kubernetes Ingress

Services in Kubernetes ClusterIP (points to a pod via labels selectors) NodePort (in addition a port is exported at each node) Loadbalancer (in addition creates LB at cloud provider) Deploy Nginx ingress controller # Install NGINX Ingress kubectl apply -f https://raw.

Read More