rke2: disable r-ryantm automatic updates
This commit is contained in:
@@ -108,19 +108,9 @@ respective package block.
|
||||
|
||||
```nix
|
||||
{
|
||||
rke2_1_34 =
|
||||
(common (
|
||||
(import ./1_34/versions.nix)
|
||||
// {
|
||||
updateScript = [
|
||||
./update-script.sh
|
||||
"34"
|
||||
];
|
||||
}
|
||||
) extraArgs).overrideAttrs
|
||||
{
|
||||
meta.knownVulnerabilities = [ "rke2_1_34 has reached end-of-life on 2026-10-27" ];
|
||||
};
|
||||
rke2_1_34 = (common (import ./1_34/versions.nix) extraArgs).overrideAttrs {
|
||||
meta.knownVulnerabilities = [ "rke2_1_34 has reached end-of-life on 2026-10-27" ];
|
||||
};
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ lib:
|
||||
rke2Commit,
|
||||
rke2TarballHash,
|
||||
rke2VendorHash,
|
||||
updateScript,
|
||||
updateScript ? null,
|
||||
k8sImageTag,
|
||||
etcdVersion,
|
||||
pauseVersion,
|
||||
|
||||
@@ -5,45 +5,13 @@ let
|
||||
extraArgs = removeAttrs args [ "callPackage" ];
|
||||
in
|
||||
rec {
|
||||
rke2_1_32 = common (
|
||||
(import ./1_32/versions.nix)
|
||||
// {
|
||||
updateScript = [
|
||||
./update-script.sh
|
||||
"32"
|
||||
];
|
||||
}
|
||||
) extraArgs;
|
||||
rke2_1_32 = common (import ./1_32/versions.nix) extraArgs;
|
||||
|
||||
rke2_1_33 = common (
|
||||
(import ./1_33/versions.nix)
|
||||
// {
|
||||
updateScript = [
|
||||
./update-script.sh
|
||||
"33"
|
||||
];
|
||||
}
|
||||
) extraArgs;
|
||||
rke2_1_33 = common (import ./1_33/versions.nix) extraArgs;
|
||||
|
||||
rke2_1_34 = common (
|
||||
(import ./1_34/versions.nix)
|
||||
// {
|
||||
updateScript = [
|
||||
./update-script.sh
|
||||
"34"
|
||||
];
|
||||
}
|
||||
) extraArgs;
|
||||
rke2_1_34 = common (import ./1_34/versions.nix) extraArgs;
|
||||
|
||||
rke2_1_35 = common (
|
||||
(import ./1_35/versions.nix)
|
||||
// {
|
||||
updateScript = [
|
||||
./update-script.sh
|
||||
"35"
|
||||
];
|
||||
}
|
||||
) extraArgs;
|
||||
rke2_1_35 = common (import ./1_35/versions.nix) extraArgs;
|
||||
|
||||
# Automatically set by update script, changes shouldn't be backported
|
||||
rke2_stable = rke2_1_34;
|
||||
|
||||
Reference in New Issue
Block a user