forked from knative/pkg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
version.go
88 lines (74 loc) · 2.64 KB
/
version.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
Copyright 2019 The Knative Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package version
import (
"fmt"
"os"
"strings"
"github.com/blang/semver/v4"
"k8s.io/client-go/discovery"
)
const (
// KubernetesMinVersionKey is the environment variable that can be used to override
// the Kubernetes minimum version required by Knative.
KubernetesMinVersionKey = "KUBERNETES_MIN_VERSION"
// NOTE: If you are changing this line, please also update the minimum kubernetes
// version listed here:
// https://github.com/knative/docs/blob/mkdocs/docs/snippets/prerequisites.md
defaultMinimumVersion = "v1.22.0"
)
func getMinimumVersion() string {
if v := os.Getenv(KubernetesMinVersionKey); v != "" {
return v
}
return defaultMinimumVersion
}
// CheckMinimumVersion checks if the currently installed version of
// Kubernetes is compatible with the minimum version required.
// Returns an error if its not.
//
// A Kubernetes discovery client can be passed in as the versioner
// like `CheckMinimumVersion(kubeClient.Discovery())`.
func CheckMinimumVersion(versioner discovery.ServerVersionInterface) error {
v, err := versioner.ServerVersion()
if err != nil {
return err
}
currentVersion, err := semver.Make(normalizeVersion(v.GitVersion))
if err != nil {
return err
}
minimumVersion, err := semver.Make(normalizeVersion(getMinimumVersion()))
if err != nil {
return err
}
// If no specific pre-release requirement is set, we default to "-0" to always allow
// pre-release versions of the same Major.Minor.Patch version.
// Set IsNum to true otherwise currentVersion.LT() below always returns true.
if len(minimumVersion.Pre) == 0 {
minimumVersion.Pre = []semver.PRVersion{{VersionNum: 0, IsNum: true}}
}
// Return error if the current version is less than the minimum version required.
if currentVersion.LT(minimumVersion) {
return fmt.Errorf("kubernetes version %q is not compatible, need at least %q (this can be overridden with the env var %q)",
currentVersion, minimumVersion, KubernetesMinVersionKey)
}
return nil
}
func normalizeVersion(v string) string {
if strings.HasPrefix(v, "v") {
// No need to account for unicode widths.
return v[1:]
}
return v
}