Join us

ContentUpdates and recent posts about Pelagia..
Link
@kala shared a link, 1 week ago
FAUN.dev()

Critical Claude Code vulnerability: Deny rules silently bypassed because security checks cost too many tokens

Clause Code security bypass: Anthropic's performance fix silently disabled deny rules for 500K+ developers when more than 50 subcommands were used in a command, impacting permission validation and security policy enforcement. The vulnerability stemmed from a tradeoff between security and performance.. read more  

Link
@devopslinks shared a link, 1 week ago
FAUN.dev()

A Couple Million Lines of Haskell: Production Engineering at Mercury

Mercury runs ~2M lines ofHaskellin production. They choseTemporalto replace cron and DB-backed state machines. Durable workflows replace brittle coordination. They open-sourced aHaskellSDK forTemporal, wired inOpenTelemetryhooks, and pushed records-of-functions plus domain-error types... read more  

A Couple Million Lines of Haskell: Production Engineering at Mercury
Link
@devopslinks shared a link, 1 week ago
FAUN.dev()

Figma's next-generation data caching platform

Figma rearchitected their storage systems to support scalability, including horizontally sharding their Postgres stack and building FigCache, a stateless proxy service for Redis. FigCache decouples connection scalability from Redis, centralizes traffic routing, enhances security, and provides end-to.. read more  

Figma's next-generation data caching platform
Link
@devopslinks shared a link, 1 week ago
FAUN.dev()

Shell Tricks That Actually Make Life Easier (And Save Your Sanity)

This post provides a collection of lesser-known terminal tricks that can improve productivity and efficiency when working in various POSIX shells. The tricks cover a range of functions, from efficient text manipulation to file operations and script writing. By incorporating these tips into daily wor.. read more  

Shell Tricks That Actually Make Life Easier (And Save Your Sanity)
Link
@devopslinks shared a link, 1 week ago
FAUN.dev()

Reducing our monorepo size to improve developer velocity

Dropbox cut itsmonorepofrom 87GB to 20GB. It ran a GitHub‑approved server‑sidegit repack, tuned bywindow/depth. Clone times dropped to under 15 minutes. Engineers traced growth to Git’s 16‑char path heuristic. That heuristic mispairedi18nfiles. They tested--path-walklocally, then ran phased replica .. read more  

Reducing our monorepo size to improve developer velocity
Link
@devopslinks shared a link, 1 week ago
FAUN.dev()

Don’t trust, verify

Daniel Stenberg, creator of curl, argues that software security should be built on verification rather than trust, outlining the many ways a widely used project like curl could be compromised - from malicious insiders and breached credentials to hacked distribution sites and CI tool exploits. To cou.. read more  

Don’t trust, verify
 Activity
@farouklamri started using tool Kubernetes , 1 week, 2 days ago.
Story Trending
@laura_garcia shared a post, 1 week, 2 days ago
Software Developer, RELIANOID

how to migrate ADC services from Array Networks APV Series to RELIANOID—step by step.

Migrating from legacy ADC platforms doesn’t have to be complex. In our latest Knowledge Base article, we walk you through how to migrate ADC services from Array Networks APV Series to RELIANOID—step by step. 🔍 What you’ll find inside: - Clear terminology mapping between both platforms - Practical mi..

Knowledge base migrate ADC services from ARRAY NETWORKS APV SERIES to RELIANOID
 Activity
@paunikar-jayesh started using tool PHP , 1 week, 2 days ago.
 Activity
@paunikar-jayesh started using tool MySQL , 1 week, 2 days ago.
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.