2017-02-01 13:45:42 +01:00
|
|
|
// Copyright 2016 The prometheus-operator 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 (
|
2021-07-23 12:58:54 +05:30
|
|
|
"context"
|
2017-02-01 13:45:42 +01:00
|
|
|
"os"
|
|
|
|
|
"time"
|
2017-03-28 10:31:57 +02:00
|
|
|
|
2023-04-28 15:38:26 +02:00
|
|
|
v1 "k8s.io/api/core/v1"
|
2017-05-11 14:05:39 +02:00
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
|
"k8s.io/apimachinery/pkg/util/wait"
|
|
|
|
|
"k8s.io/apimachinery/pkg/util/yaml"
|
2017-02-01 13:45:42 +01:00
|
|
|
)
|
|
|
|
|
|
2021-07-23 12:58:54 +05:30
|
|
|
func (f *Framework) createReplicationControllerViaYml(ctx context.Context, namespace string, filepath string) error {
|
2017-02-01 13:45:42 +01:00
|
|
|
manifest, err := os.Open(filepath)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var rC v1.ReplicationController
|
|
|
|
|
err = yaml.NewYAMLOrJSONDecoder(manifest, 100).Decode(&rC)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-23 12:58:54 +05:30
|
|
|
_, err = f.KubeClient.CoreV1().ReplicationControllers(namespace).Create(ctx, &rC, metav1.CreateOptions{})
|
2017-02-01 13:45:42 +01:00
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-23 12:58:54 +05:30
|
|
|
func (f *Framework) deleteReplicationControllerViaYml(ctx context.Context, namespace string, filepath string) error {
|
2017-02-01 13:45:42 +01:00
|
|
|
manifest, err := os.Open(filepath)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var rC v1.ReplicationController
|
|
|
|
|
err = yaml.NewYAMLOrJSONDecoder(manifest, 100).Decode(&rC)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-23 12:58:54 +05:30
|
|
|
if err := f.scaleDownReplicationController(ctx, namespace, rC); err != nil {
|
2017-02-01 13:45:42 +01:00
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-23 12:58:54 +05:30
|
|
|
return f.KubeClient.CoreV1().ReplicationControllers(namespace).Delete(ctx, rC.Name, metav1.DeleteOptions{})
|
2017-02-01 13:45:42 +01:00
|
|
|
}
|
|
|
|
|
|
2021-07-23 12:58:54 +05:30
|
|
|
func (f *Framework) scaleDownReplicationController(ctx context.Context, namespace string, rC v1.ReplicationController) error {
|
2017-02-01 13:45:42 +01:00
|
|
|
*rC.Spec.Replicas = 0
|
2021-06-29 21:03:14 +05:30
|
|
|
rCAPI := f.KubeClient.CoreV1().ReplicationControllers(namespace)
|
2017-02-01 13:45:42 +01:00
|
|
|
|
2021-07-23 12:58:54 +05:30
|
|
|
_, err := f.KubeClient.CoreV1().ReplicationControllers(namespace).Update(ctx, &rC, metav1.UpdateOptions{})
|
2017-02-01 13:45:42 +01:00
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-28 15:38:26 +02:00
|
|
|
return wait.PollUntilContextTimeout(ctx, time.Second, time.Minute*5, false, func(ctx context.Context) (bool, error) {
|
2021-07-23 12:58:54 +05:30
|
|
|
currentRC, err := rCAPI.Get(ctx, rC.Name, metav1.GetOptions{})
|
2017-02-01 13:45:42 +01:00
|
|
|
if err != nil {
|
|
|
|
|
return false, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if currentRC.Status.Replicas == 0 {
|
|
|
|
|
return true, nil
|
|
|
|
|
}
|
|
|
|
|
return false, nil
|
|
|
|
|
})
|
|
|
|
|
}
|