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 […]

Install Let’s Encrypt SSL certificates for AWS Lightsail WordPress bitnami instance

aws lightsail bitnami wordpress ssl with lets encrypt

In this blog, we will cover how to install let’s encrypt SSL certificate for AWS Lightsail WordPress bitnami instance.  Pre-requisites SSH access to WordPress site. Default WordPress location is:  /opt/bitnami/wordpress Please ensure that the WordPress and Site URLs are set to your domain name e.g. http://yourdomain.com Create Let’s Encrypt Certificates You can install some wordpress […]

Install AnyDesk on Ubuntu 22.04 using CLI

Recently, we had to provision a g4dn.16xlarge AWS instance and install anydesk on Ubuntu for running some AI/MLOps workloads for one of our clients. One of the requirement was to setup AnyDesk client to install custom vendor software on the instance. Here are the commands we used:  Update and Upgrade Apt Package Manager sudo apt […]

The Best Event Booking Apps for Shopify in 2024

shopify appointment booking

Servv stands out for its seamless and advanced integration with Shopify. Servv also provides a rich api level integration with Zoom for online events, webinars and recordings. Servv offers advanced capabilities to support multiple employees through its dedicated member portal.

HOST A static website using AWS S3 and CloudFLARE WITH SSL Certificate

Hosting a static website on AWS S3 and Cloudflare is not only cost-effective but also easy to set up and maintain. CodeRise Technologies Inc. recently completed a project related to Disney’s movie “Wish,” where we assisted in hosting a static website on S3 with Cloudflare. This architecture design successfully met the key requirements of scalability, […]

How to setup Shopify MetaObjects using JSON in 30 minutes (Advanced)

shopify metafield with metaobjects json

In this blog, we will show you how to set up Shopify MetaObjects using JSON. Shopify MetaObjects are a powerful construct that allows you to store additional structured information and then display it on your store. Setting up Shopify MetaObjects using JSON can be a complex task. We hope that we can explain the process […]

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 […]