We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2723af2 commit 1349a4dCopy full SHA for 1349a4d
pkg/templates/ignition.go
@@ -30,6 +30,10 @@ const TEMPLATE_VERSION = "9"
30
31
func (i *ignition) getIgnitionTemplate(kluster *kubernikusv1.Kluster) (string, error) {
32
switch {
33
+ case strings.HasPrefix(kluster.Spec.Version, "1.33"):
34
+ return Node_1_27, nil // No changes to 1.27
35
+ case strings.HasPrefix(kluster.Spec.Version, "1.32"):
36
37
case strings.HasPrefix(kluster.Spec.Version, "1.31"):
38
return Node_1_27, nil // No changes to 1.27
39
case strings.HasPrefix(kluster.Spec.Version, "1.30"):
0 commit comments