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
+13-6Lines changed: 13 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,7 @@
53
53
importcom.cloud.storage.dao.VMTemplateZoneDao;
54
54
importcom.cloud.template.TemplateApiService;
55
55
importcom.cloud.template.VirtualMachineTemplate;
56
+
importcom.cloud.user.Account;
56
57
importcom.cloud.user.AccountManager;
57
58
importcom.cloud.utils.Pair;
58
59
importcom.cloud.utils.component.ComponentContext;
@@ -85,7 +86,7 @@ public class KubernetesVersionManagerImpl extends ManagerBase implements Kuberne
Copy file name to clipboardExpand all lines: plugins/integrations/kubernetes-service/src/main/java/org/apache/cloudstack/api/response/KubernetesSupportedVersionResponse.java
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,10 @@ public class KubernetesSupportedVersionResponse extends BaseResponse {
50
50
@Param(description = "The name of the binaries ISO for Kubernetes supported version")
51
51
privateStringisoName;
52
52
53
+
@SerializedName(ApiConstants.ISO_URL)
54
+
@Param(description = "the URL of the binaries ISO for Kubernetes supported version")
55
+
privateStringisoUrl;
56
+
53
57
@SerializedName(ApiConstants.ISO_STATE)
54
58
@Param(description = "The state of the binaries ISO for Kubernetes supported version")
55
59
privateStringisoState;
@@ -134,6 +138,14 @@ public void setIsoName(String isoName) {
Copy file name to clipboardExpand all lines: plugins/integrations/kubernetes-service/src/test/java/com/cloud/kubernetes/version/KubernetesVersionManagerImplTest.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ public void testUpdateTemplateDetailsInKubernetesSupportedVersionResponseNullTem
Copy file name to clipboardExpand all lines: plugins/integrations/kubernetes-service/src/test/java/com/cloud/kubernetes/version/KubernetesVersionServiceTest.java
0 commit comments