Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
In modern software development, code quality plays a vital role in maintaining reliable and maintainable applications. As part of a DevSecOps or CI/CD workflow, integrating SonarQube with Jenkins helps automate static code analysis, detect vulnerabilities early, and enforce quality gates before deployment. In this article, youโll learn how to integrate SonarQube with a Jenkins Groovy…
The Problem It started with a simple issue – I couldn’t access my Radarr instance. Even though my config.xml clearly showed AuthenticationMethod>none</AuthenticationMethod>, Radarr kept asking for login credentials that I never set up. After checking the logs, I discovered the real culprit: The SQLite database that stores all of Radarr’s configuration, movie data, and settings had become corrupted,…
๐งฉ 1. Create an S3 Bucket ๐ 2. Create an IAM User for Artifactory โ๏ธ 3. Update binarystore.xml ๐ธ Note: The <chain template=”s3-storage-v3-direct”/> ensures Artifactory uses direct S3 access instead of caching locally. ๐งน 4. Set Permissions Ensure the binarystore.xml has correct permissions: ๐ 5. Restart Artifactory Restart the Artifactory service to apply the new…
๐ Introduction When working inside a Docker container, you might need to verify DNS resolution โ for example, to check if your container can reach another service or hostname. However, many minimal base images (like Alpine, Debian-slim, or Ubuntu minimal) do not include the nslookup or dig commands.So, what do you do when these tools…
Step 1: Nginx Deployment Update Create a ConfigMap nginx-configmap.yaml as shown below, replace the namespace with the namespace of your NGINX Ingress controller, and rename the keys_zone with your desired name. In this example, it is named test_cache. Once you have created the ConfigMap nginx-configmap.yaml, apply it by running the following command: Now edit the…
๐งฉ Problem Summary We encountered an issue while setting up HTTPS traffic from an AWS Application Load Balancer (ALB) to our NGINX Ingress Controller deployed in a private EKS cluster. Specifically: โ ๏ธ Symptoms โ๏ธ Initial Setup โ ALB Listener (Working Case) This worked because the NGINX Ingress was listening on HTTP internally, and the ALB…