Skip to content

Commit

Permalink
add support container runtime use systemd cgroups
Browse files Browse the repository at this point in the history
Signed-off-by: lengrongfu <[email protected]>
  • Loading branch information
lengrongfu committed Dec 4, 2023
1 parent c5a1734 commit ee00f07
Show file tree
Hide file tree
Showing 9 changed files with 96 additions and 16 deletions.
9 changes: 6 additions & 3 deletions pkg/benchmark/pod.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import (
"path"
"time"

"github.com/kubernetes-sigs/cri-tools/pkg/common"
"github.com/kubernetes-sigs/cri-tools/pkg/framework"
"github.com/sirupsen/logrus"
internalapi "k8s.io/cri-api/pkg/apis"
Expand Down Expand Up @@ -85,11 +86,13 @@ var _ = framework.KubeDescribe("PodSandbox", func() {
podSandboxName := "PodSandbox-for-creating-performance-test-" + framework.NewUUID()
uid := framework.DefaultUIDPrefix + framework.NewUUID()
namespace := framework.DefaultNamespacePrefix + framework.NewUUID()

cgroupParent := common.GetCgroupParent(context.TODO(), c)
config := &runtimeapi.PodSandboxConfig{
Metadata: framework.BuildPodSandboxMetadata(podSandboxName, uid, namespace, framework.DefaultAttempt),
Linux: &runtimeapi.LinuxPodSandboxConfig{},
Labels: framework.DefaultPodLabels,
Linux: &runtimeapi.LinuxPodSandboxConfig{
CgroupParent: cgroupParent,
},
Labels: framework.DefaultPodLabels,
}

By(fmt.Sprintf("Creating a pod %d", idx))
Expand Down
7 changes: 5 additions & 2 deletions pkg/benchmark/pod_container.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ package benchmark
import (
"context"

"github.com/kubernetes-sigs/cri-tools/pkg/common"
"github.com/kubernetes-sigs/cri-tools/pkg/framework"
internalapi "k8s.io/cri-api/pkg/apis"
runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
Expand Down Expand Up @@ -62,10 +63,12 @@ var _ = framework.KubeDescribe("PodSandbox", func() {
podSandboxName := "PodSandbox-for-creating-pod-and-container-performance-test-" + framework.NewUUID()
uid := framework.DefaultUIDPrefix + framework.NewUUID()
namespace := framework.DefaultNamespacePrefix + framework.NewUUID()

cgroupParent := common.GetCgroupParent(context.TODO(), rc)
config := &runtimeapi.PodSandboxConfig{
Metadata: framework.BuildPodSandboxMetadata(podSandboxName, uid, namespace, framework.DefaultAttempt),
Linux: &runtimeapi.LinuxPodSandboxConfig{},
Linux: &runtimeapi.LinuxPodSandboxConfig{
CgroupParent: cgroupParent,
},
}

benchmark := func() {
Expand Down
39 changes: 39 additions & 0 deletions pkg/common/pod_config.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/*
Copyright 2023 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 common

import (
"context"

internalapi "k8s.io/cri-api/pkg/apis"
runtimev1 "k8s.io/cri-api/pkg/apis/runtime/v1"
)

func GetCgroupParent(ctx context.Context, c internalapi.RuntimeService) string {
runtimeConfig, err := c.RuntimeConfig(ctx)
if err != nil {
return ""
}
if runtimeConfig == nil || runtimeConfig.Linux == nil {
return ""
}
cgroupDriver := runtimeConfig.Linux.GetCgroupDriver()
if cgroupDriver == runtimev1.CgroupDriver_CGROUPFS {
return ""
}
return "/test.slice"
}
16 changes: 11 additions & 5 deletions pkg/framework/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import (

"github.com/distribution/reference"
"github.com/google/uuid"
"github.com/kubernetes-sigs/cri-tools/pkg/common"
"gopkg.in/yaml.v3"
internalapi "k8s.io/cri-api/pkg/apis"
runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
Expand Down Expand Up @@ -192,11 +193,13 @@ func RunDefaultPodSandbox(c internalapi.RuntimeService, prefix string) string {
podSandboxName := prefix + NewUUID()
uid := DefaultUIDPrefix + NewUUID()
namespace := DefaultNamespacePrefix + NewUUID()

cgroupParent := common.GetCgroupParent(context.TODO(), c)
config := &runtimeapi.PodSandboxConfig{
Metadata: BuildPodSandboxMetadata(podSandboxName, uid, namespace, DefaultAttempt),
Linux: &runtimeapi.LinuxPodSandboxConfig{},
Labels: DefaultPodLabels,
Linux: &runtimeapi.LinuxPodSandboxConfig{
CgroupParent: cgroupParent,
},
Labels: DefaultPodLabels,
}
return RunPodSandbox(c, config)
}
Expand All @@ -223,10 +226,13 @@ func CreatePodSandboxForContainer(c internalapi.RuntimeService) (string, *runtim
podSandboxName := "create-PodSandbox-for-container-" + NewUUID()
uid := DefaultUIDPrefix + NewUUID()
namespace := DefaultNamespacePrefix + NewUUID()
cgroupParent := common.GetCgroupParent(context.TODO(), c)
config := &runtimeapi.PodSandboxConfig{
Metadata: BuildPodSandboxMetadata(podSandboxName, uid, namespace, DefaultAttempt),
Linux: &runtimeapi.LinuxPodSandboxConfig{},
Labels: DefaultPodLabels,
Linux: &runtimeapi.LinuxPodSandboxConfig{
CgroupParent: cgroupParent,
},
Labels: DefaultPodLabels,
}

podID := RunPodSandbox(c, config)
Expand Down
5 changes: 5 additions & 0 deletions pkg/validate/multi_container_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import (
"strings"
"time"

"github.com/kubernetes-sigs/cri-tools/pkg/common"
"github.com/kubernetes-sigs/cri-tools/pkg/framework"
internalapi "k8s.io/cri-api/pkg/apis"
runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
Expand Down Expand Up @@ -113,6 +114,7 @@ func createMultiContainerTestPodSandbox(c internalapi.RuntimeService) (string, *
uid := framework.DefaultUIDPrefix + framework.NewUUID()
namespace := framework.DefaultNamespacePrefix + framework.NewUUID()
logDir, podLogPath := createLogTempDir(podSandboxName)
cgroupParent := common.GetCgroupParent(context.TODO(), c)
podConfig := &runtimeapi.PodSandboxConfig{
Metadata: framework.BuildPodSandboxMetadata(podSandboxName, uid, namespace, framework.DefaultAttempt),
LogDirectory: podLogPath,
Expand All @@ -122,6 +124,9 @@ func createMultiContainerTestPodSandbox(c internalapi.RuntimeService) (string, *
},
},
Labels: framework.DefaultPodLabels,
Linux: &runtimeapi.LinuxPodSandboxConfig{
CgroupParent: cgroupParent,
},
}
return framework.RunPodSandbox(c, podConfig), podConfig, logDir
}
Expand Down
17 changes: 14 additions & 3 deletions pkg/validate/networking.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import (
"strings"
"time"

"github.com/kubernetes-sigs/cri-tools/pkg/common"
"github.com/kubernetes-sigs/cri-tools/pkg/framework"
internalapi "k8s.io/cri-api/pkg/apis"
runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
Expand Down Expand Up @@ -132,10 +133,14 @@ func createPodSandWithHostname(c internalapi.RuntimeService, hostname string) (s
podSandboxName := "create-PodSandbox-with-hostname" + framework.NewUUID()
uid := framework.DefaultUIDPrefix + framework.NewUUID()
namespace := framework.DefaultNamespacePrefix + framework.NewUUID()
cgroupParent := common.GetCgroupParent(context.TODO(), c)
config := &runtimeapi.PodSandboxConfig{
Metadata: framework.BuildPodSandboxMetadata(podSandboxName, uid, namespace, framework.DefaultAttempt),
Hostname: hostname,
Labels: framework.DefaultPodLabels,
Linux: &runtimeapi.LinuxPodSandboxConfig{
CgroupParent: cgroupParent,
},
}

podID := framework.RunPodSandbox(c, config)
Expand All @@ -147,14 +152,17 @@ func createPodSandWithDNSConfig(c internalapi.RuntimeService) (string, *runtimea
podSandboxName := "create-PodSandbox-with-DNS-config" + framework.NewUUID()
uid := framework.DefaultUIDPrefix + framework.NewUUID()
namespace := framework.DefaultNamespacePrefix + framework.NewUUID()
cgroupParent := common.GetCgroupParent(context.TODO(), c)
config := &runtimeapi.PodSandboxConfig{
Metadata: framework.BuildPodSandboxMetadata(podSandboxName, uid, namespace, framework.DefaultAttempt),
DnsConfig: &runtimeapi.DNSConfig{
Servers: []string{defaultDNSServer},
Searches: []string{defaultDNSSearch},
Options: []string{defaultDNSOption},
},
Linux: &runtimeapi.LinuxPodSandboxConfig{},
Linux: &runtimeapi.LinuxPodSandboxConfig{
CgroupParent: cgroupParent,
},
Labels: framework.DefaultPodLabels,
}

Expand All @@ -167,11 +175,14 @@ func createPodSandboxWithPortMapping(c internalapi.RuntimeService, portMappings
podSandboxName := "create-PodSandbox-with-port-mapping" + framework.NewUUID()
uid := framework.DefaultUIDPrefix + framework.NewUUID()
namespace := framework.DefaultNamespacePrefix + framework.NewUUID()
cgroupParent := common.GetCgroupParent(context.TODO(), c)
config := &runtimeapi.PodSandboxConfig{
Metadata: framework.BuildPodSandboxMetadata(podSandboxName, uid, namespace, framework.DefaultAttempt),
PortMappings: portMappings,
Linux: &runtimeapi.LinuxPodSandboxConfig{},
Labels: framework.DefaultPodLabels,
Linux: &runtimeapi.LinuxPodSandboxConfig{
CgroupParent: cgroupParent,
},
Labels: framework.DefaultPodLabels,
}
if hostNet {
config.Linux.SecurityContext = &runtimeapi.LinuxSandboxSecurityContext{
Expand Down
6 changes: 5 additions & 1 deletion pkg/validate/pod.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import (
"os"
"path/filepath"

"github.com/kubernetes-sigs/cri-tools/pkg/common"
"github.com/kubernetes-sigs/cri-tools/pkg/framework"
internalapi "k8s.io/cri-api/pkg/apis"
runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
Expand Down Expand Up @@ -175,10 +176,13 @@ func createPodSandboxWithLogDirectory(c internalapi.RuntimeService) (string, *ru
namespace := framework.DefaultNamespacePrefix + framework.NewUUID()

hostPath, podLogPath := createLogTempDir(podSandboxName)

cgroupParent := common.GetCgroupParent(context.TODO(), c)
podConfig := &runtimeapi.PodSandboxConfig{
Metadata: framework.BuildPodSandboxMetadata(podSandboxName, uid, namespace, framework.DefaultAttempt),
LogDirectory: podLogPath,
Linux: &runtimeapi.LinuxPodSandboxConfig{
CgroupParent: cgroupParent,
},
}
return framework.RunPodSandbox(c, podConfig), podConfig, hostPath
}
6 changes: 4 additions & 2 deletions pkg/validate/pod_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import (
"strings"
"time"

"github.com/kubernetes-sigs/cri-tools/pkg/common"
"github.com/kubernetes-sigs/cri-tools/pkg/framework"
internalapi "k8s.io/cri-api/pkg/apis"
runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
Expand Down Expand Up @@ -89,11 +90,12 @@ func createSandboxWithSysctls(rc internalapi.RuntimeService, sysctls map[string]
podSandboxName := "pod-sandbox-with-sysctls-" + framework.NewUUID()
uid := framework.DefaultUIDPrefix + framework.NewUUID()
namespace := framework.DefaultNamespacePrefix + framework.NewUUID()

cgroupParent := common.GetCgroupParent(context.TODO(), rc)
podConfig := &runtimeapi.PodSandboxConfig{
Metadata: framework.BuildPodSandboxMetadata(podSandboxName, uid, namespace, framework.DefaultAttempt),
Linux: &runtimeapi.LinuxPodSandboxConfig{
Sysctls: sysctls,
CgroupParent: cgroupParent,
Sysctls: sysctls,
},
}
return framework.RunPodSandbox(rc, podConfig), podConfig
Expand Down
7 changes: 7 additions & 0 deletions pkg/validate/security_context_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import (
"strings"
"time"

"github.com/kubernetes-sigs/cri-tools/pkg/common"
"github.com/kubernetes-sigs/cri-tools/pkg/framework"
internalapi "k8s.io/cri-api/pkg/apis"
runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
Expand Down Expand Up @@ -944,12 +945,14 @@ func createNamespacePodSandbox(rc internalapi.RuntimeService, podSandboxNamespac
By("create NamespaceOption podSandbox")
uid := framework.DefaultUIDPrefix + framework.NewUUID()
namespace := framework.DefaultNamespacePrefix + framework.NewUUID()
cgroupParent := common.GetCgroupParent(context.TODO(), rc)
config := &runtimeapi.PodSandboxConfig{
Metadata: framework.BuildPodSandboxMetadata(podSandboxName, uid, namespace, framework.DefaultAttempt),
Linux: &runtimeapi.LinuxPodSandboxConfig{
SecurityContext: &runtimeapi.LinuxSandboxSecurityContext{
NamespaceOptions: podSandboxNamespace,
},
CgroupParent: cgroupParent,
},
LogDirectory: podLogPath,
Labels: framework.DefaultPodLabels,
Expand Down Expand Up @@ -1016,12 +1019,14 @@ func createPrivilegedPodSandbox(rc internalapi.RuntimeService, privileged bool)
podSandboxName := "create-Privileged-PodSandbox-for-container-" + framework.NewUUID()
uid := framework.DefaultUIDPrefix + framework.NewUUID()
namespace := framework.DefaultNamespacePrefix + framework.NewUUID()
cgroupParent := common.GetCgroupParent(context.TODO(), rc)
config := &runtimeapi.PodSandboxConfig{
Metadata: framework.BuildPodSandboxMetadata(podSandboxName, uid, namespace, framework.DefaultAttempt),
Linux: &runtimeapi.LinuxPodSandboxConfig{
SecurityContext: &runtimeapi.LinuxSandboxSecurityContext{
Privileged: privileged,
},
CgroupParent: cgroupParent,
},
Labels: framework.DefaultPodLabels,
}
Expand Down Expand Up @@ -1152,12 +1157,14 @@ func seccompTestContainer(rc internalapi.RuntimeService, ic internalapi.ImageMan
podSandboxName := "seccomp-sandbox-" + framework.NewUUID()
uid := framework.DefaultUIDPrefix + framework.NewUUID()
namespace := framework.DefaultNamespacePrefix + framework.NewUUID()
cgroupParent := common.GetCgroupParent(context.TODO(), rc)
podConfig := &runtimeapi.PodSandboxConfig{
Metadata: framework.BuildPodSandboxMetadata(podSandboxName, uid, namespace, framework.DefaultAttempt),
Linux: &runtimeapi.LinuxPodSandboxConfig{
SecurityContext: &runtimeapi.LinuxSandboxSecurityContext{
Seccomp: profile,
},
CgroupParent: cgroupParent,
},
Labels: framework.DefaultPodLabels,
}
Expand Down

0 comments on commit ee00f07

Please sign in to comment.