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 5, 2023
1 parent c5a1734 commit 5d48dd0
Show file tree
Hide file tree
Showing 9 changed files with 83 additions and 16 deletions.
8 changes: 5 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,12 @@ var _ = framework.KubeDescribe("PodSandbox", func() {
podSandboxName := "PodSandbox-for-creating-performance-test-" + framework.NewUUID()
uid := framework.DefaultUIDPrefix + framework.NewUUID()
namespace := framework.DefaultNamespacePrefix + framework.NewUUID()

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

By(fmt.Sprintf("Creating a pod %d", idx))
Expand Down
6 changes: 4 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,11 @@ 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()

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

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 "/test.slice"
}
if runtimeConfig == nil || runtimeConfig.Linux == nil {
return "/test.slice"
}
cgroupDriver := runtimeConfig.Linux.GetCgroupDriver()
if cgroupDriver == runtimev1.CgroupDriver_CGROUPFS {
return ""
}
return "/test.slice"
}
14 changes: 9 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,12 @@ func RunDefaultPodSandbox(c internalapi.RuntimeService, prefix string) string {
podSandboxName := prefix + NewUUID()
uid := DefaultUIDPrefix + NewUUID()
namespace := DefaultNamespacePrefix + NewUUID()

config := &runtimeapi.PodSandboxConfig{
Metadata: BuildPodSandboxMetadata(podSandboxName, uid, namespace, DefaultAttempt),
Linux: &runtimeapi.LinuxPodSandboxConfig{},
Labels: DefaultPodLabels,
Linux: &runtimeapi.LinuxPodSandboxConfig{
CgroupParent: common.GetCgroupParent(context.TODO(), c),
},
Labels: DefaultPodLabels,
}
return RunPodSandbox(c, config)
}
Expand Down Expand Up @@ -225,8 +227,10 @@ func CreatePodSandboxForContainer(c internalapi.RuntimeService) (string, *runtim
namespace := DefaultNamespacePrefix + NewUUID()
config := &runtimeapi.PodSandboxConfig{
Metadata: BuildPodSandboxMetadata(podSandboxName, uid, namespace, DefaultAttempt),
Linux: &runtimeapi.LinuxPodSandboxConfig{},
Labels: DefaultPodLabels,
Linux: &runtimeapi.LinuxPodSandboxConfig{
CgroupParent: common.GetCgroupParent(context.TODO(), c),
},
Labels: DefaultPodLabels,
}

podID := RunPodSandbox(c, config)
Expand Down
4 changes: 4 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 @@ -122,6 +123,9 @@ func createMultiContainerTestPodSandbox(c internalapi.RuntimeService) (string, *
},
},
Labels: framework.DefaultPodLabels,
Linux: &runtimeapi.LinuxPodSandboxConfig{
CgroupParent: common.GetCgroupParent(context.TODO(), c),
},
}
return framework.RunPodSandbox(c, podConfig), podConfig, logDir
}
Expand Down
14 changes: 11 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 @@ -136,6 +137,9 @@ func createPodSandWithHostname(c internalapi.RuntimeService, hostname string) (s
Metadata: framework.BuildPodSandboxMetadata(podSandboxName, uid, namespace, framework.DefaultAttempt),
Hostname: hostname,
Labels: framework.DefaultPodLabels,
Linux: &runtimeapi.LinuxPodSandboxConfig{
CgroupParent: common.GetCgroupParent(context.TODO(), c),
},
}

podID := framework.RunPodSandbox(c, config)
Expand All @@ -154,7 +158,9 @@ func createPodSandWithDNSConfig(c internalapi.RuntimeService) (string, *runtimea
Searches: []string{defaultDNSSearch},
Options: []string{defaultDNSOption},
},
Linux: &runtimeapi.LinuxPodSandboxConfig{},
Linux: &runtimeapi.LinuxPodSandboxConfig{
CgroupParent: common.GetCgroupParent(context.TODO(), c),
},
Labels: framework.DefaultPodLabels,
}

Expand All @@ -170,8 +176,10 @@ func createPodSandboxWithPortMapping(c internalapi.RuntimeService, portMappings
config := &runtimeapi.PodSandboxConfig{
Metadata: framework.BuildPodSandboxMetadata(podSandboxName, uid, namespace, framework.DefaultAttempt),
PortMappings: portMappings,
Linux: &runtimeapi.LinuxPodSandboxConfig{},
Labels: framework.DefaultPodLabels,
Linux: &runtimeapi.LinuxPodSandboxConfig{
CgroupParent: common.GetCgroupParent(context.TODO(), c),
},
Labels: framework.DefaultPodLabels,
}
if hostNet {
config.Linux.SecurityContext = &runtimeapi.LinuxSandboxSecurityContext{
Expand Down
5 changes: 4 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,12 @@ func createPodSandboxWithLogDirectory(c internalapi.RuntimeService) (string, *ru
namespace := framework.DefaultNamespacePrefix + framework.NewUUID()

hostPath, podLogPath := createLogTempDir(podSandboxName)

podConfig := &runtimeapi.PodSandboxConfig{
Metadata: framework.BuildPodSandboxMetadata(podSandboxName, uid, namespace, framework.DefaultAttempt),
LogDirectory: podLogPath,
Linux: &runtimeapi.LinuxPodSandboxConfig{
CgroupParent: common.GetCgroupParent(context.TODO(), c),
},
}
return framework.RunPodSandbox(c, podConfig), podConfig, hostPath
}
5 changes: 3 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,11 @@ 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()

podConfig := &runtimeapi.PodSandboxConfig{
Metadata: framework.BuildPodSandboxMetadata(podSandboxName, uid, namespace, framework.DefaultAttempt),
Linux: &runtimeapi.LinuxPodSandboxConfig{
Sysctls: sysctls,
CgroupParent: common.GetCgroupParent(context.TODO(), rc),
Sysctls: sysctls,
},
}
return framework.RunPodSandbox(rc, podConfig), podConfig
Expand Down
4 changes: 4 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 @@ -950,6 +951,7 @@ func createNamespacePodSandbox(rc internalapi.RuntimeService, podSandboxNamespac
SecurityContext: &runtimeapi.LinuxSandboxSecurityContext{
NamespaceOptions: podSandboxNamespace,
},
CgroupParent: common.GetCgroupParent(context.TODO(), rc),
},
LogDirectory: podLogPath,
Labels: framework.DefaultPodLabels,
Expand Down Expand Up @@ -1022,6 +1024,7 @@ func createPrivilegedPodSandbox(rc internalapi.RuntimeService, privileged bool)
SecurityContext: &runtimeapi.LinuxSandboxSecurityContext{
Privileged: privileged,
},
CgroupParent: common.GetCgroupParent(context.TODO(), rc),
},
Labels: framework.DefaultPodLabels,
}
Expand Down Expand Up @@ -1158,6 +1161,7 @@ func seccompTestContainer(rc internalapi.RuntimeService, ic internalapi.ImageMan
SecurityContext: &runtimeapi.LinuxSandboxSecurityContext{
Seccomp: profile,
},
CgroupParent: common.GetCgroupParent(context.TODO(), rc),
},
Labels: framework.DefaultPodLabels,
}
Expand Down

0 comments on commit 5d48dd0

Please sign in to comment.