23.3 Recommended Naming Conventions

Orbnetes deployment and release orchestration documentation for operators and platform teams.

Recommended Naming Conventions

Consistent naming improves readability, triage speed, and API automation.

Projects

  • Format: team-service or service-domain.
  • Examples: payments-api, platform-infra, core-web.

Blueprints

  • Format: <service>-<purpose>-<scope>.
  • Examples: payments-deploy-prod, webapp-smoke-run, infra-migrate-db.

Jobs (job_key)

  • Short, stable, lowercase with underscores.
  • Examples: backup, build_app, run_tests, deploy, healthcheck.

Step names

  • Action-oriented, human-readable.
  • Examples: Download artifact, Run migrations, Restart workers.

Tags

  • Capability-oriented, not host-oriented.
  • Good: linux, deploy, qa, prod.
  • Avoid: server-01, john-laptop.

Secrets/Variables keys

  • Uppercase snake_case.
  • Secrets: DB_PASSWORD, API_TOKEN, REGISTRY_PASSWORD.
  • Variables: APP_MODE, API_BASE_URL, DEPLOY_STRATEGY.

Release titles

  • Include version + context.
  • Examples: webapp v1.12.4, payments hotfix 2026-03-12, api rollback to v1.11.9.

Environments

  • Use canonical short names: dev, qa, staging, prod.