12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /*
- Copyright 2015 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 framework
- import (
- "fmt"
- "time"
- )
- // ResizeGroup resizes an instance group
- func ResizeGroup(group string, size int32) error {
- if TestContext.ReportDir != "" {
- CoreDump(TestContext.ReportDir)
- defer CoreDump(TestContext.ReportDir)
- }
- return TestContext.CloudConfig.Provider.ResizeGroup(group, size)
- }
- // GetGroupNodes returns a node name for the specified node group
- func GetGroupNodes(group string) ([]string, error) {
- return TestContext.CloudConfig.Provider.GetGroupNodes(group)
- }
- // GroupSize returns the size of an instance group
- func GroupSize(group string) (int, error) {
- return TestContext.CloudConfig.Provider.GroupSize(group)
- }
- // WaitForGroupSize waits for node instance group reached the desired size
- func WaitForGroupSize(group string, size int32) error {
- timeout := 30 * time.Minute
- for start := time.Now(); time.Since(start) < timeout; time.Sleep(20 * time.Second) {
- currentSize, err := GroupSize(group)
- if err != nil {
- Logf("Failed to get node instance group size: %v", err)
- continue
- }
- if currentSize != int(size) {
- Logf("Waiting for node instance group size %d, current size %d", size, currentSize)
- continue
- }
- Logf("Node instance group has reached the desired size %d", size)
- return nil
- }
- return fmt.Errorf("timeout waiting %v for node instance group size to be %d", timeout, size)
- }
|