mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-12-10 12:09:54 +00:00
The dead code was found with:
deadcode -test -filter=k8s.io/kubernetes/test/e2e/framework/... ./test/e2e ./test/e2e_node ./test/e2e_node ./test/e2e_kubeadm
See https://go.dev/blog/deadcode for an introduction.
This removes everything that was reported as dead code for
test/e2e/framework/providers.
68 lines
2.0 KiB
Go
68 lines
2.0 KiB
Go
/*
|
|
Copyright 2014 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 providers
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"path"
|
|
|
|
"k8s.io/kubernetes/test/e2e/framework"
|
|
e2enode "k8s.io/kubernetes/test/e2e/framework/node"
|
|
)
|
|
|
|
// LocationParamGKE returns parameter related to location for gcloud command.
|
|
func LocationParamGKE() string {
|
|
if framework.TestContext.CloudConfig.MultiMaster {
|
|
// GKE Regional Clusters are being tested.
|
|
return fmt.Sprintf("--region=%s", framework.TestContext.CloudConfig.Region)
|
|
}
|
|
return fmt.Sprintf("--zone=%s", framework.TestContext.CloudConfig.Zone)
|
|
}
|
|
|
|
// MasterUpgradeGKE upgrades master node to the specified version on GKE.
|
|
func MasterUpgradeGKE(ctx context.Context, namespace string, v string) error {
|
|
framework.Logf("Upgrading master to %q", v)
|
|
args := []string{
|
|
"container",
|
|
"clusters",
|
|
fmt.Sprintf("--project=%s", framework.TestContext.CloudConfig.ProjectID),
|
|
LocationParamGKE(),
|
|
"upgrade",
|
|
framework.TestContext.CloudConfig.Cluster,
|
|
"--master",
|
|
fmt.Sprintf("--cluster-version=%s", v),
|
|
"--quiet",
|
|
}
|
|
_, _, err := framework.RunCmd("gcloud", framework.AppendContainerCommandGroupIfNeeded(args)...)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
e2enode.WaitForSSHTunnels(ctx, namespace)
|
|
|
|
return nil
|
|
}
|
|
|
|
// GCEUpgradeScript returns path of script for upgrading on GCE.
|
|
func GCEUpgradeScript() string {
|
|
if len(framework.TestContext.GCEUpgradeScript) == 0 {
|
|
return path.Join(framework.TestContext.RepoRoot, "cluster/gce/upgrade.sh")
|
|
}
|
|
return framework.TestContext.GCEUpgradeScript
|
|
}
|