Securing the Kubernetes API server
The Kubernetes API server handles the REST API calls from users or applications running within the cluster to enable cluster management. Considered the gateway to the Kubernetes control plane, you can access the API server using kubeclt
, client libraries, or by making API requests directly. One way to manage authorization for the Kubernetes API server is using Kubernetes Role-Based Access Control (RBAC). You can also validate requests to the API server using admission controllers.
Protecting the API server starts with controlling its access. The Center for Internet Security (CIS) provides configuration best practices to harden and secure the API server.
Run the below command on your master node:
ps -ef | grep kube-apiserver
In the output, check to ensure that the:
--anonymous-auth
argument shows asfalse
. This setting ensures that requests not rejected by other authentication methods are not treated as anonymous and therefore allowed against policy.--basic-auth-file argument
isn’t there. Basic auth uses plaintext credentials, instead of the preferred tokens or certificates, for authentication.--insecure-allow-any-token
argument isn’t there. This setting will ensure that only secure tokens that are authenticated are allowed.–kubelet-https
argument either isn’t there or shows astrue
. This configuration ensures that connections between the API server and the kubelets are protected in transit via Transport Layer Security (TLS).--insecure-bind-address
argument isn’t there. This configuration will prevent the API server from binding to an insecure address, preventing non-authenticated and unencrypted access to your master node, which minimizes your risk of attackers potentially reading sensitive data in transit.--insecure-port
argument shows as0
. This setting will prevent the API server from serving on an insecure port, which would prevent unauthenticated and unencrypted access to the master node and minimize the risk of an attacker taking control of the cluster.--secure-port
argument either doesn’t exist or shows up as an integer between 1 and 65535. The goal here is to make sure all your traffic is served over https with authentication and authorization.--profiling
argument shows as false. Unless you’re experiencing bottlenecks or need to troubleshoot something, there’s no need for the profiler, and having it there unnecessarily opens you to exposure of system and program details.--repair-malformed-updates
argument shows asfalse
. This setting will ensure that intentionally malformed requests from clients are rejected by the API server.--enable-admission-plugins
argument is set with a value that doesn’t containAlwaysAdmit
. If you configure this setting to always admit, then it will admit requests even if they’re not explicitly allowed by the admissions control plugin, which would decrease the plugin’s effectiveness.--enable-admission-plugins
argument is set with a value that containsAlwaysPullImages
. This configuration ensures that users aren’t allowed to pull images from the node to any pod by simply knowing the name of the image. With this control enabled, images will always be pulled prior to starting a container, which will require valid credentials.--enable-admission-plugins
argument is set with a value that containsSecurityContextDeny
. This control ensures that you can’t customize pod-level security context in a way not outlined in the Pod Security Policy.--disable-admission-plugins
argument is set with a value that does not containNamespaceLifecycle
. You don’t want to disable this control, because it ensures that objects aren’t created in non-existent namespaces or in those namespaces set to be terminated.--audit-log-path
argument is set to an appropriate path where you want your audit logs to be stored. It’s always a good security practice to enable auditing for any Kubernetes components, when available, including the Kubernetes API server.--audit-log-maxage
argument is set to30
or whatever number of days you must store your audit log files to comply with internal and external data retention policies.--audit-log-maxbackup
argument is set to10
or any number that helps you meet your compliance requirements for retaining the number of old log files.--audit-log-maxsize
argument is set to100
or whatever number that helps you meet your compliance requirements. Note that number 100 represents 100 MB.--authorization-mode
argument is there and is not set toAlwaysAllow
. This setting ensures that only authorized requests are allowed by the API server, especially in production clusters.--token-auth-file
argument is not there. This argument, when present, uses static token-based authentication, which have several security flaws; use alternate authentication methods instead, such as certificates.--kubelet-certificate-authority
argument is there. This setting helps prevent a man-in-the-middle attack when there’s a connection between the API Server and the kubelet.--kubelet-client-certificate
and--kubelet-client-key
arguments are there. This configuration ensures that the API Server authenticates itself to the kubelet’s HTTPS endpoints. (By default, the API server doesn’t take this step.)--service-account-lookup
argument is there and set totrue
. This setting helps prevent an instance where the API server verifies only the validity of the authentication token without ensuring that the service account token included in the request is present in etcd.--enable-admission-plugins
argument is set to a value that containsPodSecurityPolicy
.--service-account-key-file
argument is there and is set to a separate public/private key pair for signing service account tokens. If you don’t specify public/private key pair, it will use the private key from the TLS serving certificate, which would inhibit your ability to rotate the keys for service account tokens.--etcd-certfile
and--etcd-keyfile
arguments are there so that the API server identifies itself to the etcd server using client cert and key. Note that etcd stores objects that are likely sensitive in nature, so any client connections must use TLS encryption.--disable-admission-plugins
argument is set and doesn’t containServiceAccount
. This configuration will make sure that when a new pod is created, it will not use a default service account within the same namespace.--tls-cert-file
and--tls-private-key-file
arguments are there such that the API Server serves only HTTPS traffic via TLS.--client-ca-file
argument exists to ensure that TLS and client cert authentication is configured for Kube cluster deployments.--etcd-cafile
argument exists and it is set such that the API server must verify itself to the etcd server via SSL Certificate Authority file.--tls-cipher-suites
argument is set in a way that uses strong crypto ciphers.--authorization-mode
argument is there with a value containingNode
. This configuration limits which objects kubelets can read associated with their nodes.--enable-admission-plugins
argument is set and contains the valueNodeRestriction
. This plugin ensures that a kubelet is allowed to modify only its own Node API object and those Pod API objects associated to its node.--encryption-provider-config
argument is set to aEncryptionConfig
file and this file should have all the needed resources. This setting ensures that all the REST API objects stored in the etcd key-value store are encrypted at rest.- Make sure
aescbc
encryption provider is utilized for all desired resources as this provider of encryption is considered the strongest. --enable-admission-plugins
argument contains the valueEventRateLimit
to set a limit on the number of events accepted by the API server for performance optimization of the cluster.--feature-gates
argument is not set with a value containingAdvancedAuditing=false
. In other words, make sure advanced auditing is not disabled for auditing and investigation purposes.--request-timeout
argument is either not set or set to an appropriate value (neither too short, nor too long). Default value is 60 seconds.--authorization-mode
argument exists and is set to a value that includes Kubernetes RBAC. This setting ensures that RBAC is turned on. Beyond simply turning it on, you should follow several other recommendations for how to best use RBAC, including:- Avoid giving users cluster-admin role because it gives very broad powers over the environment and should be used very sparingly, if at all.
- Audit your role aggregation rules to ensure you’re using them properly
- Don’t grant duplicated permissions to subjects because it can make access revocation more difficult
- Regularly remove unused roles
Last updated: May-31-2020