From 3a588d21ed61b892fbab9031efe813938b5a6f24 Mon Sep 17 00:00:00 2001 From: Adam Lewis <23342526+Adam-D-Lewis@users.noreply.github.com> Date: Mon, 3 Feb 2025 18:55:08 -0600 Subject: [PATCH] save progress --- src/_nebari/subcommands/init.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/_nebari/subcommands/init.py b/src/_nebari/subcommands/init.py index c2f8d416e9..996d3a453e 100644 --- a/src/_nebari/subcommands/init.py +++ b/src/_nebari/subcommands/init.py @@ -416,6 +416,7 @@ def check_cloud_provider_region(region: str, cloud_provider: str) -> str: def nebari_subcommand(cli: typer.Typer): @cli.command() def init( + ctx: typer.Context, cloud_provider: ProviderEnum = typer.Argument( ProviderEnum.local, help=f"options: {enum_to_list(ProviderEnum)}", @@ -568,6 +569,9 @@ def init( from nebari.plugins import nebari_plugin_manager + # I can call the `config_set hook here` + nebari_plugin_manager.plugin_manager.hook.nebari_config_set(inputs.config_set) + handle_init(inputs, config_schema=nebari_plugin_manager.config_schema) nebari_plugin_manager.read_config(output)