Lotu RadarAbout

Latest News Archive - Page 168

World · Al Jazeera

Deadly Russian strikes hit civilian targets in Ukraine

Russia intensified attacks across Ukraine, killing civilians and damaging homes and warehouses near Kyiv

Cloud & Infrastructure · The New Stack

LM Studio built a judge for AI commands. Then the judge started agreeing with the defendant.

A command as ordinary as git diff can become a problem for an AI coding agent once a variable gets The post LM Studio built a judge for AI commands. Then the judge started agreeing with the defendant. appeared first on The New Stack .

Cloud & Infrastructure · Kubernetes Blog

Kubernetes v1.37: Pod Certificates and Cluster Trust Bundles

Pod Certificate / Cluster Trust Bundles Blog Post Kubernetes brings a wealth of features that make it easy to run your production workloads securely and reliably. While aspects like scheduling, health checks and resource limits are probably at the front of your mind, one other important feature of Kubernetes is production identity — how your workload can authenticate to other systems in order to do its job. Up until now, the primary production identity mechanism built into Kubernetes has been service account JWTs (JSON Web Tokens). These are cryptographically-signed tokens, issued by the control plane of your cluster, that let anyone in the world understand who is calling when your workload uses them. In Kubernetes 1.37, the foundations of a new built-in production identity technology have gone GA. Pod Certificates (and the closely-associated Cluster Trust Bundles) build X.509 certificate issuance for TLS and mTLS directly into core Kubernetes. Why? Service account JWTs have a lot going for them: They are built directly into Kubelet, and work pretty magically. They are written to your workload container’s filesystem before your workload starts up, and automatically kept up to date. The issuance system follows least-privilege principles; the node restriction admission plugin ensures that tokens can only be requested by the Kubelet that is actually currently running your pod. They can be federated, allowing you to use them to authenticate to other systems outside of Kubernetes. Service account JWTs underpin the pod-to-cloud authentication store for all of the largest cloud providers, and have widespread support across many additional services and software packages. If it can understand JWTs, you can authenticate to it with a service account token. However, service account JWTs have one big downside — they are bearer tokens. With bearer tokens, if you have the token, then you are the identity asserted by the token. And since you necessarily have to hand copies of the JWT to all your peers in order to authenticate to them, they can be you, too. There are partial mitigations for this, and service account tokens make use of them (time-, object-, and audience-binding), but none are complete defences. A solution to this problem lies in proof-of-possession credentials, where you don’t send your entire credential to your peer, but only a proof that you possess the credential. In practice, these schemes are always built on asymmetric cryptographic signatures (RSA, ECDSA, and friends). There are few different standard approaches, such as request signing (AWS SigV4, JWT DPoP, RFC 9421), but the most widely-deployed and understood solution is X.509 certificates, as used in TLS. In TLS, your credential is split into two pieces A private key, which for maximum security should be generated within your workload (or within a hardware security module), and never leave. A certificate, which is a description of your identity and public key, signed by a Certificate Authority. The goal of Pod Certificates is to make using X.509 certificates from your Kubernetes workload just as easy as using service account JWTs, while maintaining Kubernetes’ high security bar. I think we’ve hit this target. As I’ll cover in the architecture and example sections below, there are many similarities between the design of service account JWT issuance and Pod Certificates. One significant place they diverge, however, is that Pod Certificates is a much more flexible mechanism. Kubernetes only offers one flavor of service account JWTs, with standardized claims. The X.509 ecosystem is significantly more varied than the JWT ecosystem, and X.509 certificates used for different purposes contain different extensions and information. For this reason, Pod Certificates has common machinery built into Kubelet, but offers a pluggable interface so that many different types of certificates can be issued within a single cluster, at the same time. In the fullness of time, I expect Kubernetes to offer at least two built-in certificate providers: One that issues server TLS certificates for the DNS names used by Kubernetes services. One that offers SPIFFE client certificates, filling the same role that service account JWTs fill today. In the remainder of this article, I’ll take you through the overall architecture of a Kubernetes workload using Pod Certificates, as well as give you an example of installing and using a real (toy) Pod Certificates signer controller. Architecture When you use Pod Certificates and Cluster Trust Bundles, there are the following major components: Your application, which requests certificates in its pod spec, and reads the keys, certificates and trust bundles from the container filesystem to use for (m)TLS. Kubelet, which issues PodCertificateRequest objects and reads ClusterTrustBundle objects on behalf of your workload. The signer controller, which answers PodCertificateRequests and publishes ClusterTrustBundles. Architecture of an application using Pod Certificates The best way to get a sense of what these components each do is to follow the issuance process chronologically: Once your application pod is scheduled to a node, Kubelet identifies all of the podCertificate and clusterTrustBundle projected volumes sources in its spec. For each podCertificate source: Kubelet generates a new private key according to the keyType field. Kubelet creates a PodCertificateRequest addressed to the signer named in the source. The signer controller sees the PodCertificateRequest and decides whether or not to issue the certificate. The signer controller issues the certificate by filling out the status.certificateChain field. The signer controller also fills out the status.beginRefreshAt field to instruct Kubelet when it should begin trying to refresh the certificate. certificate to the container filesystem. For each clusterTrustBundle source: 6) Kubelet retrieves the issued certificate, and writes the private key and Kubelet collects all the ClusterTrustBundles that match the signer name Kubelet unifies all of the certificates from all matching ClusterTrustBundles, and (stably) reorders them (to prevent applications from accidentally depending on a particular ordering). and label selectors in the source. Kubelet writes the certificates to the file path named in the source. and trust anchors from the filesystem. Your application pod starts up, and the application reads keys, certificates, Kubelet periodically updates the files from clusterTrustBundle sources as the contents of the selected ClusterTrustBundles changes. The application must pick up the changes using inotify or polling. As each certificate’s beginRefreshAt time passes, Kubelet repeats the process in step 2 to refresh the certificates, and write the update private keys and certificate chains to the filesystem. As in step 5, the application must pick up changes using inotify or polling. Some key takeaways: Automatic rotation is built in. Applications must properly handle it. Any signers eventually shipped in core Kubernetes will issue certificates with a max lifetime of 24 hours. The maximum lifetime allowed for other signers is 91 days. To make automatic rotation support as simple as possible, Kubelet supports writing the private key and certificate chain to a single file (a credential bundle ) This allows the application to simply subscribe to inotify events for (or poll) the single file, read the contents, and use them. Kubelet does support writing the private key and certificate chain to separate files, but then the application needs to carefully manage the potential race conditions of reading the files mid-rotation. Wherever possible, security checks are built into kube-apiserver, rather than burdening signer or application developers. As an example, the built-in node restriction admission plugin enforces node isolation, ensuring that one compromised node cannot spread access by requesting certificates for pods that aren’t scheduled to it. Try it out Because the Kubernetes project does not yet ship any Pod Certificate signers in core, in order to try these features out, you will need to install a third-party signer into your cluster. To make this easier, I have written Tinycert , which you can install into your cluster (or a Kind cluster). Tinycert is not a full production solution, but it’s a good starting point for experimenting with Pod Certificates, as well as a base for creating your own signers. Tinycert provides: The ahmedtd.github.io/tinycert-service signer, which issues certificates with DNS SANs for all of the Kubernetes Services your Pod is part of. The ahmedtd.github.io/tinycert-spiffe signer, which issues SPIFFE-compatible certificates that identify the namespace and service account of your Pod. These can be used as both client and (with effort) server certificates. A Go library, github.com/ahmedtd/tinycert/lib/spiffefsd to help your applications load SPIFFE certificates and trust bundles from a SPIFFE Filesystem Delivery (Draft Standard) folder, as well as configure the Go TLS library for proper client and server authentication. An example of a SPIFFE client and server application communicating using mutual TLS and SPIFFE certificates. What next? Take a look at the documentation for Pod Certificates and Cluster Trust Bundles . Review and offer feedback on the SPIFFE Filesystem Delivery draft standard , which aims to make it as easy as possible to use SPIFFE certificates directly on native Kubernetes. Participate in Kubernetes SIG Auth to help shape the future of signers that are built directly in to core Kubernetes. Try building your own signer based on Tinycert. Happy hacking!

