mirror of https://github.com/helm/helm
Merge e4d28fe0fd
into 6717ea5e3c
commit
6198302059
@ -0,0 +1,44 @@
|
|||||||
|
/*
|
||||||
|
Copyright The Helm 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 "helm.sh/helm/v4/internal/version"
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"runtime/debug"
|
||||||
|
"slices"
|
||||||
|
|
||||||
|
_ "k8s.io/client-go/kubernetes" // Force k8s.io/client-go to be included in the build
|
||||||
|
)
|
||||||
|
|
||||||
|
func K8sIOClientGoModVersion() (string, error) {
|
||||||
|
info, ok := debug.ReadBuildInfo()
|
||||||
|
if !ok {
|
||||||
|
return "", fmt.Errorf("failed to read build info")
|
||||||
|
}
|
||||||
|
|
||||||
|
idx := slices.IndexFunc(info.Deps, func(m *debug.Module) bool {
|
||||||
|
return m.Path == "k8s.io/client-go"
|
||||||
|
})
|
||||||
|
|
||||||
|
if idx == -1 {
|
||||||
|
return "", fmt.Errorf("k8s.io/client-go not found in build info")
|
||||||
|
}
|
||||||
|
|
||||||
|
m := info.Deps[idx]
|
||||||
|
|
||||||
|
return m.Version, nil
|
||||||
|
}
|
@ -0,0 +1,30 @@
|
|||||||
|
/*
|
||||||
|
Copyright The Helm 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 (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestK8sClientGoModVersion(t *testing.T) {
|
||||||
|
// Unfortunately, test builds don't include debug info / module info
|
||||||
|
// So we expect "K8sIOClientGoModVersion" to return error
|
||||||
|
_, err := K8sIOClientGoModVersion()
|
||||||
|
require.ErrorContains(t, err, "k8s.io/client-go not found in build info")
|
||||||
|
}
|
Loading…
Reference in new issue