mirror of https://github.com/kubernetes/kops.git
55 lines
1.3 KiB
Go
55 lines
1.3 KiB
Go
/*
|
|
Copyright 2017 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 components
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"k8s.io/kops/pkg/apis/kops/util"
|
|
"k8s.io/kops/pkg/assets"
|
|
"k8s.io/kops/util/pkg/vfs"
|
|
)
|
|
|
|
func Test_Build_Scheduler(t *testing.T) {
|
|
versions := []string{"v1.6.0", "v1.6.4", "v1.7.0", "v1.7.4"}
|
|
|
|
for _, v := range versions {
|
|
|
|
c := buildCluster()
|
|
c.Spec.KubernetesVersion = v
|
|
b := assets.NewAssetBuilder(vfs.Context, c.Spec.Assets, c.Spec.KubernetesVersion, false)
|
|
|
|
version, err := util.ParseKubernetesVersion(v)
|
|
if err != nil {
|
|
t.Fatalf("unexpected error from ParseKubernetesVersion %s: %v", v, err)
|
|
}
|
|
|
|
ks := &KubeSchedulerOptionsBuilder{
|
|
&OptionsContext{
|
|
AssetBuilder: b,
|
|
KubernetesVersion: *version,
|
|
},
|
|
}
|
|
|
|
err = ks.BuildOptions(c)
|
|
|
|
if err != nil {
|
|
t.Fatalf("unexpected error from BuildOptions: %v", err)
|
|
}
|
|
}
|
|
}
|