Cloud & Infrastructure · The New Stack

Alibaba just released Qwen3.8-Flash: “An early preview of the architecture in Qwen4”

Alibaba this week unveiled Qwen3.8-Flash, an open-weight, multimodal Mixture-of-Experts (MoE) model. Hot on the heels of Qwen 3.8 Max, which The post Alibaba just released Qwen3.8-Flash: “An early preview of the architecture in Qwen4” appeared first on The New Stack .

AI · TechCrunch AI

Open-weight AI companies are the Valley’s hottest acquisition targets

There's a lot of capital pouring into the business of giving models away.

World · BBC Europe

Norway mourns King Harald as Haakon VIII ascends throne

Mourners gather outside the palace as royals, politicians and citizens remember a beloved king, whose son has adopted the family motto "all for norway".

Products & Consumer Tech · Ars Technica

Trump blacklisting of "woke" Anthropic deemed illegal by federal judge

Anthropic refused to support lethal autonomous warfare and mass surveillance.

World · Al Jazeera

Israeli strike kills three Palestinians in West Bank’s Jenin

Israel's prime minister and defence minister praise the attack as Hamas calls for Israeli 'crimes' to stop.

Business · BBC Business

Wife of man who died after turbulence sues airline

Lawyers for Linda Kitchen say her husband was "fatally injured" after the flight dropped 6,000 ft.

