All Projects → cruise-automation → K Rail

cruise-automation / K Rail

Licence: apache-2.0
Kubernetes security tool for policy enforcement

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to K Rail

K3s
Lightweight Kubernetes
Stars: ✭ 18,646 (+5227.43%)
Mutual labels:  k8s
Ingressmonitorcontroller
A Kubernetes controller to watch ingresses and create liveness alerts for your apps/microservices in UptimeRobot, StatusCake, Pingdom, etc. – [✩Star] if you're using it!
Stars: ✭ 306 (-12.57%)
Mutual labels:  k8s
Kubeoperator
KubeOperator 是一个开源的轻量级 Kubernetes 发行版,专注于帮助企业规划、部署和运营生产级别的 K8s 集群。
Stars: ✭ 4,147 (+1084.86%)
Mutual labels:  k8s
Openshift Acme
ACME Controller for OpenShift and Kubernetes Cluster. (Supports e.g. Let's Encrypt)
Stars: ✭ 287 (-18%)
Mutual labels:  k8s
Kubernetes Ingress
NGINX and NGINX Plus Ingress Controllers for Kubernetes
Stars: ✭ 3,528 (+908%)
Mutual labels:  k8s
Policy Bot
A GitHub App that enforces approval policies on pull requests
Stars: ✭ 297 (-15.14%)
Mutual labels:  policy
Kubo Deployment
Contains manifests used to deploy Cloud Foundry Container Runtime
Stars: ✭ 283 (-19.14%)
Mutual labels:  k8s
Trumptracker.github.io
Open source for http://trumptracker.github.io/
Stars: ✭ 338 (-3.43%)
Mutual labels:  policy
K3sup
bootstrap Kubernetes with k3s over SSH < 1 min 🚀
Stars: ✭ 4,012 (+1046.29%)
Mutual labels:  k8s
Admiral
Admiral provides automatic configuration generation, syncing and service discovery for multicluster Istio service mesh
Stars: ✭ 323 (-7.71%)
Mutual labels:  k8s
Kubekey
Provides a flexible, rapid and convenient way to install Kubernetes only, both Kubernetes and KubeSphere, and related cloud-native add-ons. It is also an efficient tool to scale and upgrade your cluster.
Stars: ✭ 288 (-17.71%)
Mutual labels:  k8s
Ccat
Cloud Container Attack Tool (CCAT) is a tool for testing security of container environments.
Stars: ✭ 300 (-14.29%)
Mutual labels:  k8s
Gb28181.solution
Linux/Win/Docker/kubernetes/Chart/Kustomize/GB28181/SIP/RTP/SDP/WebRTC/作为上下级域/平台级联互联
Stars: ✭ 323 (-7.71%)
Mutual labels:  k8s
Kube No Trouble
Easily check your cluster for use of deprecated APIs
Stars: ✭ 280 (-20%)
Mutual labels:  k8s
Mkit
MKIT is a Managed Kubernetes Inspection Tool that validates several common security-related configuration settings of managed Kubernetes cluster objects and the workloads/resources running inside the cluster.
Stars: ✭ 330 (-5.71%)
Mutual labels:  k8s
Dew
微服务一站式解决方案,提供:架构指南、容器优先/兼容Spring Cloud与Service Mesh的框架、最佳实践及Devops标准化流程。
Stars: ✭ 285 (-18.57%)
Mutual labels:  k8s
Adapt
ReactJS for your infrastructure. Create and deploy full-stack apps to any infrastructure using the power of React.
Stars: ✭ 317 (-9.43%)
Mutual labels:  k8s
Gitkube
Build and deploy docker images to Kubernetes using git push
Stars: ✭ 3,620 (+934.29%)
Mutual labels:  k8s
Gotok8s
Goto Kubernetes
Stars: ✭ 336 (-4%)
Mutual labels:  k8s
Irods
Open Source Data Management Software
Stars: ✭ 321 (-8.29%)
Mutual labels:  policy

k-rail

CI Status Go Report Card Docker Hub Build Status

k-rail is a workload policy enforcement tool for Kubernetes. It can help you secure a multi tenant cluster with minimal disruption and maximum velocity.

Why k-rail?

By default, the Kubernetes APIs allow for a variety of easy privilege escalation routes. When operating a multi-tenant cluster, many features can be dangerous or introduce instability and must be used judiciously. k-rail attempts to make workload policy enforcement easy in Kubernetes, even if you already have a large number of diverse workloads. Several features enable you to roll out policy enforcement safely without breaking existing workloads:

  • Passive report-only mode of running policies
  • Structured violation data logged, ready for analysis and dashboards
    {
      "enforced": true,
      "kind": "PodExec",
      "namespace": "ecommerce",
      "policy": "pod_no_exec",
      "resource": "payment-processor",
      "user": "[email protected]",
      "time": "2019-11-03T06:28:07Z"
    }
    
  • Flexible and powerful policy exemptions by cluster, resource name, namespace, groups, and users
    ---
    - cluster_name: paas-ci-us-west1
      resource_name: "*"
      namespace: "cluster-conformance-testing"
      username: "[email protected]"
      group: "*"
      exempt_policies:
        - "pod_no_privileged_containers"
        - "pod_no_bind_mounts"
        - "pod_no_host_network"
        - "pod_default_seccomp_policy"
        - "pod_no_host_pid"
        - "pod_no_exec"
    
  • Realtime interactive feedback for engineers and systems that apply resources
    $ kubectl apply --namespace default -f examples/non-compliant-ingress.yaml
    Error from server (InternalError): error when creating "examples/non-compliant-ingress.yaml":
    Internal error occurred: admission webhook "k-rail.cruise-automation.github.com" denied the request:
    Ingress bad-ingress had violation: Require Ingress Exemption: Using the 'public' Ingress class requires an exemption
    Ingress bad-ingress had violation: Requires Unique Ingress Host: Ingress Host should not point to multiple namespaces
    

By leveraging the first three features you can quickly and easily roll out enforcement to deployments without breaking them and monitor violations with confidence. The interactive feedback informs and educates engineers during future policy violations.

Cruise was able to utilize this software to apply enforcement to more than a dozen clusters with thousands of existing diverse workloads in all environments in about a week without breaking existing deployments. Now you can too.

Suggested usage

If you have a new cluster without existing workloads, just run k-rail in enforcement mode for the policies you desire and add exemptions as needed.

If you have a cluster with existing workloads, run it in monitor mode for a few weeks or until you have collected enough data. The violation events are emmitted in the logs in JSON, so it is suggested that you analyze that data collected to make exemptions as needed. Once the exemptions are applied, you can safely turn on enforcement mode without breaking existing workloads.

Installation

You can install or update k-rail using the helm chart in charts/k-rail. You can install the latest chart directly from our repo, by running:

# add the helm repo
helm repo add k-rail https://cruise-automation.github.io/k-rail/
helm repo update

# prepare the namespace
kubectl create namespace k-rail
kubectl label namespace k-rail k-rail/ignore=true

# install
helm install k-rail k-rail/k-rail --namespace k-rail

For the Helm deployment, all configuration for policies and exemptions are contained in charts/k-rail/values.yaml.

For Helm 2 and below, it is recommended to use helm template render the YAML for applying rather than using Helm Tiller:

helm template --namespace k-rail charts/k-rail | kubectl apply -f -

By default all policies are enforced (report_only: false).

Test the default configuration by applying the provided non-compliant deployment:

kubectl apply --namespace default -f examples/non-compliant-deployment.yaml

Removal

If ussing helm install,

helm uninstall k-rail --namespace k-rail

If using helm template,

helm template --namespace k-rail charts/k-rail | kubectl delete -f -

Viewing policy violations

There are a few ways of viewing violations. Violations from realtime feedback and the Events API is most useful for users, but violations from logs is most useful for presentation and analysis.

Violations from realtime feedback

You may see violations when applying your resources:

$ kubectl apply -f examples/non-compliant-deployment.yaml

Error from server (k-rail): error when creating "examples/non-compliant-deployment.yaml": admission webhook "k-rail.cruise-automation.github.com" denied the request:
Deployment bad-deployment had violation: Host Bind Mounts: host bind mounts are forbidden
Deployment bad-deployment had violation: Docker Sock Mount: mounting the Docker socket is forbidden
Deployment bad-deployment had violation: Immutable Image Reference: image tag must include its sha256 digest
Deployment bad-deployment had violation: No Host Network: Using the host network is forbidden
Deployment bad-deployment had violation: No Privileged Container: Using privileged containers is forbidden
Deployment bad-deployment had violation: No New Capabilities: Adding additional capabilities is forbidden
Deployment bad-deployment had violation: No Host PID: Using the host PID namespace is forbidden
Deployment bad-deployment had violation: Safe to evict: annotation is required for Pods that use emptyDir or hostPath mounts to enable cluster autoscaling

Violations from the Events API

You can also see violations that have occurred recently with the events API:

$ kubectl get events --namespace default
LAST SEEN   TYPE      REASON         KIND         MESSAGE
3m41s       Warning   FailedCreate   ReplicaSet   Error creating: admission webhook "k-rail.cruise-automation.github.com" denied the request:
bad-pod-5f7cd9bf45-rbhsb had violation: Docker Sock Mount: mounting the Docker socket is forbidden

Violations from logs

Violations are also emitted as structured data in the logs:

$ kubectl logs --namespace k-rail --selector name=k-rail | jq '.'

{
  "enforced": true,
  "kind": "Deployment",
  "namespace": "default",
  "policy": "pod_no_host_network",
  "resource": "evil-deployment",
  "time": "2019-10-23T19:54:24Z",
  "user": "[email protected]"
}
{
  "enforced": true,
  "kind": "Deployment",
  "namespace": "default",
  "policy": "pod_no_privileged_container",
  "resource": "evil-deployment",
  "time": "2019-10-23T19:54:24Z",
  "user": "[email protected]"
}
{
  "enforced": true,
  "kind": "Deployment",
  "namespace": "default",
  "policy": "pod_no_new_capabilities",
  "resource": "evil-deployment",
  "time": "2019-10-23T19:54:24Z",
  "user": "[email protected]"
}

Since the violations are outputted as structured data, you are encouraged to aggregate and display that information. GCP BigQuery + Data Studio, Sumologic, Elasticsearch + Kibana, Splunk, etc are all capable of this.

Supported policies

No ShareProcessNamespace

shareProcessNamespace: true is a Pod Spec directive that puts all containers in a Pod within the same PID Namespace. When this occurs, containers can, for example, access each others' filesystem and memory, as long as they share user and group IDs. These effects could be unexpected, especially if security (e.g. egress controls) occurs in a sidecar container.

No Exec

The No Exec policy prevents users from execing into running pods unless they have an exemption. This policy is typically enforced within a production environment, but run in report-only mode in dev and staging environments to facilitate debugging.

Execing into a pod can enable someone to do many nefarious things to that workload. Eventually this policy will also apply a taint label to the Pod to indicate that it should no longer be trusted and can be evicted.

No Bind Mounts

Host bind mounts (also called hostPath mounts) can be used to exfiltrate data from or escalate privileges on the host system. Using host bind mounts can cause unreliability of the node if it causes a partition to fill up.

No Docker Sock Mount

The Docker socket bind mount provides API access to the host Docker daemon, which can be used for privilege escalation or otherwise control the container host. Using Docker sock mounts can cause unreliability of the node because of the extra workloads that the Kubernetes schedulers are not aware of.

Note: It is recommended to use the No Bind Mounts policy to disable all hostPath mounts rather than only this policy, because it is easily bypassed. This policy does not provide meaningful protection and is here for informative purposes.

EmptyDir size limit

By default, an emptyDir lacks a sizeLimit parameter, and is disk-based; a Pod with access to said emptyDir can consume the Node's entire disk (i.e. the limit is unbounded) until the offending Pod is deleted or evicted, which can constitute a denial-of-service condition at the affected Node (i.e. DiskPressure). This policy

  • sets the configured default size when none is set for an emptyDir volume
  • reports a violation when the size is greater then the configured max size

Policy configuration

policy_config:
    mutate_empty_dir_size_limit:
      maximum_size_limit: "1Gi"
      default_size_limit: "512Mi"

Mutate Default Seccomp Profile

Sets a default seccomp profile (runtime/default or a configured one) for Pods if they have no existing seccomp configuration. The default seccomp policy for Docker and Containerd both block over 40 syscalls, many of which are potentially dangerous. The default policies are usually very compatible with applications, too.

Policy configuration

The Mutate Default Seccomp Profile policy can be configured in the k-rail configuration file.

Example

policy_config:
  policy_default_seccomp_policy: "runtime/default"

Immutable Image Reference

Docker image tags in a registry are mutable, so if you reference a tag without specifying the image digest someone or something could change the image you were using without you knowing.

You can obtain the immutable reference for an image with this command:

$ docker inspect --format='{{index .RepoDigests 0}}' alpine:3.8  
[email protected]:dad671370a148e9d9573e3e10a9f8cc26ce937bea78f3da80b570c2442364406
You can also add the tag back in for it to be more human readable:

alpine:[email protected]:dad671370a148e9d9573e3e10a9f8cc26ce937bea78f3da80b570c2442364406

No Host Network

Host networking enables packet capture of host network interfaces and a bypass to some cloud meta data APIs, such as the GKE metadata API. The metadata API can be used to escalate access.

No Host PID

The host PID namespace can be used to inspect process environment variables (which often contain secrets). It can also potentially be used to dump process memory, modify kernel parameters, and insert kprobes+uprobes into the kernel to exfiltrate information.

No New Capabilities

Kernel Capabilities can be used to escalate to level of kernel API access available to the process. Some can enable loading kernel modules, changing namespace, load eBPF byte code in the kernel and other potentially dangerous things.

No Privileged Container

Privileged containers have all capabilities and also removes cgroup resource accounting.

No Helm Tiller

Helm Tiller installations often have an unauthenticated API open to the cluster which provides a privilege escalation route to ClusterAdmin or NamespaceEditor.

Note: This policy only blocks images that /tiller in their name from being deployed. It is not a robust policy and serves more as a reminder for engineers to seek an alternate route of deployment, such as using helm template or isopod.

Trusted Image Repository

There are many malicious, poorly configured, and outdated and vulnerable images available in public Docker image repositories. Images must be sourced from configured trusted internal repositories or from an official Docker Hub repository.

Policy configuration

The Trusted Image Repository policy can be configured in the k-rail configuration file.

Example

policy_config:
  policy_trusted_repository_regexes:
    - '^gcr.io/some-gcr-repo/.*'   # private GCR repo
    - '^k8s.gcr.io/.*'             # official k8s GCR repo
    - '^[A-Za-z0-9\-:@]+$'         # official docker hub images

Safe to Evict (DEPRECATED)

DEPRECATED - See Mutate Safe to Evict below

The Kubernetes autoscaler will not evict pods using hostPath or emptyDir mounts unless they have this annotation:

cluster-autoscaler.kubernetes.io/safe-to-evict=true

This policy validates that Pods have this annotation. You'll probably find the mutation policy below more useful.

Mutate Safe to Evict

The Kubernetes autoscaler will not evict pods using hostPath or emptyDir mounts unless they have this annotation:

cluster-autoscaler.kubernetes.io/safe-to-evict=true

This policy mutates Pods that do not have the annotation specfied to be true. It will not override existing annotations with false.

You can also set the annoation on existing Pods with this one-liner:

$ kubectl get po --all-namespaces -o json | jq -r '.items[] | select(.spec.volumes[].hostPath or .spec.volumes[].emptyDir) | [ .metadata.namespace, .metadata.name ] | @tsv' | while IFS=$'\t' read -r namespace pod; do echo "\n NAMESPACE: $namespace \n POD: $pod \n"; kubectl annotate pod -n $namespace $pod "cluster-autoscaler.kubernetes.io/safe-to-evict=true"; done

Mutate Image Pull Policy

There are cerntain images which require the enforcement of the ImagePullPolicy according to different user scenarios

  • IfNotPresent It can reduce the unnecessary traffic (Auth and Download requests) to Image repository and reuse the image which is cached on the node
  • Always It can be useful when it requires the absolute isolation in multi-tenant cluster, which prevents others to reuse the image cached on the node, for example: The image protected with ImagePullSecret from private repository is cached on the node after first successful pull, other user can directly pull from node without proper auth. However if we force the imagePullPolicy to Always, it would fail without proper ImagePullSecret

Policy configuration

The Mutate Image Pull Policy can be configured in the k-rail configuration file.

Example

policy_config:
  mutate_image_pull_policy:
    IfNotPresent: 
      - '^gcr.io/repo/image1.*'
      - '^gcr.io/repo/image2.*'
    Always:
      - '^gcr.io/private-repo/secretimage.*'

Require Ingress Exemption

The Require Ingress Exemption policy requires the configured ingress classes to have an a Policy exemption to be used. This is typically useful if you want to gate the usage of public ingress.

Policy configuration

The Require Ingress Exemption policy can be configured in the k-rail configuration file.

Example

policy_config:
  policy_require_ingress_exemption_classes:
    - nginx-public

Unique Ingress Host

Unique Ingress Host policy requires the configured ingress hosts to be unique across cluster namespaces. This is helps to prevent ingress host collisions.

Service type LoadBalancer annotation check

Annotations used on services are used to configure public IPs or other cloud provider specific parameters.

This policy validates the annotations put on a service and will reject services defined with annotations outside the acceptable range.

Policy configuration

Each annotation to police is configured with a list of possible values and a parameter allow_missing which defines if a service is allowed without this annotation present.

policy_config:
  policy_require_service_loadbalancer_annotations:
    - annotation: "cloud.google.com/load-balancer-type"
      allowed_values: 
        - internal
        - external
      allow_missing: false

No Persistent Volume Host Path

Enforcing the policy prevents direct access to potentially sensitive files or directories at the Node-level via Persistent Volumes. Production clusters should not use HostPath. Instead a cluster administrator would provision a network resource like a Google Compute Engine persistent disk, an NFS share, or an Amazon Elastic Block Store volume.

No Anonymous Cluster Role Binding

Enforcing the policy prevents the creation of cluster level role bindings that authorize unathenticated or anonymous users to access resources.

No Anonymous Role Binding

Enforcing the policy prevents the creation of namespace level role bindings that authorize unathenticated or anonymous users to access resources.

Invalid Pod Disruption Budget

Prevent misconfigured pod disruption budgets from disrupting normal system maintenance such as node drains. Ensures that

  • minAvailable is less than the items replicas
  • maxUnavailable is greater than or equal to 1

No External IP on Service

Prevents providing External IPs on a Service to mitigate CVE-2020-8554.

Deny Unconfined AppArmor Policies

Prevents users from specifing an unconfined apparmor policy which can be used with other conditions to lead to container escape.

Protect CRD From Accidental Deletion

When a Custom Resource Definition is deleted the corresponding Custom Resources are deleted as well. This creates the risk of accidentally destroying important data during regular maintenance. This policy allows the user to set the annotation k-rail.crd.protect: enabled on any CRD which will prevent its deletion if any children CRs exist.

Configuration

For the Helm deployment, all configuration is contained in charts/k-rail/values.yaml.

Webhook Configuration

By default, k-rail will "fail close" if it cannot be reached by the API server. k-rail can be changed to "fail open" by changing the failurePolicy directive from Fail to Ignore, in charts/k-rail/values.yaml. See the Kubernetes docs for more details.

In Kubernetes 1.15 and beyond, mutating admission webhooks (e.g. k-rail) can elect to be polled again, if a subsequent admission plugin (such as another webhook) modifies an object the webhook has interacted with. They do so with a reinvocationPolicy value of IfNeeded; the Kubernetes default value is Never, which does not reinvoke the mutating admission webhook(s). Since this is a newer type field, k-rail omits by default, but operators can set a chosen value by commenting out reinvocationPolicy in charts/k-rail/values.yaml. See the associated KEP for more details on reinvocationPolicy and admission plugin ordering.

Logging

Log levels can be set in the k-rail configuration file. Acceptable values are debug, warn, and info. The default log level is info.

All reporting and enforcement operations are logged in a structured json blob per event. It is useful to run policies in report-only mode, analyze your state in with the structured logs, and flip on enforcement mode when appropriate.

Modes of operation

Global report-only mode

When global_report_only_mode is toggled in the config, ALL policies run in report_only mode, even if configured otherwise. This mode must be false to have any policies in enforcement mode.

Policy modes

Policies can be enabled/disabled, and run in report-only or enforcement mode as specified in the config.

Policy exemptions

A folder to load policy exemptions from can be specified from config. Load exemptions by specifying the -exemptions-path-glob parameter, and specify a path glob that includes the exemptions, such as /config/policies/*.yaml.

For the Helm deployment, all policy and exemption configuration is contained in charts/k-rail/values.yaml.

The format of an exemption config is YAML, and looks like this:

---
# exempt all kube-system pods since they are largely provided by GKE
- resource_name: "*"
  namespace: "kube-system"
  exempt_policies:
  - "*"

# malicious-pod needs host network to escalate access via GCE metadata API
- resource_name: malicious-pod
  namespace: malicious
  exempt_policies: ["pod_no_host_network"]

# allow everything
# - resource_name: "*"
#   namespace: "*"
#   username: "*"
#   group: "*"
#   exempt_policies: ["*"]

Note: The resource name automatically has a trailing glob appended in order to match resources created by controllers. This could lead to unintended matches.

Policy configuration

Some policies are configurable. Policy configuration is contained in the k-rail configuration file, and documentation for a policy's configuration can be found in the Supported policies heading above.

For the Helm deployment, all policy and exemption configuration is contained in charts/k-rail/values.yaml.

Adding new policies

Policies must satisfy this interface:

// Policy specifies how a Policy is implemented
// Returns an optional slice of violations and an optional slice of patch operations if mutation is desired.
type Policy interface {
  Name() string
  Validate(ctx context.Context,
    config policies.Config,
    ar *admissionv1.AdmissionRequest,
  ) ([]policies.ResourceViolation, []policies.PatchOperation)
}

Name() must return a string that matches a policy name that is provided in configuration. Validate accepts an AdmissionRequest, and the resource of interest must be extracted from it. See resource/pod.go for an example of extracting PodSpecs from an AdmissionRequest. If mutation on a resource is desired, you can return a slice of JSONPatch operations and nil for the violations.

Policies can be registered in internal/policies.go. Any policies that are registered but do not have configuration provided get enabled in report-only mode.

Debugging

Resources are having timeout events

If you see timeout events on resources, this may be because the k-rail service is unreachable from the Kubernetes apiserver. Newer versions (1.14+) of Kubernetes are not likely to have this issue if the MutatingWebhookConfiguration failurePolicy is set to Ignore and timeoutSeconds is set to a lower number (such as 5 or less).

To determine if this is occuring because the service is unreachable, check the kube-apiserver logs. You will see logs similar to,

E0911 04:57:22.686526       1 dispatcher.go:68] failed calling webhook "k-rail.cruise-automation.github.com": Post https://k-rail.k-rail.svc:443/?timeout=30s: dial tcp 10.110.63.191:443: connect: connection refused

Checking kube-apiserver logs

Checking kube-apiserver logs depends on what Kubernetes distribution you use.

  • For minikube and other self hosted (meaning Kubernetes runs its infra on itself) clusters, you can typically just view the logs for the apiserver pod in the kube-system namespace.

  • For some non self-hosted clusters, such as GKE, you can download the apiserver logs through the Kubernetes proxy:

    kubectl proxy --port 8001 &
    curl http://localhost:8001/logs/kube-apiserver.log > /tmp/out.log
    

Viewing webhook latency and status code metrics

The apiserver tracks latency and status code metrics for webhooks. This may be useful for debugging timeouts or assurance of performance.

kubectl proxy --port 8001 &
curl -s http://localhost:8001/metrics | grep k-rail

Policies are enabled, but are not triggering when they should

This may be caused by the k-rail service being unreachable. To determine this, see Resources are having timeout events.

Policies are enabled, but a deployment is blocked and an exemption is needed

If you need to make an exemption to a policy, see Policy exemptions.

Checking the mTLS certificate expiration

By default, a 10 year certificate is generated during each apply of k-rail. Re-applying will renew it.

You can also check the expiration with this command:

$ kubectl get secret --namespace k-rail k-rail-cert -o json | jq -r '.data["cert.pem"]' | base64 -d | openssl x509 -noout -text | grep -A 3 "Validity"

        Validity
            Not Before: Oct 24 05:40:16 2019 GMT
            Not After : Oct 21 05:40:16 2029 GMT
        Subject: CN = k-rail.k-rail.svc

License

Copyright (c) 2019-present, Cruise LLC

This source code is licensed under the Apache License, Version 2.0, found in the LICENSE file in the root directory of this source tree. You may not use this file except in compliance with the License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].