DevOps Projects

🚀 Professional Journey Overview Infrastructure as Code | Cloud Native Solutions | Continuous Delivery With 8+ years in DevOps engineering, I specialize in building scalable, resilient infrastructure and automating complex deployment pipelines. My expertise spans across multi-cloud environments, container orchestration, and implementing robust DevOps practices. 💼 Featured Projects 🔥 Current Active Projects Project: Hetzner Cloud Microservices Platform Timeline: 2024 - Present Type: Personal Technologies: Ansible, Terraform, Hetzner Cloud, GitLab CI, Podman, Packer, Devbox tool, Task framework Categories: infrastructure, automation, cloud Tags: #infrastructure #automation #cloud #hetzner #devops ...

Goland CORS, logs and healtcheck

In this guide, we’ll walk through how to create CORS (Cross-Origin Resource Sharing) and a health check endpoint in a Golang application using the Chi router. Setting Up Chi and CORS Middleware We’ll use the go-chi/chi and go-chi/cors packages to handle routing and CORS in our application. Step 1: Import Required Packages First, make sure to import the necessary packages: import ( "fmt" "net/http" "log" "github.com/go-chi/chi" "github.com/go-chi/chi/middleware" "github.com/go-chi/cors" AdminMiddleware "github.com/project/api/middleware" "github.com/project/api/services" "gorm.io/gorm" ) Step 2: Define the CORS AllowOriginFunc We’ll define a function to specify the allowed origins for CORS. This function also logs disallowed origins: ...

2024-06-01 Â· map[name:Jose Castrillo]