Join us

ContentUpdates and recent posts about Pelagia..
 Activity
@work4bots added a new tool Bicep , 3 days, 23 hours ago.
Story FAUN.dev() Team
@eon01 shared a post, 4 days, 3 hours ago
Founder, FAUN.dev

AWX in Action is out, and there's a course

Ansible AWX

"AWX in Action: Ansible Orchestration at Scale" is now available in print and ebook. It covers running AWX on Kubernetes for real, not a sandbox demo that falls over the moment you add a second execution node.

AWX in Action - Ansible Orchestration at Scale
Link
@varbear shared a link, 4 days, 4 hours ago
FAUN.dev()

When Code Becomes Cheap, What's Left?

Teams that use Claude Opus 4.6 for spec-driven development generate code at low cost, so they spend scarce developer time on review and QA. Developers create more value by judging code than by typing it... read more  

When Code Becomes Cheap, What's Left?
Link
@varbear shared a link, 4 days, 4 hours ago
FAUN.dev()

I Did 11 Technical Interviews in 60 Days. Here Is the Pattern Nobody Tells You.

The key insight from the article is that at mid-to-senior backend levels, coding rounds matter least while judgment, communication, structure, and ability to defend decisions are critical. Focus on rehearsing key design, incident, and behavioral answer structures to succeed, not just LeetCode... read more  

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

Design Patterns Are Dead. Long Live Design Patterns.

Design patterns were created for human comprehension, not machines, serving as a shared vocabulary to communicate complex ideas quickly, manage working memory, and standardize solutions. Even in the era of AI-generated code, design patterns are crucial for containing the limitations of AI models and.. read more  

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

GitHub breach: The development ecosystem is in the hot seat

GitHub is reeling from an infrastructure breach by TeamPCP, highlighting the vulnerability of developer environments. Privileged access was achieved not through traditional perimeter exploitation, but by targeting trusted developer tools like IDE extensions. This incident serves as a stark reminder .. read more  

GitHub breach: The development ecosystem is in the hot seat
Link
@varbear shared a link, 4 days, 4 hours ago
FAUN.dev()

AI costs how much? GitHub Copilot users react to new usage-based pricing system.

GitHub began usage-based Copilot billing, and some developers say they used up the AI credits GitHub grants for a month in under 24 hours. Developers burn credits through "premium requests". GitHub counts prompts to advanced models, agent tasks, edits, and some Copilot features against the allowance.. read more  

AI costs how much? GitHub Copilot users react to new usage-based pricing system.
Link
@kaptain shared a link, 4 days, 4 hours ago
FAUN.dev()

The Case for VM and Container Consolidation in 2026

With KubeVirt, enterprise platform teams can run VMs and containers on Kubernetes, so separate VM and container platforms remain a choice teams keep through habit... read more  

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

Buzzing Beyond Clouds: The Illustrated Children's Guide to Cilium

"Buzzing Beyond Clouds"continues the eBPF adventure with Obee as a Jedi bee, showcasing how Cilium powers networking, cluster mesh, observability, security, and service mesh in the Kubulous galaxy. Each chapter parallels Cilium's real-world functionalities, making complex concepts accessible to all .. read more  

Buzzing Beyond Clouds: The Illustrated Children's Guide to Cilium
Link
@kaptain shared a link, 4 days, 4 hours ago
FAUN.dev()

Runtime Observability and Enforcement for Opaque AI Agents with eBPF: Beyond Sandboxes and Approvals

Platform teams should verify side effects at the OS layer, separate from tool approvals and sandbox rules, because engineers cannot treat AI agent harnesses as security boundaries... read more  

Runtime Observability and Enforcement for Opaque AI Agents with eBPF: Beyond Sandboxes and Approvals
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.