Create User in InfluxDB without Operator Token

create user in influxdb

In this blog, we will cover how to create user in influxdb without operator token. This is useful when you do not have access to the initial user’s token or you are unable to create an operator token for some other reason. In addition, new user cannot be added via UI and you will have […]

Route UDP traffic in Kubernetes cluster (EKS)

route udp traffic in kubernetes

We have created a custom Docker image that can route UDP traffic in a Kubernetes cluster (Amazon EKS). The Docker image includes a Helm chart that can be used to deploy a UDP application to a Kubernetes cluster. The UDP listener service listens on the specified UDP port and outputs to the container log. The […]

Enable Anonymous access for Grafana

Grafana includes a built-in user authentication system enabled by default.  In some cases, we need to enable anonymous access for grafana. To enable anonymous access, you can perform the following steps. Grafana Environment In our case, Grafana is running in a Kubernetes cluster on AWS but similar steps should apply for other environments. Update grafana.ini […]

How to use ICMP with Kubernetes load balancer services on EKS?

As you may or may not know services with Kubernetes do not natively support ICMP protocol but there is a way to get around this limitation with load balancer services on Amazon EKS. Internet Control Message Protoco (ICMP) The Internet Control Message Protocol (ICMP) is a supporting protocol in the Internet protocol suite. It is […]

Kubernetes: System.IO.IOException: The configured user limit (#) on the number of inotify instances has been reached

The root issue for Kubernetes: System.IO.IOException inotify instances error is caused by the Kubernetes cluster running out of inotify resources at the OS level. The resource limit for the inotify resources is defined by “fs.inotify.max_user_watches” and “fs.inotify.max_user_instances” environment variables. You can view the limits on the Kubernetes cluster by executing into a pod of your […]

ETCD on Kubernetes with High Availability – Maintenance – Part 3

setup etcd on kubernetes

ETCD on Kubernetes with High Availability In this blog, we will cover how to maintain an Etcd on Kubernetes with High Availability. We will be installing Etcd v3.5.4 on Amazon Elastic Kubernetes Service (EKS), but a similar setup should work for other Kubernetes clusters as well. Prerequisites Kubernetes 1.19+ Helm 3.2.0+ Clone and create a […]

ETCD on Kubernetes with High Availability – Monitoring – Part 4

setup etcd on kubernetes

ETCD on Kubernetes with High Availability In this blog, we will cover how to monitor Etcd on Kubernetes with High Availability. We will be installing Etcd v3.5.4 on Amazon Elastic Kubernetes Service (EKS), but a similar setup should work for other Kubernetes clusters as well. Prerequisites Kubernetes 1.19+ Helm 3.2.0+ Clone and create a feature […]

Setup Etcd on Kubernetes with High Availability – Node Affinity – Part 2

setup etcd on kubernetes

ETCD on Kubernetes with Node Affinity In part-1 of this multi-series blog, we covered how to setup Etcd on Kubernetes. In part-2 here, we will cover how to setup node affinity for our Etcd cluster on Amazon Elastic Kubernetes Service (EKS). Node affinity allows you to constrain which nodes your Pod can be scheduled on […]

ETCD on Kubernetes with High Availability – Installation – Part 1

setup etcd on kubernetes

Install ETCD on Kubernetes with High Availability In this multi-part series, we will cover how to install, maintain and monitor an Etcd cluster on Kubernetes with High Availability. We will be installing Etcd v3.5.4 on Amazon Elastic Kubernetes Service (EKS), but similar setup should work for other Kubernetes clusters as well. Prerequisites Kubernetes 1.19+ Helm […]

Install WordPress on EKS – AWS Kubernetes Service

install wordpress on eks

Install WordPress on EKS Are you looking to install WordPress on EKS ? Lot of our clients are migrating their sites off from dedicated/VPC/shared hosting services to Cloud (AWS, Azure, and GCP). There are a lot of advantages of moving your site to the cloud-like you can obtain free SSL certificates from Amazon Certificate Manager […]