All Products
Search
Document Center

Container Service for Kubernetes:Use the inspection feature to detect security risks in the workloads of an ACK cluster

Last Updated:Mar 11, 2024

Container Service for Kubernetes (ACK) clusters provide the inspection feature to help you detect security risks in workloads. An ACK cluster generates an inspection report after performing an inspection task. You can view and address the failed inspection items in the cluster based on the inspection report. This way, you can learn the real-time health status of the cluster.

Prerequisites

  • An ACK managed cluster or an ACK dedicated cluster is created, and the Kubernetes version of the cluster is 1.14 or later. For more information, see Create an ACK dedicated cluster or Create an ACK managed cluster. For more information about how to upgrade an ACK cluster, see Upgrade an ACK cluster.

  • If you use a Resource Access Management (RAM) user, you must follow the following instructions to complete RAM authorization and role-based access control (RBAC) authorization.

    • Complete RAM authorization

      If you use a RAM user, a message appears on the Inspections page of the ACK console, which prompts you to grant the RAM user the permissions to perform operations on the Inspections page. If the RAM user does not have the required permissions, you cannot perform operations on the Inspections page. For more information, see Create a custom RAM policy.

      View the sample code for granting permissions to perform operations on the Inspections page

      {
        "Statement": [
          {
            "Action": [
              "cs:DescribePolarisConfig",
              "cs:DescribePolarisJob",
              "cs:DescribePolarisCronJob",
              "cs:UpdatePolarisJob",
              "cs:UpdatePolarisCronJob"
            ],
            "Effect": "Allow",
            "Resource": [
              "acs:cs:*:*:cluster/<yourclusterID>"
            ]
          }
        ],
        "Version": "1"
      }

      If you also need to use the inspection report feature, you must grant the RAM user read permissions on the Simple Log Service project used by the logtail-ds component in your cluster. This allows the RAM user to read the log data in the Simple Log Service project. Otherwise, you cannot view inspection reports. For more information, see Use custom policies to grant permissions to a RAM user.

      View the sample code for granting read permissions on the Simple Log Service project

      {
          "Version": "1",
          "Statement": [
              {
                  "Action": [
                      "log:Get*",
                      "log:List*"
                  ],
                  "Resource": "acs:log:*:*:project/<Project name>/*",
                  "Effect": "Allow"
              }
          ]
      }
    • Complete RBAC authorization

      After you complete RAM authorization, you must grant RBAC permissions to the RAM user to manage the Kubernetes resources displayed on the Inspections page of the ACK console. You must grant administrator permissions to the RAM user to manage your cluster. This authorizes the RAM user to manage the Kubernetes resources displayed on the Inspections page. For more information, see Grant RBAC permissions to RAM users or RAM roles.

Enable the inspection feature in an ACK cluster

  1. Log on to the ACK console. In the left-side navigation pane, click Clusters.

  2. On the Clusters page, click the name of the cluster that you want to manage and choose Security > Inspections in the left-side navigation pane.

  3. Optional: Install and update the security-inspector component.

    If you use the inspection feature for the first time and the security-inspector component is not installed, follow the prompts on the page to install it. If the version of the security-inspector component is not update-to-date, update the component to the latest version based on the prompts on the page. After the component is installed, you can click Security Inspection on the Overview tab of the Cluster Information page to go to the Inspections page.

    For more information about the introduction and release notes of the security-inspector component, see security-inspector.

  4. In the upper-right corner of the Inspections page, click Inspect. After the inspection is completed, click Details in the Actions column to view the detailed results.

    Important

    We recommend that you perform the inspection during off-peak hours.

  5. Optional: In the upper-right corner of the Inspections page, click Configure Periodic Inspection. In the panel that appears, you can enable or disable periodic inspections and configure inspection items.

Inspection details

