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
This is a bug in the install script
Node(s) CPU architecture, OS, and Version:
multipass running on M2 Macbook Pro: Darwin 22.6.0 Darwin Kernel Version 22.6.0: Thu Nov 2 07:43:25 PDT 2023; root:xnu-8796.141.3.701.17~6/RELEASE_ARM64_T6020 arm64
Cluster Configuration:
This is a bug in the install script Describe the bug:
I was attempting to use multipass-rke2, and debug the issue with the script; apparently the resulting command in the default setting of the cloud-config file is the following:
curl -sfL https://get.rke2.io | INSTALL_RKE2_CHANNEL=stable sh -
When you attempt to run this, the command results in the following output:
Attempting to run the same with the latest tag works fine, which defaults to stable according to the docs. Steps To Reproduce:
Although I was using the script from the project mentioned, simply running
curl -sfL https://get.rke2.io | INSTALL_RKE2_CHANNEL=stable sh -
should show the 404 error.
Expected behavior:
I would expect that the three specified commands:
curl -sfL https://get.rke2.io | INSTALL_RKE2_CHANNEL=stable sh -
curl -sfL https://get.rke2.io | INSTALL_RKE2_CHANNEL= sh -
curl -sfL https://get.rke2.io | sh -
Should result in the exact same install of the stable branch of RKE2 Actual behavior:
The result is a 404 in running the command, but within the cloud-config, there is no error, and it simply fails at its next step to run the expected kubectl command as it is not installed. Additional context / logs:
The text was updated successfully, but these errors were encountered:
Attempting to run the same with the latest tag works fine, which defaults to stable according to the docs.
The latest "tag" does not default to stable, I'm not sure what you mean by this. If you don't specify a channel, it defaults to stable - which is not the same thing at all.
[INFO] finding release for channel stable
[INFO] using v1.26.10+rke2r2 as release
sha256sum-arm64.txt
arm64 support is still experimental, and only available for tarball install on the 1.27 and newer minors. You should use either the latest channel, or the v1.27/v1.28 channels.
Environmental Info:
RKE2 Version:
This is a bug in the install script
Node(s) CPU architecture, OS, and Version:
multipass running on M2 Macbook Pro:
Darwin 22.6.0 Darwin Kernel Version 22.6.0: Thu Nov 2 07:43:25 PDT 2023; root:xnu-8796.141.3.701.17~6/RELEASE_ARM64_T6020 arm64
Cluster Configuration:
This is a bug in the install script
Describe the bug:
I was attempting to use
multipass-rke2
, and debug the issue with the script; apparently the resulting command in the default setting of the cloud-config file is the following:curl -sfL https://get.rke2.io | INSTALL_RKE2_CHANNEL=stable sh -
When you attempt to run this, the command results in the following output:
Attempting to run the same with the
latest
tag works fine, which defaults tostable
according to the docs.Steps To Reproduce:
Although I was using the script from the project mentioned, simply running
curl -sfL https://get.rke2.io | INSTALL_RKE2_CHANNEL=stable sh -
should show the 404 error.
Expected behavior:
I would expect that the three specified commands:
Should result in the exact same install of the
stable
branch of RKE2Actual behavior:
The result is a 404 in running the command, but within the cloud-config, there is no error, and it simply fails at its next step to run the expected
kubectl
command as it is not installed.Additional context / logs:
The text was updated successfully, but these errors were encountered: