Join us

ContentUpdates and recent posts about Pelagia..
Link
@devopslinks shared a link, 4 days, 6 hours ago
FAUN.dev()

Google API Keys Weren't Secrets. But then Gemini Changed the Rules

A report reveals Google Cloud'sAPI keysuse the same format for public IDs and secret auth. That overlap lets public keys reach theGemini API. New keys default toUnrestricted. Existing keys can be retroactively granted Gemini access. Google will add scoped defaults, block leaked keys, and notify affe.. read more  

Google API Keys Weren't Secrets. But then Gemini Changed the Rules
Link
@devopslinks shared a link, 4 days, 6 hours ago
FAUN.dev()

How to scale GitOps in the enterprise: From single cluster to fleet management

In GitOps, the "Argo Ceiling" is the point where tooling that worked at a small scale becomes unmanageable as you scale up to multiple clusters. To address this, you can consider using OCI registries and ConfigHub as alternative state store options. When it comes to secrets management, options like .. read more  

How to scale GitOps in the enterprise: From single cluster to fleet management
Link
@devopslinks shared a link, 4 days, 6 hours ago
FAUN.dev()

Rendering 100M pixels a second over ssh

A massively multiplayer snake game accessible over ssh, capable of handling thousands of concurrent players and rendering over a hundred million pixels a second. The game utilizes bubbletea for rendering frames and custom techniques to reduce bandwidth usage to around 2.5 KB/sec. Performance improve.. read more  

Rendering 100M pixels a second over ssh
Link
@devopslinks shared a link, 4 days, 6 hours ago
FAUN.dev()

The real cost of random I/O

Therandom_page_costwas introduced ~25 years ago, and its default value has remained at 4.0 since then. Recent experiments suggest that the actual cost of reading a random page may be significantly higher than the default value, especially on SSDs. Lowering therandom_page_costmay not always be the be.. read more  

The real cost of random I/O
Link
@varbear shared a link, 4 days, 6 hours ago
FAUN.dev()

The best new features of C# 14

C# 14 ships with.NET 10. It addsfile-based apps. Run a single .cs file from the command line. No project or solution files. It also adds extension members and extension blocks. They bring extension properties, grouped receivers, and a cleaner extension syntax... read more  

The best new features of C# 14
Link
@varbear shared a link, 4 days, 6 hours ago
FAUN.dev()

How we reduced the size of our Agent Go binaries by up to 77%

The Datadog Agent cut its Go binaries size by up to 77% in six months, removing unnecessary dependencies and enabling linker optimizations to trim artifacts significantly... read more  

Link
@varbear shared a link, 4 days, 6 hours ago
FAUN.dev()

I Taught My Dog to Vibe Code Games

DogKeyboardruns onRaspberry Pi. It filters Bluetooth keystrokes, proxies them toClaude Code, and triggers a feeder overZigbee. Builds useGodot 4.6andC#. Automated screenshot/replay testers, a scene linter, a shader linter, and an input mapper letClaude Codeauto-test, patch, and relaunch games... read more  

I Taught My Dog to Vibe Code Games
Link
@varbear shared a link, 4 days, 6 hours ago
FAUN.dev()

Malicious Next.js Repos Target Developers Via Fake Job Interviews

Linked to North Korean fake job-recruitment campaigns, the poisoned repositories are aimed at establishing persistent access to infected machines... read more  

Link
@varbear shared a link, 4 days, 6 hours ago
FAUN.dev()

The Linux Foundation reveals the "ugly" secret of how open source is draining your budget

Linux Foundation report finds contributors get2x–5x ROI. It also finds45%of organizations runprivate forksthat cost ~5,000labor hours per release. The report introduces anROI modelthat values contributions bylabor cost, not lines‑of‑code. It simulates cross‑project tradeoffs... read more  

Story Trending
@laura_garcia shared a post, 5 days, 7 hours ago
Software Developer, RELIANOID

đŸș Cyberattack on Asahi Group: Why Japan’s Industrial Sector Can’t Afford to Wait

We’re resharing this post because its relevance has only grown. Japan’s largest brewer, Asahi Group, was recently hit by a major ransomware attack that disrupted production and logistics operations nationwide. The timing is striking: the incident came just days after Japan enacted its new Cyber Defe..

Pelagia is a Kubernetes controller that provides all-in-one management for Ceph clusters installed by Rook. It delivers two main features:

Aggregates all Rook Custom Resources (CRs) into a single CephDeployment resource, simplifying the management of Ceph clusters.
Provides automated lifecycle management (LCM) of Rook Ceph OSD nodes for bare-metal clusters. Automated LCM is managed by the special CephOsdRemoveTask resource.

It is designed to simplify the management of Ceph clusters in Kubernetes installed by Rook.

Being solid Rook users, we had dozens of Rook CRs to manage. Thus, one day we decided to create a single resource that would aggregate all Rook CRs and deliver a smoother LCM experience. This is how Pelagia was born.

It supports almost all Rook CRs API, including CephCluster, CephBlockPool, CephFilesystem, CephObjectStore, and others, aggregating them into a single specification. We continuously work on improving Pelagia's API, adding new features, and enhancing existing ones.

Pelagia collects Ceph cluster state and all Rook CRs statuses into single CephDeploymentHealth CR. This resource highlights of Ceph cluster and Rook APIs issues, if any.

Another important thing we implemented in Pelagia is the automated lifecycle management of Rook Ceph OSD nodes for bare-metal clusters. This feature is delivered by the CephOsdRemoveTask resource, which automates the process of removing OSD disks and nodes from the cluster. We are using this feature in our everyday day-2 operations routine.