Commit 97ae9b096941

Vincent Demeester <vincent@sbr.pm>
2022-09-01 12:30:10
nix/packages: add more oc/openshift-install version…
… and default to 4.11. Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 68d1d4b
Changed files (3)
nix/packages/openshift/oc.nix
@@ -38,18 +38,26 @@ rec {
       '';
     };
 
-  oc = oc_4_9;
+  oc = oc_4_11;
+  oc_4_11 = makeOverridable ocGen {
+    version = "4.11.2";
+    sha256 = "sha256-7uCRjf8oo+CIcuSJOvSunrzo8uzoJEWytypXzbAOvm4=";
+  };
+  oc_4_10 = makeOverridable ocGen {
+    version = "4.10.30";
+    sha256 = "sha256-hYlzGgE6MZCfRZpf/1+hv2YbSnmSyqNSsWqt5JC76ps=";
+  };
   oc_4_9 = makeOverridable ocGen {
-    version = "4.9.9";
-    sha256 = "sha256-2n99D2PFEHBV7Cd6Co9S/QXGcMTDsWwFSNVG9ggvEBY=";
+    version = "4.9.47";
+    sha256 = "sha256-jNwZHfGprFS+wU5xfnh0bpI+lNJR/xUbsOlG3Urk2O8=";
   };
   oc_4_8 = makeOverridable ocGen {
-    version = "4.8.22";
-    sha256 = "sha256-sGk7LPDhe3wjG4U2Covu9az2CVROCKRqoB1YxP73/vk=";
+    version = "4.8.48";
+    sha256 = "sha256-M7dwAbYayKNCjkciSoYzv+UwpX+IL6i03hKMBeUVpXY=";
   };
   oc_4_7 = makeOverridable ocGen {
-    version = "4.7.38";
-    sha256 = "sha256-HC/KRRpz2QpdjHpOyoYolZ6CAKBOFyq5Yh3YYszjNFM=";
+    version = "4.7.56";
+    sha256 = "sha256-RKYFW4ir6Gd5GDAGJ/pY4/ysSgGxTCndslvr0VmxgmE=";
   };
   oc_4_6 = makeOverridable ocGen {
     version = "4.6.50";
nix/packages/openshift/openshift-install.nix
@@ -41,18 +41,26 @@ rec {
       };
     };
 
-  openshift-install = openshift-install_4_9;
+  openshift-install = openshift-install_4_11;
+  openshift-install_4_11 = makeOverridable openshiftInstallGen {
+    version = "4.11.2";
+    sha256 = "sha256-WbV8O4ovOvCVyplDZHkLPM4vh9fH2e0dgIIJzOCDTt4=";
+  };
+  openshift-install_4_10 = makeOverridable openshiftInstallGen {
+    version = "4.10.30";
+    sha256 = "sha256-EzgFJAf91I+SjyIKdhlHQR7ET22xi/wzHRFCau5Y+TY=";
+  };
   openshift-install_4_9 = makeOverridable openshiftInstallGen {
-    version = "4.9.9";
-    sha256 = "sha256-ACoqy0lhuoPYwD8DlTrozrKD8pNHrpdhQLIKfl9JZww=";
+    version = "4.9.47";
+    sha256 = "sha256-dgxl1syjyzcY6Z/W0qzHe3/GIj4niD+Epx0DFofw7tY=";
   };
   openshift-install_4_8 = makeOverridable openshiftInstallGen {
-    version = "4.8.22";
-    sha256 = "sha256-3x1JZlOyz7xXdwiMr3pDJtDpF7HCbLqGTrBDRQIKEAI=";
+    version = "4.8.48";
+    sha256 = "sha256-Vsoa5mg21epGQRKvOEA/qIyVNqc9QPMmKlY9DZ5J2wQ=";
   };
   openshift-install_4_7 = makeOverridable openshiftInstallGen {
-    version = "4.7.38";
-    sha256 = "sha256-iglGe7xWPZR0u+4TvzcO6CXp7m3zqJVumnQ9ABEOgnM=";
+    version = "4.7.56";
+    sha256 = "sha256-f0SmZewcHIqrQr5IZ4oxhT5LfcyHMejA/wI+AoI09d0=";
   };
   openshift-install_4_6 = makeOverridable openshiftInstallGen {
     version = "4.6.50";
nix/packages/default.nix
@@ -52,6 +52,8 @@ rec {
     oc_4_7
     oc_4_8
     oc_4_9
+    oc_4_10
+    oc_4_11
     oc
     ;
   inherit (pkgs.callPackage ./openshift/openshift-install.nix { })
@@ -62,6 +64,8 @@ rec {
     openshift-install_4_7
     openshift-install_4_8
     openshift-install_4_9
+    openshift-install_4_10
+    openshift-install_4_11
     openshift-install
     ;