Working with Kubernetes Pods & Deployment

deployment.yaml pod.yaml

Read more »

Kubernetes Commands: kubectl api-versions – Tutorials and Examples

deployment.yaml

Read more »

Kubernetes Commands: kubectl api-resources – Tutorials and Examples

POD.yaml

Read more »

Kubernetes Commands: kubectl run – Tutorials and Examples

Read more »

Kubernetes Commands: kubectl get – Tutorials and Examples

Listing and Inspecting your cluster, pods, services and more. kubectl cluster-info review status and roles kubectl get nodes Additional information about each node in the cluster. kubectl get nodes -o…

Read more »

Setup Kubernetes Cluster using kubeadm, calico and rbac in Ubuntu

Prerequisite Setup Master Node Setup aka Kubernetes Control Panel Setup Worker Node Setup

Read more »

Create Google Kubernetes Engine(GKE) Cluster using command line

Read more »

Create Azure kubernetes Clustors(AKS) using command line

Read more »

Kubernetes volume hostPath explained with examples

The hostPath volume mounts a resource from the host node filesystem. the resources could be directory, file socket, character, or block device. These resources mu A hostPath volume mounts a…

Read more »

Kubernetes volume emptyDir explained with examples

Here are the following facts for emptyDir storage type in Kubernetes An emptyDir volume is first created when a Pod is assigned to a Node and initially its empty A…

Read more »

Working with multiple virtual Kubernetes clusters aka Namespaces

Kubernetes supports multiple virtual clusters backed by the same physical cluster. These virtual clusters are called namespaces. Namespaces ca be used in multiple environment with many users spread across multiple…

Read more »

minikube error – VBoxManage.exe: error: DHCP server already exists

Error Message Solutions minikube stop minikube start

Read more »

minikube error – CrashLoopBackOff: secrets is forbidden: User “system:serviceaccount:kube-system:default”

$ minikube dashboard Temporary Error: unexpected response code: 503 Temporary Error: unexpected response code: 503 Temporary Error: unexpected response code: 503 Temporary Error: unexpected response code: 503 Solution

Read more »

How to check Containers readiness inside a pod using readinessProbe?

A Probe is a diagnostic performed periodically by the kubelet on a Container. To perform a diagnostic, the kubelet calls a Handler implemented by the Container. There are three types…

Read more »

How to check Containers health inside a kubernetes pod using livenessProbe?

A Probe is a diagnostic performed periodically by the kubelet on a Container. To perform a diagnostic, the kubelet calls a Handler implemented by the Container. There are three types…

Read more »

How to enable Elastic Search REST API Accessible using IP Address?

By default http transport and internal elasticsearch transport only listens to localhost. If you want to access Elasticsearch from the host other than localhost then try adding following configurations in…

Read more »

Ansible Tower Install and Setup Quick Guide

Supported Operating Systems: Red Hat Enterprise Linux 6 64-bit Red Hat Enterprise Linux 7 64-bit CentOS 6 64-bit CentOS 7 64-bit Ubuntu 12.04 LTS 64-bit Ubuntu 14.04 LTS 64-bit Other…

Read more »

Ansible Playbook Lab & Excercise – Part 7

Create a playbook where you should install a webserver into 2 OS type(Ubuntu and RHEL) with fact conditioning. and list out a directory which in “/etc” and display such as…

Read more »

Ansible Windows Playbook Lab & Excercise – Part 8

Write a playbook to Create a dir, named with your-name inside C:\HPE and create a file named with “readme.txt” inside “C:\HPE\ and content of the file should be “I love…

Read more »

Ansible Windows Adhoc Commands Lab & Excercise – Part 2

Write a Adhoc command to Create a dir, named with your-name inside C:\HPE and create a file named with “readme.txt” inside “C:\HPE\ and content of the file should be “I…

Read more »