smithery/neversight

k8s-databases

PostgreSQL and MongoDB on Kubernetes via Percona Operators. Use when deploying databases, configuring HA clusters, setting up backups, monitoring, or performing database operations.

Installation

$ npx skills add smithery/neversight --skill k8s-databases

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/neversight · top by installs.

npx skills add smithery/neversight

Browse all from smithery/neversight

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,728 B
  • docs SUMMARY.md 202 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

K8s Databases

Percona Operators for PostgreSQL and MongoDB. (Updated: January 2026). All deployments are idempotent - operators reconcile to desired state.

Percona Operators

Operator Version Database
Percona PostgreSQL v2.8.2 PostgreSQL 18.x
Percona Server MongoDB v1.21.2 MongoDB 8.0.x

Always use latest versions. Operators include built-in backup, monitoring, and HA management.

Deployment Tiers

Tier PostgreSQL MongoDB HA
minimal/small 1 replica 1 replica No
medium/production 3 replicas + PgBouncer 3 replicas (ReplicaSet) Yes

Installation

See [references/postgresql.md](references/postgresql.md) and [references/mongodb.md](references/mongodb.md) for deployment.

Get Connections

# PostgreSQL
kubectl get secret myapp-pg-pguser-myapp -n databases \
  -o jsonpath='{.data.uri}' | base64 -d

# MongoDB
kubectl get secret myapp-mongo-secrets -n databases \
  -o jsonpath='{.data.MONGODB_DATABASE_ADMIN_URI}' | base64 -d

Reference Files

  • [references/postgresql.md](references/postgresql.md) - PostgreSQL HA cluster
  • [references/postgresql-single.md](references/postgresql-single.md) - PostgreSQL single instance
  • [references/mongodb.md](references/mongodb.md) - MongoDB ReplicaSet
  • [references/backups.md](references/backups.md) - Backup with MinIO
  • [references/monitoring.md](references/monitoring.md) - Metrics and alerting