Cloud & Infrastructure · The New Stack

Z.ai’s GLM-5.3 goes open weight, but its new license aims at hyperscalers

Earlier in August, Z.ai, the Chinese AI lab behind the viral ox-alpha model that turned out to be GLM-5.3-Flash, launched The post Z.ai’s GLM-5.3 goes open weight, but its new license aims at hyperscalers appeared first on The New Stack .

World · Al Jazeera

‘Terrorist connection’ alleged in Trump’s Scotland golf course damage case

Seven people have been charged in connection with damage to Donald Trump’s Turnberry golf resort in Scotland in 2025.

Products & Consumer Tech · Ars Technica

Here's what we know about the "space academy" Trump just announced

"It's called the US Space Academy. That's a big deal."

World · Al Jazeera

US judge denies injunction against Trump’s new birthright citizenship order

The rejection is a temporary setback for immigrant rights advocates, who have been instructed to revise their petition.

Cybersecurity · The Hacker News

Attackers Chain Two PaperCut Flaws to Execute Code Without Authentication

Malicious actors are exploiting a newly patched security flaw in PaperCut NG and MF to execute arbitrary code on susceptible instances, as the company released a fresh emergency fix with additional hardening. "This vulnerability gives an unauthenticated attacker remote control over PaperCut's trusted configuration, which could be used to execute arbitrary Java code inside the application's

Startups & Funding · TechCrunch Startups

How Sweden built one of Europe’s hottest startup ecosystems

Sophia Bendz, general partner at Cherry Ventures, stopped by Equity to break down the latest in the Swedish tech ecosystem.

World · The Guardian Ukraine

Russia ‘losing 6,000 more troops in Ukraine each month than it can recruit’

Moscow recruits an estimated 1,000 people a day but western officials say it cannot keep up with casualty level Russia is losing about 6,000 more troops in Ukraine each month than it can recruit, western officials have said. While Russia is still acquiring new battlefield recruits at speed, with an estimated rate of 1,000 a day, in the last two months even this has not been sufficient to replace those killed or injured. Continue reading...

Society · The Guardian Society

Sally Marchant obituary

My friend Sally Marchant, who has died aged 71, was a significant midwife researcher and leader. After working as a midwife for more than a decade, in 1991 Sally was recruited to the National Perinatal Epidemiology Unit at Oxford University as a researcher. Among other work there, she took part in the BLiPP study , a project looking at new mothers’ experiences of blood loss, and co-authored an article on its key findings for the journal Midwifery in 1999. Continue reading...

Products & Consumer Tech · The Verge

Save hundreds on a TCL mini-LED TV with quantum dots and high refresh rate

Amazon and Best Buy have the TCL QM7L mini-LED TV on sale for as low as $797.99 for the 55-inch model, a $200 discount from the usual price. We spotted scaling discounts on larger sizes as well, although Amazon already listed low stock on the 65-inch version. While OLED televisions are great for deep black […]

Society · The Guardian Society

New heart attack definition promises better care for women

Leading cardiovascular health groups reclassify overlooked causes and introduce sex-specific diagnostic thresholds Doctors have agreed the world’s first universal definition of a heart attack, paving the way for millions of women to finally receive better treatment after decades of being “deprioritised”. In one of the biggest procedural shake-ups in a generation, the world’s four leading cardiovascular health groups have signed off on new guidance for healthcare professionals when seeing suspected heart attack patients. Continue reading...

Notable Blogs · Stratechery

2026.35: Internet Hype and Real World Change

The best Stratechery content from the week of August 24, 2026 including the breaker's advantage, the new battle for HDMI1, and how data center discourse ends.

World · Al Jazeera

Canadian economy recovers sharply in Q2 but shadow of US tariffs in future

Healthy domestic demand, led by consumer spending and business investment, shows Canada was brushing off past tariffs.

Products & Consumer Tech · Product Hunt

Hy4 preview

Tencent’s 770B open model for long-horizon work Discussion | Link

Business · CNBC Technology

Apple hikes subscription prices for Apple TV and Apple One in the U.S.

Apple raised prices for Apple Music by $1 per month in July, citing licensing costs.

World · Al Jazeera

Al Jazeera reports from Nepal as flood survivors flee new threat

Al Jazeera reports from flood-hit Bidur, Nepal, as residents flee towards higher ground amid threats of another flood.