Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Release-1.27] Support generic "cis" profile #4797

Merged
merged 2 commits into from Sep 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/cli/cmds/profile_linux.go
Expand Up @@ -105,7 +105,7 @@ func setCISFlags(clx *cli.Context) error {

func validateProfile(clx *cli.Context, role CLIRole) {
switch clx.String("profile") {
case rke2.CISProfile123:
case rke2.CISProfile123, rke2.CISProfile:
if err := validateCISReqs(role); err != nil {
logrus.Fatal(err)
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/cli/cmds/root.go
Expand Up @@ -84,7 +84,7 @@ var (
},
&cli.StringFlag{
Name: "profile",
Usage: "(security) Validate system configuration against the selected benchmark (valid items: " + rke2.CISProfile123 + " )",
Usage: "(security) Validate system configuration against the selected benchmark (valid items: cis, cis-1.23 (deprecated))",
EnvVar: "RKE2_CIS_PROFILE",
},
&cli.StringFlag{
Expand Down
6 changes: 5 additions & 1 deletion pkg/rke2/rke2.go
Expand Up @@ -64,6 +64,7 @@ type ExtraEnv struct {
// Valid CIS Profile versions
const (
CISProfile123 = "cis-1.23"
CISProfile = "cis"
defaultAuditPolicyFile = "/etc/rancher/rke2/audit-policy.yaml"
containerdSock = "/run/k3s/containerd/containerd.sock"
KubeAPIServer = "kube-apiserver"
Expand Down Expand Up @@ -269,7 +270,10 @@ func removeDisabledPods(dataDir, containerRuntimeEndpoint string, disabledItems

func isCISMode(clx *cli.Context) bool {
profile := clx.String("profile")
return profile == CISProfile123
if profile == CISProfile123 {
logrus.Warn("cis-1.23 profile is deprecated and will be removed in v1.29. Please use cis instead.")
}
return profile == CISProfile123 || profile == CISProfile
}

// TODO: move this into the podexecutor package, this logic is specific to that executor and should be there instead of here.
Expand Down