@@ -137,17 +137,17 @@ def load_arguments(self, _):
137137 validator = validate_load_balancer_managed_outbound_ip_count ,
138138 options_list = ['--load-balancer-managed-outbound-ip-count' , '--lb-ip-count' ])
139139
140- c .argument ('enable_managed_identity' , arg_group = 'Identity' , is_preview = True , arg_type = get_three_state_flag (),
140+ c .argument ('enable_managed_identity' , arg_group = 'Identity' , arg_type = get_three_state_flag (),
141141 help = 'Enable managed identity for this cluster.' ,
142142 options_list = ['--enable-managed-identity' , '--enable-mi' ],
143143 validator = validate_enable_managed_identity )
144- c .argument ('platform_workload_identities' , arg_group = 'Identity' , is_preview = True ,
144+ c .argument ('platform_workload_identities' , arg_group = 'Identity' ,
145145 help = 'Assign a platform workload identity used within the cluster. Requires two values: \
146146 an operator name and either the name or resource ID of the Azure identity to use for it.' ,
147147 options_list = ['--assign-platform-workload-identity' , '--assign-platform-wi' ],
148148 validator = validate_platform_workload_identities (isCreate = True ),
149149 action = AROPlatformWorkloadIdentityAddAction , nargs = '+' )
150- c .argument ('mi_user_assigned' , arg_group = 'Identity' , is_preview = True ,
150+ c .argument ('mi_user_assigned' , arg_group = 'Identity' ,
151151 help = 'Set the user managed identity on the cluster. Value must be an identity name or resource ID.' ,
152152 options_list = ['--mi-user-assigned' , '--assign-cluster-identity' ],
153153 validator = validate_cluster_identity )
@@ -164,18 +164,18 @@ def load_arguments(self, _):
164164 help = 'Refresh cluster application credentials.' ,
165165 options_list = ['--refresh-credentials' ],
166166 validator = validate_refresh_cluster_credentials )
167- c .argument ('mi_user_assigned' , arg_group = 'Identity' , is_preview = True ,
167+ c .argument ('mi_user_assigned' , arg_group = 'Identity' ,
168168 help = 'Set the user managed identity on the cluster. Value must be an identity name or resource ID.' ,
169169 options_list = ['--mi-user-assigned' , '--assign-cluster-identity' ],
170170 validator = validate_cluster_identity_update )
171- c .argument ('platform_workload_identities' , arg_group = 'Identity' , is_preview = True ,
171+ c .argument ('platform_workload_identities' , arg_group = 'Identity' ,
172172 help = 'Assign a platform workload identity used within the cluster. Requires two values: \
173173 an operator name and either the name or resource ID of the Azure identity to use for it.' ,
174174 options_list = ['--assign-platform-workload-identity' , '--assign-platform-wi' ],
175175 validator = validate_platform_workload_identities (isCreate = False ),
176176 action = AROPlatformWorkloadIdentityAddAction , nargs = '+' )
177177 c .argument ('upgradeable_to' , arg_group = 'Identity' , options_list = ['--upgradeable-to' ],
178- help = 'OpenShift version to upgrade to.' , is_preview = True ,
178+ help = 'OpenShift version to upgrade to.' ,
179179 validator = validate_upgradeable_to_format )
180180
181181 with self .argument_context ('aro get-admin-kubeconfig' ) as c :
@@ -185,7 +185,6 @@ def load_arguments(self, _):
185185
186186 with self .argument_context ('aro delete' ) as c :
187187 c .argument ('delete_identities' ,
188- is_preview = True ,
189188 arg_group = 'Identity' ,
190189 arg_type = get_three_state_flag (),
191190 validator = validate_delete_identities ,
0 commit comments