Fixed the issue with app builds onprem not working

This commit is contained in:
Frikky
2025-09-04 00:43:09 +02:00
parent 1b63e6cba6
commit 744d8d6b7f
7 changed files with 25 additions and 18 deletions
+5 -3
View File
@@ -1302,8 +1302,7 @@ func getWorkerURLs() ([]string, error) {
// }
// }
// }
log.Printf("[DEBUG] Worker URLs for k8s: %#v", workerUrls)
//log.Printf("[DEBUG] Worker URLs for k8s: %#v", workerUrls)
return workerUrls, nil
}
@@ -3615,7 +3614,10 @@ func findAppInfoKubernetes(image, name string, env []string) error {
for _, deployment := range deployments.Items {
if deployment.Name == name {
log.Printf("[INFO] Found deployment %s - no need to deploy another", name)
if debug {
log.Printf("[DEBUG] Found deployment %s - no need to deploy another", name)
}
return nil
}
}