mirror of https://github.com/k3s-io/k3s
139 lines
5.1 KiB
Go
139 lines
5.1 KiB
Go
/*
|
|
Copyright 2019 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 e2e_node
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/kubernetes/pkg/kubelet/apis/resourcemetrics/v1alpha1"
|
|
"k8s.io/kubernetes/test/e2e/framework"
|
|
"k8s.io/kubernetes/test/e2e/framework/metrics"
|
|
|
|
"github.com/prometheus/common/model"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
"github.com/onsi/gomega/gstruct"
|
|
"github.com/onsi/gomega/types"
|
|
)
|
|
|
|
const (
|
|
pod0 = "stats-busybox-0"
|
|
pod1 = "stats-busybox-1"
|
|
maxStatsAge = time.Minute
|
|
)
|
|
|
|
var _ = framework.KubeDescribe("ResourceMetricsAPI", func() {
|
|
f := framework.NewDefaultFramework("resource-metrics")
|
|
Context("when querying /resource/metrics", func() {
|
|
BeforeEach(func() {
|
|
By("Creating test pods")
|
|
numRestarts := int32(1)
|
|
pods := getSummaryTestPods(f, numRestarts, pod0, pod1)
|
|
f.PodClient().CreateBatch(pods)
|
|
|
|
By("Waiting for test pods to restart the desired number of times")
|
|
Eventually(func() error {
|
|
for _, pod := range pods {
|
|
err := verifyPodRestartCount(f, pod.Name, len(pod.Spec.Containers), numRestarts)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}, time.Minute, 5*time.Second).Should(Succeed())
|
|
|
|
By("Waiting 15 seconds for cAdvisor to collect 2 stats points")
|
|
time.Sleep(15 * time.Second)
|
|
})
|
|
It("should report resource usage through the v1alpha1 resouce metrics api", func() {
|
|
By("Fetching node so we can know proper node memory bounds for unconstrained cgroups")
|
|
node := getLocalNode(f)
|
|
memoryCapacity := node.Status.Capacity["memory"]
|
|
memoryLimit := memoryCapacity.Value()
|
|
|
|
matchV1alpha1Expectations := gstruct.MatchAllKeys(gstruct.Keys{
|
|
"scrape_error": gstruct.Ignore(),
|
|
"node_cpu_usage_seconds_total": gstruct.MatchAllElements(nodeId, gstruct.Elements{
|
|
"": boundedSample(1, 1E6),
|
|
}),
|
|
"node_memory_working_set_bytes": gstruct.MatchAllElements(nodeId, gstruct.Elements{
|
|
"": boundedSample(10*framework.Mb, memoryLimit),
|
|
}),
|
|
|
|
"container_cpu_usage_seconds_total": gstruct.MatchElements(containerId, gstruct.IgnoreExtras, gstruct.Elements{
|
|
fmt.Sprintf("%s::%s::%s", f.Namespace.Name, pod0, "busybox-container"): boundedSample(0, 100),
|
|
fmt.Sprintf("%s::%s::%s", f.Namespace.Name, pod1, "busybox-container"): boundedSample(0, 100),
|
|
}),
|
|
|
|
"container_memory_working_set_bytes": gstruct.MatchAllElements(containerId, gstruct.Elements{
|
|
fmt.Sprintf("%s::%s::%s", f.Namespace.Name, pod0, "busybox-container"): boundedSample(10*framework.Kb, 80*framework.Mb),
|
|
fmt.Sprintf("%s::%s::%s", f.Namespace.Name, pod1, "busybox-container"): boundedSample(10*framework.Kb, 80*framework.Mb),
|
|
}),
|
|
})
|
|
By("Giving pods a minute to start up and produce metrics")
|
|
Eventually(getV1alpha1ResourceMetrics, 1*time.Minute, 15*time.Second).Should(matchV1alpha1Expectations)
|
|
By("Ensuring the metrics match the expectations a few more times")
|
|
Consistently(getV1alpha1ResourceMetrics, 1*time.Minute, 15*time.Second).Should(matchV1alpha1Expectations)
|
|
})
|
|
AfterEach(func() {
|
|
By("Deleting test pods")
|
|
f.PodClient().DeleteSync(pod0, &metav1.DeleteOptions{}, 10*time.Minute)
|
|
f.PodClient().DeleteSync(pod1, &metav1.DeleteOptions{}, 10*time.Minute)
|
|
if !CurrentGinkgoTestDescription().Failed {
|
|
return
|
|
}
|
|
if framework.TestContext.DumpLogsOnFailure {
|
|
framework.LogFailedContainers(f.ClientSet, f.Namespace.Name, framework.Logf)
|
|
}
|
|
By("Recording processes in system cgroups")
|
|
recordSystemCgroupProcesses()
|
|
})
|
|
})
|
|
})
|
|
|
|
func getV1alpha1ResourceMetrics() (metrics.KubeletMetrics, error) {
|
|
return metrics.GrabKubeletMetricsWithoutProxy(framework.TestContext.NodeName+":10255", "/metrics/resource/"+v1alpha1.Version)
|
|
}
|
|
|
|
func nodeId(element interface{}) string {
|
|
return ""
|
|
}
|
|
|
|
func containerId(element interface{}) string {
|
|
el := element.(*model.Sample)
|
|
return fmt.Sprintf("%s::%s::%s", el.Metric["namespace"], el.Metric["pod"], el.Metric["container"])
|
|
}
|
|
|
|
func boundedSample(lower, upper interface{}) types.GomegaMatcher {
|
|
return gstruct.PointTo(gstruct.MatchAllFields(gstruct.Fields{
|
|
// We already check Metric when matching the Id
|
|
"Metric": gstruct.Ignore(),
|
|
"Value": And(BeNumerically(">=", lower), BeNumerically("<=", upper)),
|
|
"Timestamp": WithTransform(func(t model.Time) time.Time {
|
|
// model.Time is in Milliseconds since epoch
|
|
return time.Unix(0, int64(t)*int64(time.Millisecond))
|
|
},
|
|
And(
|
|
BeTemporally(">=", time.Now().Add(-maxStatsAge)),
|
|
// Now() is the test start time, not the match time, so permit a few extra minutes.
|
|
BeTemporally("<", time.Now().Add(2*time.Minute))),
|
|
)}))
|
|
}
|