scheduler: doc.go files for new packages (#26177)

This commit is contained in:
Piotr Kazmierczak
2025-07-01 16:28:33 +02:00
committed by GitHub
parent 63f0788747
commit 36e7148247
4 changed files with 23 additions and 0 deletions

6
scheduler/doc.go Normal file
View File

@@ -0,0 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
// Package scheduler defines Nomad schedulers for service, batch, system, and
// sysbatch job types.
package scheduler

View File

@@ -0,0 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
// Package feasible contains the logic of picking the correct node(s) by the
// scheduler: eligibiligy, feasibility checking and ranking
package feasible

View File

@@ -0,0 +1,5 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
// Package reconciler contains the reconciliation logic for all scheduler types.
package reconciler

6
scheduler/structs/doc.go Normal file
View File

@@ -0,0 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
// Package structs contains definitions of shared objects, constants, and
// top-level interfaces for the scheduler.
package structs