Building Trusted TLS in Kubernetes Without InsecureSkipVerify Using cert-manager and trust-manager
The original post from the OTUS blog describes a practical approach to replacing insecure TLS configurations in a Kubernetes cluster. The environment uses Talos as the operating system, Cilium for networking, and Linstor for storage. While pods can already communicate and persist data, most internal traffic still relies on self-signed certificates that no party trusts by default.
The solution centers on three core components. First, cert-manager provisions an internal CA using a bootstrap self-signed issuer to create the CA certificate itself. A subsequent ClusterIssuer named internal-ca then signs workload certificates, storing them in Secrets with automatic renewal. Second, trust-manager extracts only the public portion of the CA and distributes it cluster-wide as ConfigMaps via a Bundle resource, enabling workloads to verify certificates without receiving private keys.
For external exposure, a separate ACME issuer connected to Let's Encrypt automates certificate issuance. When Gateway API is present, cert-manager temporarily creates an HTTPRoute for HTTP-01 challenges and cleans it up afterward. The article also addresses the kubelet serving certificate, which defaults to a self-signed value that the API server often skips verifying.
Enabling serverTLSBootstrap in Talos allows the kubelet to request a properly signed certificate via the Kubernetes CSR API. The kubelet-serving-cert-approver controller then inspects each request against the corresponding Node object, approving only those whose SANs match the node's name and addresses. This replaces the common --kubelet-insecure-tls behavior.
The post emphasizes that these insecure patterns can persist undetected because Kubernetes provides no explicit warnings. API server logs and kubectl commands continue to function while half the control-plane traffic bypasses certificate validation. Implementing the described issuers, trust distribution, and CSR approver creates a consistent trust model that works across any Kubernetes distribution, with only one Talos-specific line required for kubelet certificate rotation.
Related articles
Designing and Implementing Private Cloud Security Across Geographically Distributed Data Centers
The article shares practical experience in designing and deploying protection for a private cloud hosted across two geographically separated data center sites. The project aimed to achieve service resilience, meet information security requirements, and maintain manageable infrastructure. While theoretical designs often combine standard best practices such as high availability, network segmentation, next-generation firewalls, and dynamic routing, real-world implementation revealed significant conflicts between architectural components. Multiple contractor teams participated, each bringing different visions for network architecture and security controls, leading to complex negotiations and compromises. The process evolved into an engineering puzzle where proposed solutions had to be integrated into a functional, scalable system despite technical limitations and differing priorities. The full piece focuses on the journey from an idealized design to practical deployment through iterative problem-solving rather than deep technical dives.
VK Tech Adds Multi-Level Memory to AI Agents in VK AI Space Platform
VK Tech has introduced a four-layer memory system for AI agents within its VK AI Space platform, enabling them to retain context, reuse materials, and incorporate past employee edits instead of restarting tasks from scratch. The new capability is expected to reduce the share of repeatedly solved tasks by 40–50 percent. Memory layers include session memory for current dialogues, user memory for employee profiles and preferences, project memory for specific project materials and rules, and agent memory for recording successful approaches and human corrections. This transforms AI agents from short-term tools into consistent team participants that can draw on accumulated corporate knowledge during tasks such as tender preparation, incident investigation, and product launches. Access remains strictly limited to information the collaborating employee is authorized to view, with all data stored inside the company perimeter and never sent to external services. Users can review and delete stored information at any time. VK Tech believes the feature will convert individual specialist experience into a persistent organizational asset that carries forward across tasks.
Efort Qizhi Demonstrates Humanoid Robots Mastering Industrial Tasks Through Universal Technology Base at WAIC 2026
At WAIC 2026 in Shanghai, Efort Qizhi presented its humanoid robots performing complex tasks on uneven terrain, including lifting irregular boulders and installing large photovoltaic panels without prior task-specific coding. The company showcased its HALO human skill collection suit that captures multi-modal data including vision, force, touch and language to distill human operations into robot-understandable representations. Central to the approach is HumanGPT, a world model tailored for embodied intelligence that integrates collected human skills with sensor data to create virtual dynamic environments for robot decision-making. Efort Qizhi also highlighted its full toolchain covering data collection, storage, governance, training, inference and deployment, built around HumanGPT, Dayan data platform, Modou IDE and Openmind OS. Chairman Dr. You Wei introduced the skill iceberg concept, stressing that true industrial value lies in complex capabilities such as multi-robot coordination and real-time process parameter generation rather than simple pick-and-place actions. The system has already logged over 5000 hours of operation on customer production lines, proving transfer from human expertise to reliable machine productivity across manufacturing scenarios.
Google Tests Third-Party App Store Support in Play Store Following Epic Games Antitrust Ruling
Google is actively testing multiple new features in the Play Store, including a dedicated Play Labs experimental section, direct installation of alternative app stores, and an expanded two-line search interface. The most notable change allows users to install competing app marketplaces directly from Google Play, a capability tied to the reinstated 2024 court decision in the Epic Games antitrust case after the companies' settlement was withdrawn. Although the new menu option for third-party stores has been discovered through app modifications, attempts to access it currently result in errors. Play Labs, an experimental area for previewing upcoming store capabilities similar to features already present in Google Search, was also found but remains non-functional. The updated search bar is already operational, supporting longer natural-language queries and an Ask Store prompt to help users describe needs in detail rather than using short app names. APK analysis indicates these developments are still in progress, meaning Google may modify, delay, or cancel any of them before wider release. The overall direction signals that the primary Android app store is preparing to facilitate competition by distributing rival marketplaces.