The Inspections page provides a table to show the inspection results of different workloads. The following features are provided to display the inspection results:

  • Filters inspection results based on conditions such as Passed or Failed, Namespace, and Workload Type. Displays the values of Number of Passed Items and Number of Failed Items for each inspected workload.

  • Displays detailed information about each inspection item on the inspection details page, including the passed and failed inspection items of each pod and container, description of each inspection item, and suggestions on security reinforcement. To ignore failed inspection items, add them to the whitelist.

  • View the YAML files of the workloads.

Inspection reports

An inspection report provides the results of the latest inspection, including the following information:

  • Overview of the inspection results. This includes the total number of inspection items, the number and percentage of each inspected resource object type, and the overall health status of the cluster.

  • Statistics of the following inspection categories: health checks, images, networks, resources, and security conditions.

  • Detailed inspection results of the configurations of each workload. The results include resource categories, resource names, namespaces, inspection types, inspection items, and inspection results.

Inspection items

The following table describes the inspection items.

Inspection item

Inspection content and potential security risk

Suggestion

hostNetworkSet

Checks whether the pod specification of a workload contains the hostNetwork:true setting. This setting specifies that the pod uses the network namespace of the host. If the hostNetwork:true setting is specified, the host network may be attacked by containers in the pod and the data transfer in the host network may be sniffed.

Delete the hostNetwork field from the pod specification.

Example:1

hostIPCSet

Checks whether the pod specification of a workload contains the hostIPC:true setting. This setting specifies that the pod uses the inter-process communication (IPC) namespace of the host. If the hostIPC:true setting is specified, containers in the pod may attack the host processes and sniff process data.

Delete the hostIPC field from the pod specification.

Example:2

hostPIDSet

Checks whether the pod specification of a workload contains the hostPID:true setting. This setting specifies that the pod uses the process ID (PID) namespace of the host. If the hostPID:true setting is specified, containers in the pod may attack the host processes and collect process data.

Delete the hostPID field from the pod specification.

Example:3

hostPortSet

Checks whether the pod specification of a workload contains the hostPort field. This field specifies the host port to which the listening port of the pod is mapped. If the hostPort field is specified, the specified host port may be occupied without authorization and the container port may receive unexpected requests.

Delete the hostPort field from the pod specification.

Example:4

runAsRootAllowed

Checks whether the pod specification of a workload contains the runAsNonRoot:true setting. This setting specifies that containers in the pod are not allowed to run as the root user. If the runAsNonRoot:true setting is not specified, malicious processes in the containers may intrude into your applications, hosts, or cluster.

Add the runAsNonRoot:true setting to the pod specification.

Example:5

runAsPrivileged

Checks whether the pod specification of a workload contains the privileged:true setting. This setting specifies that containers in the pod are allowed to run in privileged mode. If the privileged:true setting is specified, malicious processes in the containers may intrude into your applications, hosts, or cluster.

Delete the privileged field from the pod specification.

Example:6

privilegeEscalationAllowed

Checks whether the pod specification of a workload contains the allowPrivilegeEscalation:false setting. This setting specifies that the child processes of a container cannot be granted higher privileges than the parent process. If the allowPrivilegeEscalation:false setting is not specified, malicious processes in the container may be granted escalated privileges and perform unauthorized operations.

Add the allowPrivilegeEscalation:false setting to the pod specification.

Example:7

capabilitiesAdded

Checks whether the pod specification of a workload contains the capabilities field. This field is used to enable Linux capabilities for processes in containers. The capabilities include SYS_ADMIN, NET_ADMIN, and ALL. If the capabilities field is specified, malicious processes in the containers may intrude into your applications, cluster components, or cluster.

Modify the pod specification to retain only the required Linux capabilities and remove other capabilities.

If processes in the containers do not require Linux capabilities, remove all Linux capabilities. Examples:

8

If processes in the containers require Linux capabilities, specify only the required Linux capabilities and remove other capabilities. Example:9

notReadOnlyRootFileSystem

Checks whether the pod specification of a workload contains the readOnlyRootFilesystem:true setting. This setting specifies that the root file system mounted to containers is read-only. If the readOnlyRootFilesystem:true setting is not specified, malicious processes in the containers may modify the root file system.

