Skip to content

Commit

Permalink
remove beta9 prefix from label value of worker
Browse files Browse the repository at this point in the history
  • Loading branch information
nickpetrovic committed Jan 24, 2024
1 parent 5c8760d commit bf79bb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/scheduler/pool_k8s.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ func (wpc *KubernetesWorkerPoolController) addWorkerWithId(workerId string, cpu
func (wpc *KubernetesWorkerPoolController) createWorkerJob(workerId string, cpu int64, memory int64, gpuType string) (*batchv1.Job, *types.Worker) {
jobName := fmt.Sprintf("%s-%s-%s", Beta9WorkerJobPrefix, wpc.name, workerId)
labels := map[string]string{
"app": "beta9-" + Beta9WorkerLabelValue,
"app": Beta9WorkerLabelValue,
Beta9WorkerLabelKey: Beta9WorkerLabelValue,
}

Expand Down

0 comments on commit bf79bb4

Please sign in to comment.