Admission Control & CVE Scanning: How to Block Unsafe Images Before They Reach the Cluster
Continuous Integration and Delivery (CI/CD) has revolutionized software development. Code changes …

When companies think about IT security, they usually focus on firewalls, encryption, or protection against phishing. However, legislators are now looking much deeper into the technological engine room. With the Cyber Resilience Act (CRA), the European Union has introduced a regulation that encompasses the entire software supply chain. Every digital product—from the firmware of an IoT sensor to a complex cloud platform—marketed in the EU must meet strict Security by Design criteria.
One area that is often neglected when preparing for the CRA in many architectures is the Domain Name System (DNS) and the preceding edge infrastructure. Yet, nameservers are not passive conduits; they are the first logical link in the digital supply chain. Securing the software but operating the infrastructure it is routed on as a black box risks significant sanctions under the CRA.
The Cyber Resilience Act requires manufacturers and operators of digital products to document security comprehensively throughout the entire lifecycle. A central tool for this is the Software Bill of Materials (SBOM)—a kind of digital package insert that lists every used open-source library, dependency, and infrastructure component bit by bit.
In the context of DNS operations, this leads to three fundamental new requirements for companies:
Many traditional DNS providers operate closed, proprietary systems. It is impossible for the customer to verify which software versions are running on global routing nodes and whether known security vulnerabilities (CVEs) exist there. Under the CRA, infrastructures must be auditable. Those operating critical applications must also be able to prove that the upstream edge layer is free from known vulnerabilities.
The CRA requires that security vulnerabilities must be promptly addressed throughout the entire lifecycle. If a company uses a rigid, proprietary DNS system, it is entirely dependent on the manufacturer’s update cycles. Proactive, independent vulnerability management at the network edge is blocked.
Changes to network routing or DNS zones may no longer occur unrecorded via manual click interfaces. The CRA demands complete traceability of all configuration steps to immediately forensically analyze manipulations or unauthorized interventions in the supply chain (e.g., DNS spoofing or unauthorized subdomain redirects).
To meet the requirements of the Cyber Resilience Act, the edge infrastructure (Anycast DNS, load balancers, monitoring) must be treated with the same stringent security standards as the application itself. This is achieved through the consistent use of containerization, open-source standards, and integrated security scans.
[ Edge-Infrastructure-Code ]
|
v (Automated Pipeline Scan)
[ CVE-Scanning & SBOM Generation ]
|
v (Cryptographic Signing / Harbor)
[ Live Operation on Sovereign Anycast Network ]Modern, sovereign edge platforms are not operated as rigid black boxes but are based on transparent, containerized microservices. This means: The software that controls Anycast routing and DNS resolution is managed in a private container registry (like Harbor) and runs through the same security pipeline as the actual application. Every update is automatically scanned for known vulnerabilities (CVEs) before being rolled out to the nameservers.
Since platform components are defined and packaged as code, a precise SBOM can be generated for the entire edge infrastructure at the push of a button. In an official audit, the company can immediately document which Linux kernel versions, routing protocols (BGP), and encryption libraries are in use.
To protect the integrity of the supply chain, the container images of the edge services are digitally signed (Content Trust). The Kubernetes-based target system in the data center verifies this signature before execution. An attacker attempting to introduce a compromised routing image into the system fails at this mathematical barrier. Every change to the DNS zones themselves is versioned securely via GitOps in the version control system.
The Cyber Resilience Act makes it unmistakably clear: A digital product is only as strong as its weakest link in the chain. Outsourcing traffic to opaque third-party providers without control options has become an incalculable risk in the modern industrial and corporate environment. Those who take digital sovereignty seriously must retain control over their edge infrastructure. Integrating Anycast DNS and edge services into a controllable, scannable, and fully documented software supply chain framework is therefore the only secure path to long-term CRA compliance.
The CRA was adopted by EU institutions and came into force after a phased transition period. Companies must fully meet the requirements for vulnerability management, SBOM generation, and security incident reporting to avoid significant fines—similar to those under the GDPR.
A manufacturer is any company that develops software products or connected digital components and markets them under its own name. However, if a company uses an edge platform to operate its own digital services (e.g., a customer portal or an IoT platform), it is responsible under its duty of care to ensure that the entire ICT infrastructure used complies with CRA criteria.
No, mere contractual assurances (terms and conditions) often do not suffice under the strict audit criteria of the CRA when it comes to critical digital products. Auditors demand technical evidence: they want to see the SBOMs, review the documented patch processes, and examine the audit logs of system configurations. A transparent open-source architecture provides the necessary data-based verifiability.
Continuous Integration and Delivery (CI/CD) has revolutionized software development. Code changes …
The European cybersecurity directive NIS-2 (Network and Information Security) has significantly …
The architecture of modern cloud-native platforms ideally follows the principle of statelessness. …