2025-10-07 10:32:04 +01:00
|
|
|
|
# Taskserv Dependency Validator
|
|
|
|
|
|
# Validates taskserv dependencies, conflicts, and requirements
|
|
|
|
|
|
|
|
|
|
|
|
use lib_provisioning *
|
|
|
|
|
|
use utils.nu *
|
|
|
|
|
|
use ../lib_provisioning/config/accessor.nu *
|
|
|
|
|
|
|
chore: complete KCL to Nickel migration cleanup and setup pre-commit
Clean up 404 KCL references (99.75% complete):
- Rename kcl_* variables to schema_*/nickel_* (kcl_path→schema_path, etc.)
- Update functions: parse_kcl_file→parse_nickel_file
- Update env vars: KCL_MOD_PATH→NICKEL_IMPORT_PATH
- Fix cli/providers-install: add has_nickel and nickel_version variables
- Correct import syntax: .nickel.→.ncl.
- Update 57 files across core, CLI, config, and utilities
Configure pre-commit hooks:
- Activate: nushell-check, nickel-typecheck, markdownlint
- Comment out: Rust hooks (fmt, clippy, test), check-yaml
Testing:
- Module discovery: 9 modules (6 providers, 1 taskserv, 2 clusters) ✅
- Syntax validation: 15 core files ✅
- Pre-commit hooks: all passing ✅
2026-01-08 20:08:46 +00:00
|
|
|
|
# Validate taskserv dependencies from Nickel definition
|
2025-10-07 10:32:04 +01:00
|
|
|
|
export def validate-dependencies [
|
|
|
|
|
|
taskserv_name: string
|
|
|
|
|
|
settings: record
|
|
|
|
|
|
--verbose (-v)
|
2026-01-14 02:00:23 +00:00
|
|
|
|
] {
|
2025-10-07 10:32:04 +01:00
|
|
|
|
let taskservs_path = (get-taskservs-path)
|
chore: complete KCL to Nickel migration cleanup and setup pre-commit
Clean up 404 KCL references (99.75% complete):
- Rename kcl_* variables to schema_*/nickel_* (kcl_path→schema_path, etc.)
- Update functions: parse_kcl_file→parse_nickel_file
- Update env vars: KCL_MOD_PATH→NICKEL_IMPORT_PATH
- Fix cli/providers-install: add has_nickel and nickel_version variables
- Correct import syntax: .nickel.→.ncl.
- Update 57 files across core, CLI, config, and utilities
Configure pre-commit hooks:
- Activate: nushell-check, nickel-typecheck, markdownlint
- Comment out: Rust hooks (fmt, clippy, test), check-yaml
Testing:
- Module discovery: 9 modules (6 providers, 1 taskserv, 2 clusters) ✅
- Syntax validation: 15 core files ✅
- Pre-commit hooks: all passing ✅
2026-01-08 20:08:46 +00:00
|
|
|
|
let taskserv_schema_path = ($taskservs_path | path join $taskserv_name "nickel")
|
2025-10-07 10:32:04 +01:00
|
|
|
|
|
chore: complete KCL to Nickel migration cleanup and setup pre-commit
Clean up 404 KCL references (99.75% complete):
- Rename kcl_* variables to schema_*/nickel_* (kcl_path→schema_path, etc.)
- Update functions: parse_kcl_file→parse_nickel_file
- Update env vars: KCL_MOD_PATH→NICKEL_IMPORT_PATH
- Fix cli/providers-install: add has_nickel and nickel_version variables
- Correct import syntax: .nickel.→.ncl.
- Update 57 files across core, CLI, config, and utilities
Configure pre-commit hooks:
- Activate: nushell-check, nickel-typecheck, markdownlint
- Comment out: Rust hooks (fmt, clippy, test), check-yaml
Testing:
- Module discovery: 9 modules (6 providers, 1 taskserv, 2 clusters) ✅
- Syntax validation: 15 core files ✅
- Pre-commit hooks: all passing ✅
2026-01-08 20:08:46 +00:00
|
|
|
|
# Check if taskserv has dependencies.ncl
|
|
|
|
|
|
let deps_file = ($taskserv_schema_path | path join "dependencies.ncl")
|
2025-10-07 10:32:04 +01:00
|
|
|
|
|
|
|
|
|
|
if not ($deps_file | path exists) {
|
|
|
|
|
|
return {
|
|
|
|
|
|
valid: true
|
|
|
|
|
|
taskserv: $taskserv_name
|
|
|
|
|
|
has_dependencies: false
|
|
|
|
|
|
warnings: []
|
|
|
|
|
|
errors: []
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if $verbose {
|
|
|
|
|
|
_print $"Validating dependencies for (_ansi yellow_bold)($taskserv_name)(_ansi reset)..."
|
|
|
|
|
|
}
|
|
|
|
|
|
|
chore: complete KCL to Nickel migration cleanup and setup pre-commit
Clean up 404 KCL references (99.75% complete):
- Rename kcl_* variables to schema_*/nickel_* (kcl_path→schema_path, etc.)
- Update functions: parse_kcl_file→parse_nickel_file
- Update env vars: KCL_MOD_PATH→NICKEL_IMPORT_PATH
- Fix cli/providers-install: add has_nickel and nickel_version variables
- Correct import syntax: .nickel.→.ncl.
- Update 57 files across core, CLI, config, and utilities
Configure pre-commit hooks:
- Activate: nushell-check, nickel-typecheck, markdownlint
- Comment out: Rust hooks (fmt, clippy, test), check-yaml
Testing:
- Module discovery: 9 modules (6 providers, 1 taskserv, 2 clusters) ✅
- Syntax validation: 15 core files ✅
- Pre-commit hooks: all passing ✅
2026-01-08 20:08:46 +00:00
|
|
|
|
# Run Nickel to extract dependency information
|
|
|
|
|
|
let decl_result = (do {
|
|
|
|
|
|
nickel export $deps_file --format json | from json
|
2025-12-11 21:57:05 +00:00
|
|
|
|
} | complete)
|
|
|
|
|
|
|
chore: complete KCL to Nickel migration cleanup and setup pre-commit
Clean up 404 KCL references (99.75% complete):
- Rename kcl_* variables to schema_*/nickel_* (kcl_path→schema_path, etc.)
- Update functions: parse_kcl_file→parse_nickel_file
- Update env vars: KCL_MOD_PATH→NICKEL_IMPORT_PATH
- Fix cli/providers-install: add has_nickel and nickel_version variables
- Correct import syntax: .nickel.→.ncl.
- Update 57 files across core, CLI, config, and utilities
Configure pre-commit hooks:
- Activate: nushell-check, nickel-typecheck, markdownlint
- Comment out: Rust hooks (fmt, clippy, test), check-yaml
Testing:
- Module discovery: 9 modules (6 providers, 1 taskserv, 2 clusters) ✅
- Syntax validation: 15 core files ✅
- Pre-commit hooks: all passing ✅
2026-01-08 20:08:46 +00:00
|
|
|
|
if $decl_result.exit_code != 0 {
|
2025-10-07 10:32:04 +01:00
|
|
|
|
return {
|
|
|
|
|
|
valid: false
|
|
|
|
|
|
taskserv: $taskserv_name
|
|
|
|
|
|
has_dependencies: true
|
|
|
|
|
|
warnings: []
|
chore: complete KCL to Nickel migration cleanup and setup pre-commit
Clean up 404 KCL references (99.75% complete):
- Rename kcl_* variables to schema_*/nickel_* (kcl_path→schema_path, etc.)
- Update functions: parse_kcl_file→parse_nickel_file
- Update env vars: KCL_MOD_PATH→NICKEL_IMPORT_PATH
- Fix cli/providers-install: add has_nickel and nickel_version variables
- Correct import syntax: .nickel.→.ncl.
- Update 57 files across core, CLI, config, and utilities
Configure pre-commit hooks:
- Activate: nushell-check, nickel-typecheck, markdownlint
- Comment out: Rust hooks (fmt, clippy, test), check-yaml
Testing:
- Module discovery: 9 modules (6 providers, 1 taskserv, 2 clusters) ✅
- Syntax validation: 15 core files ✅
- Pre-commit hooks: all passing ✅
2026-01-08 20:08:46 +00:00
|
|
|
|
errors: [$"Failed to parse dependencies.ncl: ($decl_result.stderr)"]
|
2025-10-07 10:32:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
chore: complete KCL to Nickel migration cleanup and setup pre-commit
Clean up 404 KCL references (99.75% complete):
- Rename kcl_* variables to schema_*/nickel_* (kcl_path→schema_path, etc.)
- Update functions: parse_kcl_file→parse_nickel_file
- Update env vars: KCL_MOD_PATH→NICKEL_IMPORT_PATH
- Fix cli/providers-install: add has_nickel and nickel_version variables
- Correct import syntax: .nickel.→.ncl.
- Update 57 files across core, CLI, config, and utilities
Configure pre-commit hooks:
- Activate: nushell-check, nickel-typecheck, markdownlint
- Comment out: Rust hooks (fmt, clippy, test), check-yaml
Testing:
- Module discovery: 9 modules (6 providers, 1 taskserv, 2 clusters) ✅
- Syntax validation: 15 core files ✅
- Pre-commit hooks: all passing ✅
2026-01-08 20:08:46 +00:00
|
|
|
|
let result = $decl_result.stdout
|
2025-12-11 21:57:05 +00:00
|
|
|
|
|
2025-10-07 10:32:04 +01:00
|
|
|
|
# Extract dependency information
|
2026-01-17 03:57:20 +00:00
|
|
|
|
let deps = ($result | get -o _dependencies)
|
|
|
|
|
|
if ($deps | is-empty) {
|
2025-10-07 10:32:04 +01:00
|
|
|
|
return {
|
|
|
|
|
|
valid: true
|
|
|
|
|
|
taskserv: $taskserv_name
|
|
|
|
|
|
has_dependencies: false
|
chore: complete KCL to Nickel migration cleanup and setup pre-commit
Clean up 404 KCL references (99.75% complete):
- Rename kcl_* variables to schema_*/nickel_* (kcl_path→schema_path, etc.)
- Update functions: parse_kcl_file→parse_nickel_file
- Update env vars: KCL_MOD_PATH→NICKEL_IMPORT_PATH
- Fix cli/providers-install: add has_nickel and nickel_version variables
- Correct import syntax: .nickel.→.ncl.
- Update 57 files across core, CLI, config, and utilities
Configure pre-commit hooks:
- Activate: nushell-check, nickel-typecheck, markdownlint
- Comment out: Rust hooks (fmt, clippy, test), check-yaml
Testing:
- Module discovery: 9 modules (6 providers, 1 taskserv, 2 clusters) ✅
- Syntax validation: 15 core files ✅
- Pre-commit hooks: all passing ✅
2026-01-08 20:08:46 +00:00
|
|
|
|
warnings: ["dependencies.ncl exists but no _dependencies defined"]
|
2025-10-07 10:32:04 +01:00
|
|
|
|
errors: []
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-17 03:57:20 +00:00
|
|
|
|
let requires = ($deps | get -o requires | default [])
|
|
|
|
|
|
let optional = ($deps | get -o optional | default [])
|
|
|
|
|
|
let conflicts = ($deps | get -o conflicts | default [])
|
2025-10-07 10:32:04 +01:00
|
|
|
|
|
|
|
|
|
|
mut warnings = []
|
|
|
|
|
|
mut errors = []
|
|
|
|
|
|
|
|
|
|
|
|
# Validate required dependencies
|
|
|
|
|
|
for req in $requires {
|
|
|
|
|
|
let req_path = ($taskservs_path | path join $req)
|
|
|
|
|
|
if not ($req_path | path exists) {
|
|
|
|
|
|
$errors = ($errors | append $"Required dependency not found: ($req)")
|
|
|
|
|
|
} else if $verbose {
|
|
|
|
|
|
_print $" ✓ Required: ($req)"
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Check optional dependencies
|
|
|
|
|
|
for opt in $optional {
|
|
|
|
|
|
let opt_path = ($taskservs_path | path join $opt)
|
|
|
|
|
|
if not ($opt_path | path exists) {
|
|
|
|
|
|
$warnings = ($warnings | append $"Optional dependency not available: ($opt)")
|
|
|
|
|
|
} else if $verbose {
|
|
|
|
|
|
_print $" ℹ Optional: ($opt)"
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Validate conflicts
|
|
|
|
|
|
for conf in $conflicts {
|
|
|
|
|
|
let conf_path = ($taskservs_path | path join $conf)
|
|
|
|
|
|
if ($conf_path | path exists) {
|
|
|
|
|
|
$warnings = ($warnings | append $"Conflicting taskserv installed: ($conf)")
|
|
|
|
|
|
} else if $verbose {
|
|
|
|
|
|
_print $" ✓ No conflict: ($conf)"
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Validate resource requirements
|
2026-01-17 03:57:20 +00:00
|
|
|
|
let resource_req = ($deps | get -o resource_requirements)
|
|
|
|
|
|
if ($resource_req | is-not-empty) {
|
|
|
|
|
|
let min_memory = ($resource_req | get -o min_memory | default 0)
|
|
|
|
|
|
let min_cores = ($resource_req | get -o min_cores | default 0)
|
|
|
|
|
|
let min_disk = ($resource_req | get -o min_disk | default 0)
|
2025-10-07 10:32:04 +01:00
|
|
|
|
|
|
|
|
|
|
if $verbose {
|
2026-01-17 03:57:20 +00:00
|
|
|
|
_print $" Resources: CPU($min_cores) MEM($min_memory)GB DISK($min_disk)GB"
|
2025-10-07 10:32:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-17 03:57:20 +00:00
|
|
|
|
# Check health check configuration
|
|
|
|
|
|
let health_check = ($deps | get -o health_check)
|
|
|
|
|
|
if ($health_check | is-not-empty) {
|
|
|
|
|
|
let endpoint = ($health_check | get -o endpoint | default "")
|
|
|
|
|
|
let timeout = ($health_check | get -o timeout | default 30)
|
|
|
|
|
|
let interval = ($health_check | get -o interval | default 10)
|
2025-10-07 10:32:04 +01:00
|
|
|
|
|
2026-01-17 03:57:20 +00:00
|
|
|
|
if $verbose {
|
|
|
|
|
|
let health_msg = $" Health: ($endpoint) (timeout=($timeout|into string) interval=($interval|into string))"
|
|
|
|
|
|
_print $health_msg
|
2025-10-07 10:32:04 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-17 03:57:20 +00:00
|
|
|
|
{
|
|
|
|
|
|
valid: ($errors | is-empty)
|
2025-10-07 10:32:04 +01:00
|
|
|
|
taskserv: $taskserv_name
|
|
|
|
|
|
has_dependencies: true
|
2026-01-17 03:57:20 +00:00
|
|
|
|
warnings: $warnings
|
|
|
|
|
|
errors: $errors
|
2025-10-07 10:32:04 +01:00
|
|
|
|
requires: $requires
|
|
|
|
|
|
optional: $optional
|
|
|
|
|
|
conflicts: $conflicts
|
|
|
|
|
|
}
|
chore: complete KCL to Nickel migration cleanup and setup pre-commit
Clean up 404 KCL references (99.75% complete):
- Rename kcl_* variables to schema_*/nickel_* (kcl_path→schema_path, etc.)
- Update functions: parse_kcl_file→parse_nickel_file
- Update env vars: KCL_MOD_PATH→NICKEL_IMPORT_PATH
- Fix cli/providers-install: add has_nickel and nickel_version variables
- Correct import syntax: .nickel.→.ncl.
- Update 57 files across core, CLI, config, and utilities
Configure pre-commit hooks:
- Activate: nushell-check, nickel-typecheck, markdownlint
- Comment out: Rust hooks (fmt, clippy, test), check-yaml
Testing:
- Module discovery: 9 modules (6 providers, 1 taskserv, 2 clusters) ✅
- Syntax validation: 15 core files ✅
- Pre-commit hooks: all passing ✅
2026-01-08 20:08:46 +00:00
|
|
|
|
}
|