mirror of https://github.com/databricks/cli.git
39 lines
1.2 KiB
Go
39 lines
1.2 KiB
Go
package mutator
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/databricks/cli/bundle"
|
|
"github.com/databricks/cli/bundle/config"
|
|
"github.com/databricks/cli/bundle/config/loader"
|
|
pythonmutator "github.com/databricks/cli/bundle/config/mutator/python"
|
|
"github.com/databricks/cli/bundle/config/validate"
|
|
"github.com/databricks/cli/bundle/scripts"
|
|
"github.com/databricks/cli/libs/diag"
|
|
)
|
|
|
|
func DefaultMutators(ctx context.Context, b *bundle.Bundle) diag.Diagnostics {
|
|
return bundle.ApplySeq(ctx, b,
|
|
loader.EntryPoint(),
|
|
|
|
// Execute preinit script before processing includes.
|
|
// It needs to be done before processing configuration files to allow
|
|
// the script to modify the configuration or add own configuration files.
|
|
scripts.Execute(config.ScriptPreInit),
|
|
loader.ProcessRootIncludes(),
|
|
|
|
// Verify that the CLI version is within the specified range.
|
|
VerifyCliVersion(),
|
|
|
|
EnvironmentsToTargets(),
|
|
ComputeIdToClusterId(),
|
|
InitializeVariables(),
|
|
DefineDefaultTarget(),
|
|
pythonmutator.PythonMutator(pythonmutator.PythonMutatorPhaseLoad),
|
|
|
|
// Note: This mutator must run before the target overrides are merged.
|
|
// See the mutator for more details.
|
|
validate.UniqueResourceKeys(),
|
|
)
|
|
}
|