Add the readOnlyRootFilesystem:true setting to the pod specification. If you want to modify files in a specific directory, set volumeMounts in the pod specification.

Examples:

10

If you want to modify files in a specific directory, set the volumeMounts field in the pod configurations.

Example:11

cpuRequestsMissing

Checks whether the pod specification of a workload contains the resources.requests.cpu field. This field specifies the minimum CPU resources that are required for running each container. If the resources.requests.cpu field is not specified, the pod may be scheduled to a node that has insufficient CPU resources. This may lead to slow processes.

Add the resources.requests.cpu field to the pod specification.

Examples:

12

cpuLimitsMissing

Checks whether the pod specification of a workload contains the resources.limits.cpu field. This field specifies the maximum CPU resources that can be used to run each container. If the resources.limits.cpu field is not specified, abnormal processes in containers may consume an excessive amount of CPU resources or exhaust the CPU resources of the node or cluster.

Add the resources.limits.cpu field to the pod specification.

Examples:

13

memoryRequestsMissing

Checks whether the pod specification of a workload contains the resources.requests.memory field. This field specifies the minimum memory resources that are required to run each container. If the resources.requests.memory field is not specified, the pod may be scheduled to a node that has insufficient memory resources. As a result, processes in containers may be terminated when the Out of Memory (OOM) killer is triggered.

Add the resources.requests.memory field to the pod specification.

Examples:

14

memoryLimitsMissing

Checks whether the pod specification of a workload contains the resources.limits.memory field. This field specifies the maximum memory resources that can be used to by each container. If the resources.limits.memory field is not specified, abnormal processes in containers may consume an excessive amount of memory resources or exhaust the memory resources of the node or cluster.

Add the resources.limits.memory field to the pod specification.

Examples:

15

readinessProbeMissing

Checks whether the pod specification of a workload contains the readinessProbe field. This field specifies whether readiness probes are configured for containers. Readiness probes are used to check whether applications in the containers are ready to process requests. If the readinessProbe field is not specified, service exceptions may occur when requests are sent to applications that are not ready to process requests.

Add the readinessProbe field to the pod specification.

Examples:

16

livenessProbeMissing

Checks whether the pod specification of a workload contains the livenessProbe field. This field specifies whether liveness probes are configured for containers. Liveness probes are used to check whether a container restart is required to resolve application exceptions. If the livenessProbe field is not specified, the service may be interrupted when application exceptions can be resolved only by restarting containers.

Add the livenessProbe field to the pod specification.

Examples:

17

tagNotSpecified

Checks whether the image field in the pod specification of a workload specifies an image version or whether the value of the field is set to latest. If no image version is specified or the value of the field is set to latest, the service may be interrupted when containers use a wrong image version.

Modify the image field in the pod specification by specifying an image version. Set the field to a value other than latest.

Examples:

18

anonymousUserRBACBinding

Checks RBAC role bindings in the cluster and locates the configurations that allow access from anonymous users. If anonymous users are allowed to access the cluster, they may gain access to sensitive information, attack the cluster, and intrude into the cluster.

Remove the configurations that allow access from anonymous users from the RBAC role bindings.

Examples:

z-1

Events

Event type

Event name

Example of event content

Event description

Operation

Normal

SecurityInspectorConfigAuditStart

Start to running config audit

The system starts to inspect the cluster.

In this case, no action is required.

Normal

SecurityInspectorConfigAuditFinished

Finished running once config audit

The system finishes inspecting the cluster.

In this case, no action is required.

Warning

SecurityInspectorConfigAuditHighRiskFound

2 high risks have been found after running config audit

The inspection feature identifies security risks in workloads.

  1. Go to the Inspections page to view the inspection details.

  2. You can select filter options from the Passed or Failed, Namespace, and Workload Type drop-down lists to locate the workloads that have security risks. Then, click Details to view the inspection items of each workload and the suggestions on how to mitigate the risks.

    • If you want to ignore a risk, click Add to Whitelist to add the corresponding inspection item to the whitelist.

    • If you want to mitigate a risk, following the suggestions to mitigate it.