You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 10, 2023. It is now read-only.
TANZU_CLI_NO_INIT=true $(GO) run -ldflags "$(LD_FLAGS) -X 'github.com/vmware-tanzu/tanzu-framework/pkg/v1/config.DefaultStandaloneDiscoveryType=oci'" ./cmd/cli/tanzu/main.go plugin sync
411
411
412
412
.PHONY: set-unstable-versions
413
413
set-unstable-versions: ## Configures the unstable versions
414
414
TANZU_CLI_NO_INIT=true $(GO) run -ldflags "$(LD_FLAGS)" ./cmd/cli/tanzu/main.go config set unstable-versions $(TANZU_PLUGIN_UNSTABLE_VERSIONS)
415
415
416
-
.PHONY: set-context-aware-discovery
417
-
set-context-aware-discovery: ## Configures the context-aware-discovery feature flag
418
-
TANZU_CLI_NO_INIT=true $(GO) run -ldflags "$(LD_FLAGS)" ./cmd/cli/tanzu/main.go config set features.global.context-aware-discovery$(ENABLE_CONTEXT_AWARE_PLUGIN_DISCOVERY)
416
+
.PHONY: set-context-aware-cli-for-plugins
417
+
set-context-aware-cli-for-plugins: ## Configures the context-aware-cli-for-plugins-beta feature flag
418
+
TANZU_CLI_NO_INIT=true $(GO) run -ldflags "$(LD_FLAGS)" ./cmd/cli/tanzu/main.go config set features.global.context-aware-cli-for-plugins$(ENABLE_CONTEXT_AWARE_PLUGIN_DISCOVERY)
Copy file name to clipboardExpand all lines: docs/dev/build.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,6 +86,6 @@ For more detailed information on these APIs check out this [doc](../api-machiner
86
86
87
87
The Tanzu CLI is an amalgamation of all the Tanzu infrastructure elements under one unified core CLI experience. The core CLI supports a plugin model where the developers of different Tanzu services (bundled or SaaS) can distribute plugins that target functionalities of the services they own. When users switch between different services via the CLI context, we want to surface only the relevant plugins for the given context for a crisp user experience.
88
88
89
-
This feature is gated by `features.global.context-aware-discovery` CLI feature flag and can be turned on/off as described [here](../cli/config-features.md). When this feature is enabled, CLI will not automatically use already installed plugins with context-aware discovery and users will need to install plugins again with `tanzu plugin install` command.
89
+
This feature is gated by `features.global.context-aware-cli-for-plugins` CLI feature flag and can be turned on/off as described [here](../cli/config-features.md). When this feature is enabled, CLI will not automatically use already installed plugins with context-aware discovery and users will need to install plugins again with `tanzu plugin install` command.
90
90
91
91
For more detailed information on these design check out this [doc](../design/context-aware-plugin-discovery.md)
0 commit comments