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
Copy file name to clipboardExpand all lines: plugins/integrations/kubernetes-service/src/main/java/com/cloud/kubernetes/version/KubernetesVersionManagerImpl.java
if (StringUtils.isNotEmpty(minimumSemanticVersion) && minimumKubernetesVersionId != null) {
272
274
thrownewCloudRuntimeException(String.format("Both parameters %s and %s can not be passed together", ApiConstants.MIN_SEMANTIC_VERSION, ApiConstants.MIN_KUBERNETES_VERSION_ID));
273
275
}
@@ -282,6 +284,13 @@ public ListResponse<KubernetesSupportedVersionResponse> listKubernetesSupportedV
Copy file name to clipboardExpand all lines: plugins/integrations/kubernetes-service/src/main/java/org/apache/cloudstack/api/command/user/kubernetes/version/ListKubernetesSupportedVersionsCmd.java
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,11 @@ public class ListKubernetesSupportedVersionsCmd extends BaseListCmd {
66
66
description = "the ID of the minimum Kubernetes supported version")
67
67
privateLongminimumKubernetesVersionId;
68
68
69
+
@Parameter(name = ApiConstants.ARCH, type = CommandType.STRING,
70
+
description = "the CPU arch of the binaries ISO. Valid options are: x86_64, aarch64",
0 commit comments