Skip to main content
🎀 Speaking at KubeCon EU 2026 Lessons Learned Orchestrating Multi-Tenant GPUs on OpenShift AI View Session
🎀 Speaking at Red Hat Summit 2026 GPUs take flight: Safety-first multi-tenant Platform Engineering with NVIDIA and OpenShift AI Learn More
DevOps

CRA Supply Chain Risk Management: Beyond Your Own Code

Luca Berton β€’ β€’ 1 min read
#cra#supply-chain#risk-management#sbom#compliance

πŸ”— Your Code Is Only as Secure as Your Dependencies

The CRA makes manufacturers responsible for the security of their entire supply chain β€” including every open source library, every transitive dependency, and every third-party component.

The Supply Chain Challenge

A typical web application has 500-1500 dependencies. Each one is a potential vulnerability:

# How many dependencies does your project actually have?
npm ls --all 2>/dev/null | wc -l    # Node.js
pip install pipdeptree && pipdeptree | wc -l  # Python
go mod graph | wc -l                 # Go

CRA Supply Chain Requirements

  1. Document all components β€” SBOM with direct and transitive dependencies
  2. Assess supplier security β€” evaluate the security practices of your suppliers
  3. Monitor continuously β€” new CVEs affect existing dependencies daily
  4. Patch promptly β€” incorporate upstream security fixes in a timely manner
  5. Contractual requirements β€” ensure third-party suppliers meet CRA standards

Practical Implementation

# Automated supply chain monitoring
dependency-monitor:
  schedule: "0 */6 * * *"  # Every 6 hours
  steps:
    - generate-sbom
    - scan-vulnerabilities
    - check-license-compliance
    - verify-supplier-attestations
    - alert-on-findings

Vendor Assessment Checklist

For each critical supplier, assess:

  • Do they provide SBOMs for their products?
  • Do they have a vulnerability disclosure process?
  • What is their patch response time?
  • Are they CRA-compliant themselves?
  • Do they sign their releases?

Key Insight

The CRA creates a chain of responsibility. Your suppliers’ security posture directly affects your compliance. Choose suppliers who take security seriously β€” and verify, don’t trust.


Need help with CRA supply chain compliance? I help organizations build secure supply chain management. Get in touch.

Share:

Luca Berton

AI & Cloud Advisor with 18+ years experience. Author of 8 technical books, creator of Ansible Pilot, and instructor at CopyPasteLearn Academy. Speaker at KubeCon EU & Red Hat Summit 2026.

Luca Berton Ansible Pilot Ansible by Example Open Empower K8s Recipes Terraform Pilot CopyPasteLearn ProteinLens TechMeOut