The hottest CI/CD Substack posts right now

And their main takeaways
Category
Top Technology Topics
Software Engineering Tidbits 255 implied HN points 26 Apr 23
  1. Ensure all necessary steps are taken before landing a pull request to the main branch, such as passing all tests and code reviews.
  2. Deploy new software versions gradually to production, starting with a small number of machines first.
  3. Consider implementing CI/CD for continuous deployment to improve observability, but balance it with on-demand deployments to ensure all changes are attended to.
Data Engineering Central 137 implied HN points 24 Jul 23
  1. Data Engineers may have a love-hate relationship with AWS Lambdas due to their versatility but occasional limitations.
  2. AWS Lambdas are under-utilized in Data Engineering but offer benefits like cheap solutions, ease of use, and driving better practices.
  3. AWS Lambdas are handy for processing small datasets, running data quality checks, and executing quick logic while reducing architecture complexity and cost.
Certo Modo 0 implied HN points 30 Oct 23
  1. Drone CI is a self-service Continuous Integration platform that simplifies CI pipeline configuration by using a .drone.yml file in the project's root directory.
  2. Make sure the Drone service is public-facing with port 443 accessible, and use a read-through cache with Docker to ensure resilience to Docker Hub outages.
  3. Add yourself as an administrator to new Drone installations to have full access to API features, set up cron interval as needed, and utilize the CLI tool for more advanced capabilities.
Get a weekly roundup of the best Substack posts, by hacker news affinity:
Certo Modo 0 implied HN points 19 Sep 23
  1. Consider alternatives to Jenkins for new software projects due to limitations in plugin complexity.
  2. Evaluate your R&D department's expertise and resources to manage Jenkins installation and perform updates.
  3. Assess the security risks and maintenance requirements of Jenkins installations to prevent potential breaches.
AnyCable Broadcasts 0 implied HN points 01 Mar 23
  1. The project successfully migrated a critical GPS tracking service from Elixir to AnyCable, enabling real-time features and smoother maintenance.
  2. The team optimized the infrastructure using AWS ECS, Fargate, and CloudFormation, delivering improvements in performance, scalability, and resource management.
  3. AnyCable deployment was streamlined within the project's infrastructure, bringing in monitoring features and helping speed up the CI/CD pipeline.
DevCube 0 implied HN points 10 Apr 23
  1. Building docker images can be time-consuming, especially in CI/CD pipelines.
  2. To speed up the process, consider using cache, layering your Dockerfile, and utilizing multi-stage builds.
  3. Ensure your Dockerfile is correctly set up, specifying versions, exposing necessary ports, and addressing platform compatibility.
Certo Modo 0 implied HN points 14 Nov 23
  1. Each pipeline step in DroneCI can use different container images, allowing for versatile tasks like testing across multiple platforms.
  2. Base64 encoding secrets in DroneCI is a useful technique for securely handling sensitive information like SSH keys.
  3. Monitoring DroneCI pipelines can be enhanced by utilizing Prometheus to track status, duration, and using a Push Gateway to export build metrics.