Delete multiple jobs in Kubernetes
In this blog, we will cover how to bulk delete multiple jobs in Kubernetes. A Kubernetes Job creates one or more Pods and when the specified number of successful runs are complete, the task is considered as complete. To delete a Job, we will need to clean up the Pods it creates. Bulk Delete Jobs […]
Create User in InfluxDB without Operator Token
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)
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
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
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)
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 […]