Skip to content

Commit

Permalink
Fix bug which caused challenges missed by the webhooks to be missed
Browse files Browse the repository at this point in the history
Fix incorrect label selector which prevents background sync from picking up juice shop instances
  • Loading branch information
Jannik Hollenbach authored and Jannik Hollenbach committed Sep 29, 2024
1 parent 8179390 commit dc28bb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion progress-watchdog/internal/background-sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ func createProgressUpdateJobs(progressUpdateJobs chan<- ProgressUpdateJobs, clie
// Get Instances
log.Info("Looking for Instances")
opts := metav1.ListOptions{
LabelSelector: "app=juice-shop",
LabelSelector: "app.kubernetes.io/name=juice-shop",
}

namespace := os.Getenv("NAMESPACE")
Expand Down

0 comments on commit dc28bb7

Please sign in to comment.