Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/_nebari/subcommands/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)}",
Expand Down Expand Up @@ -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)
Expand Down
Loading