Commit 47aa9709390a

Vincent Demeester <vincent@sbr.pm>
2021-11-25 16:56:25
nix/packages: oc/openshift-install 4.9 and updates
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent b0c6b09
Changed files (3)
nix/packages/openshift/oc.nix
@@ -38,18 +38,22 @@ rec {
       '';
     };
 
-  oc = oc_4_8;
+  oc = oc_4_9;
+  oc_4_9 = makeOverridable ocGen {
+    version = "4.9.9";
+    sha256 = "sha256-2n99D2PFEHBV7Cd6Co9S/QXGcMTDsWwFSNVG9ggvEBY=";
+  };
   oc_4_8 = makeOverridable ocGen {
-    version = "4.8.14";
-    sha256 = "14685hgipbrzymjfgh2aa2y47l67vw018sdvmd140xcp3syp2y4l";
+    version = "4.8.22";
+    sha256 = "sha256-sGk7LPDhe3wjG4U2Covu9az2CVROCKRqoB1YxP73/vk=";
   };
   oc_4_7 = makeOverridable ocGen {
-    version = "4.7.33";
-    sha256 = "1253rpbcls6xd6hzss8wwgphw7w4sc4x3pvy8vrzzpzl7g99zvcx";
+    version = "4.7.38";
+    sha256 = "sha256-HC/KRRpz2QpdjHpOyoYolZ6CAKBOFyq5Yh3YYszjNFM=";
   };
   oc_4_6 = makeOverridable ocGen {
-    version = "4.6.47";
-    sha256 = "0gipr5wlblwcc53lm97l4pq14fs93b9hi1jg1kc68bh1ivpbfil7";
+    version = "4.6.50";
+    sha256 = "sha256-tkbLQHzT2AnkYqpfwGH30uFIuijwlrHsBCiKLGA0gMI=";
   };
   oc_4_5 = makeOverridable ocGen {
     version = "4.5.41";
nix/packages/openshift/openshift-install.nix
@@ -41,18 +41,22 @@ rec {
       };
     };
 
-  openshift-install = openshift-install_4_8;
+  openshift-install = openshift-install_4_9;
+  openshift-install_4_9 = makeOverridable openshiftInstallGen {
+    version = "4.9.9";
+    sha256 = "sha256-ACoqy0lhuoPYwD8DlTrozrKD8pNHrpdhQLIKfl9JZww=";
+  };
   openshift-install_4_8 = makeOverridable openshiftInstallGen {
-    version = "4.8.14";
-    sha256 = "03n71m4bdsjwfc5ynvbyvvfdnrvrbsa9kn5yd6gaaql0y591ya90";
+    version = "4.8.22";
+    sha256 = "sha256-3x1JZlOyz7xXdwiMr3pDJtDpF7HCbLqGTrBDRQIKEAI=";
   };
   openshift-install_4_7 = makeOverridable openshiftInstallGen {
-    version = "4.7.33";
-    sha256 = "19ivnppp9k7z71fnv05n0axhkr7srsb26jgri9gx7g1g33q945gz";
+    version = "4.7.38";
+    sha256 = "sha256-iglGe7xWPZR0u+4TvzcO6CXp7m3zqJVumnQ9ABEOgnM=";
   };
   openshift-install_4_6 = makeOverridable openshiftInstallGen {
-    version = "4.6.47";
-    sha256 = "0z0kfiq5yavll9zkp7cv3ki936bzjcmxim8di7lbv0wknb405i9a";
+    version = "4.6.50";
+    sha256 = "sha256-NM3FIe6d2iPlRSZElklhD7dF2LnxYdzEkTCNpTaCHnQ=";
   };
   openshift-install_4_5 = makeOverridable openshiftInstallGen {
     version = "4.5.41";
nix/packages/default.nix
@@ -48,6 +48,7 @@ rec {
     oc_4_6
     oc_4_7
     oc_4_8
+    oc_4_9
     oc
     ;
   inherit (pkgs.callPackage ./openshift/openshift-install.nix { })
@@ -57,6 +58,7 @@ rec {
     openshift-install_4_6
     openshift-install_4_7
     openshift-install_4_8
+    openshift-install_4_9
     openshift-install
     ;