diff --git a/distributedcloud-client/dcmanagerclient/commands/v1/kube_rootca_update_manager.py b/distributedcloud-client/dcmanagerclient/commands/v1/kube_rootca_update_manager.py index 0211941c..a14a45d4 100644 --- a/distributedcloud-client/dcmanagerclient/commands/v1/kube_rootca_update_manager.py +++ b/distributedcloud-client/dcmanagerclient/commands/v1/kube_rootca_update_manager.py @@ -38,6 +38,12 @@ class CreateKubeRootcaUpdateStrategy( parser.add_argument( "--cert-file", required=False, help="Path to a certificate to upload." ) + parser.add_argument( + "--force", + required=False, + action="store_true", + help="Allow update even with in-sync endpoint status.", + ) return parser @@ -51,6 +57,8 @@ class CreateKubeRootcaUpdateStrategy( if parsed_args.cert_file: # Need an absolute path for the cert-file kwargs_dict["cert-file"] = os.path.abspath(parsed_args.cert_file) + if parsed_args.force: + kwargs_dict["force"] = "true" class ShowKubeRootcaUpdateStrategy(