Skip to main content
In this lesson, we recap essential automation and tooling for cloud-native security. Throughout this course, you’ve explored multiple open source and commercial solutions. Here, we review those tools, highlight alternatives, and reference key resources such as the Cloud Native Security Whitepaper by SIG Security.
The image is a cover for the "Cloud Native Security Whitepaper" by TAG Security, featuring a blue abstract background and a list of contributors and reviewers.
The Cloud Native Security Whitepaper provides foundational guidance authored by industry experts. To interactively explore security tools mapped to each phase of the application lifecycle, visit the Cloud Native Security Map:
The image is a cover for a "Cloud Native Security Whitepaper" featuring a "Cloud Native Security Map," which serves as a guide for navigating the cloud native security landscape. It includes sections on development, distribution, deployment, runtime, security assurance, and compliance.
Explore the interactive map at cnsmap.netfly.app to discover security tools and best practices organized by Develop, Distribute, Deploy, and Runtime phases.

Development Phase

The Develop phase emphasizes “shift-left” testing by integrating security early in code, Dockerfile, and infrastructure-as-code creation. Commit artifacts to repositories (GitHub, GitLab, etc.) with automated checks to:
  • Block high-severity vulnerabilities when fixes exist
  • Enforce non-root container execution
  • Restrict allowed base images
The image is a diagram illustrating a software development process, highlighting stages like coding, committing, distributing, deploying, and runtime, with an emphasis on "Shift-Left" for early testing and integration.

Fuzz Testing with OSS-Fuzz

Google’s [OSS-Fuzz][oss-fuzz] automates fuzz testing of open source projects to discover crashes and undefined behavior.
Below is a simple fuzz harness for parse_integer:
Example output:

IDE & CLI Security Extensions

  • [Snyk VS Code Extension][snyk-vscode]
  • Fabricate by Red Hat (VS Code plugin)
  • [kube-linter][kube-linter] – Scan Kubernetes YAML:

Distribution Phase

In the Distribute phase, CI/CD pipelines build, test, and push container images to registries. Common tools include: Before building images, enforce policy compliance on manifests:
  • [KubeSec][kubesec] scans Kubernetes YAML for misconfigurations.
  • TeraScan validates IaC (Terraform, Dockerfile, Helm, CloudFormation) against CIS, NIST, GDPR, HIPAA.
Always validate manifests before image builds to prevent deployment of insecure configurations.
After validation, build and scan images: To secure the software supply chain, use signing frameworks:
  • [in-toto][in-toto] – End-to-end supply chain security
  • [Notary][notary], [TUF][tuf], [Sigstore][sigstore]
The image is a diagram illustrating a software development and distribution pipeline, featuring tools for build pipelines, app tests, container manifests, security tests, signing/trust, and container registry. It includes logos of various tools like Tekton, Jenkins, Trivy, and Dockerhub, organized under different stages from development to deployment.

Deployment Phase

The Deploy phase covers pre-flight checks, observability, and incident response:
  • Pre-flight Checks
    • [OPA Gatekeeper][gatekeeper] – Policies in Rego
    • [Kyverno][kyverno] – YAML-based policy management
  • Observability
    • [Prometheus][prometheus] + [Grafana][grafana]
    • [Elasticsearch][elasticsearch] + [Kibana][kibana]
    • [OpenTelemetry][otel]
  • Response & Investigation
    • [Wazuh][wazuh]
    • [Snort][snort]
    • [Zeek][zeek]
The image illustrates a software development and deployment process, highlighting tools for pre-flight checks, observability, and response & investigation, with a dashboard showing incident response data.

Runtime Phase

Once applications are live, enforce continuous security and reliability:
  • CIS Benchmarking
    • [kube-bench][kube-bench] – CIS checks for Kubernetes clusters:
  • Runtime Security
    • Falco – System call monitoring
    • Trivy – Continuous workload scanning
    • SPIFFE – Workload identity via certificates
  • Service Mesh
    • Istio, Linkerd
  • Storage Orchestration
    • Rook, Ceph, Gluster
  • Access Management
    • Keycloak, Teleport, HashiCorp Vault
The image is a categorized list of DevOps tools used for development, distribution, and deployment processes, including sections for build pipelines, security tests, observability, and more. Each category contains specific tools like Jenkins, Prometheus, and Istio.

Summary

Map these tools to your cloud-native lifecycle for improved security and efficiency:
  • Develop: Shift-left scanners & IDE plugins
  • Distribute: CI/CD pipelines, manifest & image scanners, signing frameworks
  • Deploy: Policy enforcement, observability, incident response
  • Runtime: Continuous monitoring, service mesh, access & storage management

Watch Video