prvng_core/nulib/main_provisioning/update.nu
Jesús Pérez 894046ef5a
feat(core): three-layer DAG, unified component arch, commands-registry cache, Nushell 0.112.2 migration
- DAG architecture: `dag show/validate/export` (nulib/main_provisioning/dag.nu),
    config loader (lib_provisioning/config/loader/dag.nu), taskserv dag-executor.
    Backed by schemas/lib/dag/*.ncl; orchestrator emits NATS events via
    WorkspaceComposition::into_workflow. See ADR-020, ADR-021.
  - Unified Component Architecture: components/mod.nu, main_provisioning/
    {components,workflow,extensions,ontoref-queries}.nu. Full workflow engine with
    topological sort and NATS subject emission. Blocks A-H complete (libre-daoshi).
  - Commands-registry: nulib/commands-registry.ncl (Nickel source, 314 lines) +
    JSON cache at ~/.cache/provisioning/commands-registry.json rebuilt on source
    change. cli/provisioning fast-path alias expansion avoids cold Nu startup.
    ADDING_COMMANDS.md documents new-command workflow.
  - Platform service manager: service-manager.nu (+573), startup.nu (+611),
    service-check.nu (+255); autostart/bootstrap/health/target refactored.
  - Nushell 0.112.2 migration: removed all try/catch and bash redirections;
    external commands prefixed with ^; type signatures enforced. Driven by
    scripts/refactor-try-catch{,-simplified}.nu.
  - TTY stack: removed shlib/*-tty.sh; replaced by cli/tty-dispatch.sh,
    tty-filter.sh, tty-commands.conf.
  - New domain modules: images/ (golden image lifecycle), workspace/{state,sync}.nu,
    main_provisioning/{bootstrap,cluster-deploy,fip,state}.nu, commands/{state,
    build,integrations/auth,utilities/alias}.nu, platform.nu expanded (+874).
  - Config loader overhaul: loader/core.nu slimmed (-759), cache/core.nu
    refactored (-454), removed legacy loaders/file_loader.nu (-330).
  - Thirteen new provisioning-<domain>.nu top-level modules for bash dispatcher.
  - Tests: test_workspace_state.nu (+351); updates to test_oci_registry,
    test_services.
  - README + CHANGELOG updated.
2026-04-17 04:27:33 +01:00

89 lines
4 KiB
Text

# REMOVED: use lib_provisioning * - causes circular import (already loaded by main provisioning script)
use utils.nu *
use handlers.nu *
use ../lib_provisioning/utils/ssh.nu *
use ../lib_provisioning/config/accessor.nu *
# Provider middleware now available through lib_provisioning
# > TaskServs update
export def "main update" [
name?: string # task in settings
server?: string # Server hostname in settings
...args # Args for update command
--infra (-i): string # Infra directory
--settings (-s): string # Settings path
--iptype: string = "public" # Ip type to connect
--outfile (-o): string # Output file
--taskserv_pos (-p): int # Server position in settings
--check (-c) # Only check mode no taskservs will be created
--wait (-w) # Wait taskservs to be updated
--select: string # Select with task as option
--debug (-x) # Use Debug mode
--xm # Debug with PROVISIONING_METADATA
--xc # Debuc for task and services locally PROVISIONING_DEBUG_CHECK
--xr # Debug for remote taskservs PROVISIONING_DEBUG_REMOTE
--xld # Log level with DEBUG PROVISIONING_LOG_LEVEL=debug
--metadata # Error with metadata (-xm)
--notitles # not tittles
--helpinfo (-h) # For more details use options "help" (no dashes)
--out: string # Print Output format: json, yaml, text (default)
] {
if ($out | is-not-empty) {
set-provisioning-out $out
set-provisioning-no-terminal true
}
provisioning_init $helpinfo "taskserv update" $args
if $debug { set-debug-enabled true }
if $metadata { set-metadata-enabled true }
let curr_settings = (find_get_settings --infra $infra --settings $settings)
let task = if ($args | length) > 0 {
($args| get 0)
} else {
let str_task = ((get-provisioning-args) | str replace "update " " " )
let str_task = if $name != null {
($str_task | str replace $name "")
} else {
$str_task
}
($str_task | str trim | split row " " | first | default "" | split row "-" | first | default "" | str trim)
}
let other = if ($args | length) > 0 { ($args| skip 1) } else { "" }
let ops = $"((get-provisioning-args)) " | str replace $"($task) " "" | str trim
let run_update = {
let curr_settings = (settings_with_env (find_get_settings --infra $infra --settings $settings))
set-wk-cnprov $curr_settings.wk_path
let arr_task = if $name == null or $name == "" or $name == $task { [] } else { $name | split row "/" }
let match_task = if ($arr_task | length) == 0 {
""
} else {
let mt_result = (do { $arr_task | get 0 } | complete)
if $mt_result.exit_code == 0 { $mt_result.stdout } else { null }
}
let match_task_profile = if ($arr_task | length) < 2 {
""
} else {
let mtp_result = (do { $arr_task | get 1 } | complete)
if $mtp_result.exit_code == 0 { $mtp_result.stdout } else { null }
}
let match_server = if $server == null or $server == "" { "" } else { $server}
on_taskservs $curr_settings $match_task $match_task_profile $match_server $iptype $check
}
match $task {
"" if $name == "h" => {
^$"((get-provisioning-name))" -mod taskserv update help --notitles
},
"" if $name == "help" => {
^$"((get-provisioning-name))" -mod taskserv update --help
print (provisioning_options "update")
},
"" | "u" | "update" => {
let result = desktop_run_notify $"((get-provisioning-name)) taskservs update" "-> " $run_update --timeout 11sec
#do $run_update
},
_ => {
if $task != "" { print $"🛑 invalid_option ($task)" }
_print $"\nUse (_ansi blue_bold)((get-provisioning-name)) -h(_ansi reset) for help on commands and options"
}
}
if not (is-debug-enabled) { end_run "" }
}