Deleting the .git folder may cause problems in your git repository. If you want to delete all your commit history but keep the code in its current state, it is very safe to do it as in the following
Author: Dennis Otugo
Dennis Otugo is a Consultant at Bantrain, and loves all things DevOps. In his role, he enables enterprise customers in their digital transformation journey and helps architect cloud-native solutions
How to Setup Sonarqube & Jenkins
In order to run the SonarQube analysis in Jenkins, there are few things we have to take care before creating the Jenkins job.
How to configure Jenkins Exporter for Prometheus
Replace “Jenkins_Host” and “PORT” with the URL of your Jenkins server then restart the server….
How to configure Traefik Exporter for Prometheus
To activate metrics inside of Traefik, we need to configure it in the values.yaml of the Traefik helm chart. Similar to what we have below.
How to Install HAProxy 2.0+ in Amazon Linux 2/CentOS/RHEL
In this article, you can learn how to install HAProxy 2.0 on Amazon Linux 2/CentOS and set up an HAProxy configuration for your load balancing web server.
How to Resolve AWS ALB/NLB DNS in HAProxy
By default, HAProxy resolves all DNS records (e.g. for backends) at startup/reload. These resolved DNS records then stay in HAProxy’s own DNS cache. So you would have to launch a reload of HAProxy to renew the DNS cache.
How to enable Metrics/Stats Page in HAProxy
Parsing the logs with HALog isn’t the only way to get metrics out of HAProxy. The HAProxy Stats Page can be enabled by adding the stats enable directive to a frontend or listen section.
How to enable Profiling in HAProxy
With the release of HAProxy 1.9, you can record CPU time spent on processing a request within HAProxy
How to enable Logging in HAProxy
When it comes to operationalizing your log data, HAProxy provides a wealth of information.
How to setup Prometheus Exporter for HAProxy
As of 2.0.0, HAProxy includes a Prometheus exporter module that can be built into your binary during build time.
How to enable Audit Logs on AWS RDS for Postgres 9
RDS PostgreSQL supports several parameters you can set to log activity that occurs on your PostgreSQL DB instance.
How to resolve Internet Issues in Docker
On a Fresh Install, On a New OS…Fedora, I noticed I was unable to pull in docker base images. So I ran the following commands to troubleshoot and subsequently fix the issue
How to Backup your Kubernetes Cluster using Bash
If you search for “backup Kubernetes” on google you will probably find this page. It is probably what you are looking for if you are running Kubernetes.