-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
clusterctl: Add move --to-folder and --from-folder flags
These flags perform the same actions clusterctl backup and restore commands. Also adds deprecation warning to clusterctl backup and restore.
- Loading branch information
Showing
8 changed files
with
153 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
# clusterctl commands | ||
|
||
| Command | Description | | ||
|------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------| | ||
| [`clusterctl alpha rollout`](alpha-rollout.md) | Manages the rollout of Cluster API resources. For example: MachineDeployments. | | ||
| [`clusterctl alpha topology plan`](alpha-topology-plan.md) | Describes the changes to a cluster topology for a given input. | | ||
| [`clusterctl backup`](additional-commands.md#clusterctl-backup) | Backup Cluster API objects and all their dependencies from a management cluster. | | ||
| [`clusterctl completion`](completion.md) | Output shell completion code for the specified shell (bash or zsh). | | ||
| [`clusterctl config`](additional-commands.md#clusterctl-config-repositories) | Display clusterctl configuration. | | ||
| [`clusterctl delete`](delete.md) | Delete one or more providers from the management cluster. | | ||
| [`clusterctl describe cluster`](describe-cluster.md) | Describe workload clusters. | | ||
| [`clusterctl generate cluster`](generate-cluster.md) | Generate templates for creating workload clusters. | | ||
| [`clusterctl generate provider`](generate-provider.md) | Generate templates for provider components. | | ||
| [`clusterctl generate yaml`](generate-yaml.md) | Process yaml using clusterctl's yaml processor. | | ||
| [`clusterctl get kubeconfig`](get-kubeconfig.md) | Gets the kubeconfig file for accessing a workload cluster. | | ||
| [`clusterctl help`](additional-commands.md#clusterctl-help) | Help about any command. | | ||
| [`clusterctl init`](init.md) | Initialize a management cluster. | | ||
| [`clusterctl move`](move.md) | Move Cluster API objects and all their dependencies between management clusters. | | ||
| [`clusterctl restore`](additional-commands.md#clusterctl-restore) | Restore Cluster API objects from file by glob. | | ||
| [`clusterctl upgrade plan`](upgrade.md#upgrade-plan) | Provide a list of recommended target versions for upgrading Cluster API providers in a management cluster. | | ||
| [`clusterctl upgrade apply`](upgrade.md#upgrade-apply) | Apply new versions of Cluster API core and providers in a management cluster. | | ||
| [`clusterctl version`](additional-commands.md#clusterctl-version) | Print clusterctl version. | | ||
| Command | Description | | ||
|------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------| | ||
| [`clusterctl alpha rollout`](alpha-rollout.md) | Manages the rollout of Cluster API resources. For example: MachineDeployments. | | ||
| [`clusterctl alpha topology plan`](alpha-topology-plan.md) | Describes the changes to a cluster topology for a given input. | | ||
| [`clusterctl backup`](additional-commands.md#clusterctl-backup) | Backup Cluster API objects and all their dependencies from a management cluster. **DEPRECATED. Please use `clusterctl move --to-folder` instead.** | | ||
| [`clusterctl completion`](completion.md) | Output shell completion code for the specified shell (bash or zsh). | | ||
| [`clusterctl config`](additional-commands.md#clusterctl-config-repositories) | Display clusterctl configuration. | | ||
| [`clusterctl delete`](delete.md) | Delete one or more providers from the management cluster. | | ||
| [`clusterctl describe cluster`](describe-cluster.md) | Describe workload clusters. | | ||
| [`clusterctl generate cluster`](generate-cluster.md) | Generate templates for creating workload clusters. | | ||
| [`clusterctl generate provider`](generate-provider.md) | Generate templates for provider components. | | ||
| [`clusterctl generate yaml`](generate-yaml.md) | Process yaml using clusterctl's yaml processor. | | ||
| [`clusterctl get kubeconfig`](get-kubeconfig.md) | Gets the kubeconfig file for accessing a workload cluster. | | ||
| [`clusterctl help`](additional-commands.md#clusterctl-help) | Help about any command. | | ||
| [`clusterctl init`](init.md) | Initialize a management cluster. | | ||
| [`clusterctl move`](move.md) | Move Cluster API objects and all their dependencies between management clusters. | | ||
| [`clusterctl restore`](additional-commands.md#clusterctl-restore) | Restore Cluster API objects from file by glob. **DEPRECATED. Please use `clusterctl move --from-folder` instead.** | | ||
| [`clusterctl upgrade plan`](upgrade.md#upgrade-plan) | Provide a list of recommended target versions for upgrading Cluster API providers in a management cluster. | | ||
| [`clusterctl upgrade apply`](upgrade.md#upgrade-apply) | Apply new versions of Cluster API core and providers in a management cluster. | | ||
| [`clusterctl version`](additional-commands.md#clusterctl-version) | Print clusterctl version. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters