-
Notifications
You must be signed in to change notification settings - Fork 207
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Containerd 1.6.4 for k8s >= 1.24 #1610
Conversation
…>= 1.23 in cse_install
else | ||
echo "WARNING: containerd version not found in manifest, defaulting to hardcoded." | ||
fi | ||
|
||
# todo(ace): read 1.22 from a manifest and track it against supported versions | ||
if semverCompare ${KUBERNETES_VERSION} "1.22.0"; then | ||
if semverCompare ${KUBERNETES_VERSION} "1.24.0"; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would be nice if we can figure out a way to structure this so we can just enumerate (k8s version, containerd version) tuples and compare against desired version instead of branching this case more.
in practice we probably only have a few
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, that would be nice. So we can avoid having all these cases.
Containerd 1.6.4 works with k8s 1.24, in the standalone environment!