Correct Tags
Some checks failed
CI Pipeline for the Go API / CD - Kubernetes Smoke Test (push) Successful in 7s
CI Pipeline for the Go API / CI - Go Vet (basic static check) (push) Successful in 9s
CI Pipeline for the Go API / CI - Docker Image Build Test (push) Successful in 18s
CI Pipeline for the Go API / CI - Go Build & Cross-Compile (push) Successful in 31s
CI Pipeline for the Go API / Push Image to Gitea Registry (push) Successful in 17s
CI Pipeline for the Go API / Kubernetes Deployment (push) Failing after 4m5s

This commit is contained in:
2025-10-05 22:39:06 +02:00
parent 02364e8268
commit cd4864dad5
2 changed files with 30 additions and 23 deletions

View File

@@ -22,7 +22,7 @@ type AddResponse struct {
func healthHandler(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(HealthResponse{Status: "healthy"})
json.NewEncoder(w).Encode(HealthResponse{Status: "oke"})
}
func addHandler(w http.ResponseWriter, r *http.Request) {