mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-21 10:51:29 +00:00
Merge pull request #93579 from liggitt/providerless
Fix verify-typecheck-providerless
This commit is contained in:
commit
d3c1e81d5e
@ -16,7 +16,10 @@ go_binary(
|
|||||||
|
|
||||||
go_library(
|
go_library(
|
||||||
name = "go_default_library",
|
name = "go_default_library",
|
||||||
srcs = ["controller-manager.go"],
|
srcs = [
|
||||||
|
"controller-manager.go",
|
||||||
|
"providers.go",
|
||||||
|
],
|
||||||
importpath = "k8s.io/kubernetes/cmd/cloud-controller-manager",
|
importpath = "k8s.io/kubernetes/cmd/cloud-controller-manager",
|
||||||
deps = [
|
deps = [
|
||||||
"//cmd/cloud-controller-manager/app:go_default_library",
|
"//cmd/cloud-controller-manager/app:go_default_library",
|
||||||
|
@ -27,15 +27,8 @@ import (
|
|||||||
"k8s.io/component-base/logs"
|
"k8s.io/component-base/logs"
|
||||||
"k8s.io/kubernetes/cmd/cloud-controller-manager/app"
|
"k8s.io/kubernetes/cmd/cloud-controller-manager/app"
|
||||||
|
|
||||||
_ "k8s.io/component-base/metrics/prometheus/version" // for version metric registration
|
|
||||||
// NOTE: Importing all in-tree cloud-providers is not required when
|
|
||||||
// implementing an out-of-tree cloud-provider.
|
|
||||||
_ "k8s.io/component-base/metrics/prometheus/clientgo" // load all the prometheus client-go plugins
|
_ "k8s.io/component-base/metrics/prometheus/clientgo" // load all the prometheus client-go plugins
|
||||||
_ "k8s.io/legacy-cloud-providers/aws"
|
_ "k8s.io/component-base/metrics/prometheus/version" // for version metric registration
|
||||||
_ "k8s.io/legacy-cloud-providers/azure"
|
|
||||||
_ "k8s.io/legacy-cloud-providers/gce"
|
|
||||||
_ "k8s.io/legacy-cloud-providers/openstack"
|
|
||||||
_ "k8s.io/legacy-cloud-providers/vsphere"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
32
cmd/cloud-controller-manager/providers.go
Normal file
32
cmd/cloud-controller-manager/providers.go
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
// +build !providerless
|
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2020 The Kubernetes 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// The external controller manager is responsible for running controller loops that
|
||||||
|
// are cloud provider dependent. It uses the API to listen to new events on resources.
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
// NOTE: Importing all in-tree cloud-providers is not required when
|
||||||
|
// implementing an out-of-tree cloud-provider.
|
||||||
|
_ "k8s.io/legacy-cloud-providers/aws"
|
||||||
|
_ "k8s.io/legacy-cloud-providers/azure"
|
||||||
|
_ "k8s.io/legacy-cloud-providers/gce"
|
||||||
|
_ "k8s.io/legacy-cloud-providers/openstack"
|
||||||
|
_ "k8s.io/legacy-cloud-providers/vsphere"
|
||||||
|
)
|
@ -1,3 +1,5 @@
|
|||||||
|
// +build !providerless
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2019 The Kubernetes Authors.
|
Copyright 2019 The Kubernetes Authors.
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// +build !providerless
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2018 The Kubernetes Authors.
|
Copyright 2018 The Kubernetes Authors.
|
||||||
|
|
||||||
@ -23,7 +25,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"k8s.io/api/core/v1"
|
v1 "k8s.io/api/core/v1"
|
||||||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||||||
"k8s.io/client-go/informers"
|
"k8s.io/client-go/informers"
|
||||||
"k8s.io/client-go/kubernetes/fake"
|
"k8s.io/client-go/kubernetes/fake"
|
||||||
|
@ -11,6 +11,7 @@ go_library(
|
|||||||
srcs = [
|
srcs = [
|
||||||
"azure_acr_helper.go",
|
"azure_acr_helper.go",
|
||||||
"azure_credentials.go",
|
"azure_credentials.go",
|
||||||
|
"doc.go",
|
||||||
],
|
],
|
||||||
importpath = "k8s.io/kubernetes/pkg/credentialprovider/azure",
|
importpath = "k8s.io/kubernetes/pkg/credentialprovider/azure",
|
||||||
deps = [
|
deps = [
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// +build !providerless
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2016 The Kubernetes Authors.
|
Copyright 2016 The Kubernetes Authors.
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// +build !providerless
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2016 The Kubernetes Authors.
|
Copyright 2016 The Kubernetes Authors.
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// +build !providerless
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2016 The Kubernetes Authors.
|
Copyright 2016 The Kubernetes Authors.
|
||||||
|
|
||||||
|
17
pkg/credentialprovider/azure/doc.go
Normal file
17
pkg/credentialprovider/azure/doc.go
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2020 The Kubernetes 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 azure
|
@ -297,6 +297,7 @@ func main() {
|
|||||||
errors, err := c.verify(plat)
|
errors, err := c.verify(plat)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
serialFprintf(os.Stderr, "ERROR(%s): failed to verify: %v\n", plat, err)
|
serialFprintf(os.Stderr, "ERROR(%s): failed to verify: %v\n", plat, err)
|
||||||
|
f = true
|
||||||
} else if len(errors) > 0 {
|
} else if len(errors) > 0 {
|
||||||
for _, e := range errors {
|
for _, e := range errors {
|
||||||
// Special case CGo errors which may depend on headers we
|
// Special case CGo errors which may depend on headers we
|
||||||
|
Loading…
Reference in New Issue
Block a user