-
-
Notifications
You must be signed in to change notification settings - Fork 2
INFRA CONSOLIDATION
GitHub Actions edited this page Feb 21, 2026
·
2 revisions
Migration Guide: v0.9.6 → v1.0.0
In nself v1.0.0, all infrastructure-related commands have been consolidated under a single infra command for better organization and discoverability.
-
nself provider- Cloud provider management -
nself cloud- Alias for provider (deprecated) -
nself k8s- Kubernetes management -
nself helm- Helm chart management
-
nself infra provider- Cloud provider infrastructure -
nself infra k8s- Kubernetes infrastructure -
nself infra helm- Helm chart management
| Old Command | New Command | Status |
|---|---|---|
nself provider list |
nself infra provider list |
✅ Working |
nself provider init <name> |
nself infra provider init <name> |
✅ Working |
nself provider validate |
nself infra provider validate |
✅ Working |
nself provider show <name> |
nself infra provider show <name> |
✅ Working |
nself provider server create |
nself infra provider server create |
✅ Working |
nself provider server list |
nself infra provider server list |
✅ Working |
nself provider server ssh <id> |
nself infra provider server ssh <id> |
✅ Working |
nself provider cost estimate |
nself infra provider cost estimate |
✅ Working |
nself provider cost compare |
nself infra provider cost compare |
✅ Working |
| Old Command | New Command | Status |
|---|---|---|
nself k8s init |
nself infra k8s init |
✅ Working |
nself k8s convert |
nself infra k8s convert |
✅ Working |
nself k8s apply |
nself infra k8s apply |
✅ Working |
nself k8s deploy |
nself infra k8s deploy |
✅ Working |
nself k8s status |
nself infra k8s status |
✅ Working |
nself k8s logs <pod> |
nself infra k8s logs <pod> |
✅ Working |
nself k8s scale <dep> <n> |
nself infra k8s scale <dep> <n> |
✅ Working |
nself k8s rollback |
nself infra k8s rollback |
✅ Working |
nself k8s delete |
nself infra k8s delete |
✅ Working |
nself k8s cluster <action> |
nself infra k8s cluster <action> |
✅ Working |
nself k8s namespace <action> |
nself infra k8s namespace <action> |
✅ Working |
| Old Command | New Command | Status |
|---|---|---|
nself helm init |
nself infra helm init |
✅ Working |
nself helm generate |
nself infra helm generate |
✅ Working |
nself helm install <release> |
nself infra helm install <release> |
✅ Working |
nself helm upgrade <release> |
nself infra helm upgrade <release> |
✅ Working |
nself helm rollback <release> |
nself infra helm rollback <release> |
✅ Working |
nself helm uninstall <release> |
nself infra helm uninstall <release> |
✅ Working |
nself helm list |
nself infra helm list |
✅ Working |
nself helm status <release> |
nself infra helm status <release> |
✅ Working |
nself helm values <release> |
nself infra helm values <release> |
✅ Working |
nself helm template |
nself infra helm template |
✅ Working |
nself helm package |
nself infra helm package |
✅ Working |
nself helm repo <action> |
nself infra helm repo <action> |
✅ Working |
Old commands still work but show deprecation warnings:
$ nself cloud list
⚠ DEPRECATION: 'nself cloud' is deprecated and will be removed in v1.0.0
Please use 'nself infra provider' instead.
https://docs.nself.org/migration/cloud-to-infra
# ... then shows provider list ...All old commands continue to work through v0.9.x releases with deprecation warnings. They will be removed in v1.0.0.
-
nself cloud→ redirects tonself infra provider -
nself provider→ still works directly (no redirect needed yet) -
nself k8s→ still works directly (no redirect needed yet) -
nself helm→ still works directly (no redirect needed yet)
- Better Organization: All infrastructure commands in one place
-
Clearer Hierarchy:
infraclearly indicates infrastructure management -
Easier Discovery:
nself infra --helpshows all 38 infrastructure subcommands - Consistent Patterns: Matches other consolidated commands (auth, service, config)
- Reduced Top-Level Clutter: Fewer commands at top level (79 → 31)
The nself infra command consolidates 38 subcommands across three categories:
- Provider: 14 subcommands
- K8s: 11 subcommands
- Helm: 12 subcommands
- v0.9.5: Old commands work, no warnings
- v0.9.6: Old commands work, deprecation warnings shown
-
v1.0.0: Old commands removed, must use new
infrastructure
# List providers
nself infra provider list
# Initialize provider
nself infra provider init digitalocean
# Create server
nself infra provider server create --provider hetzner --size medium
# SSH to server
nself infra provider server ssh myserver
# Compare costs
nself infra provider cost compare# Initialize K8s
nself infra k8s init
# Convert compose to manifests
nself infra k8s convert
# Deploy
nself infra k8s deploy
# Check status
nself infra k8s status
# Scale deployment
nself infra k8s scale api --replicas 3# Initialize chart
nself infra helm init
# Generate from compose
nself infra helm generate
# Install release
nself infra helm install myapp
# Upgrade release
nself infra helm upgrade myapp
# View releases
nself infra helm listFor questions or issues with migration:
- GitHub Issues: https://github.com/nself-org/cli/issues
- Documentation: https://docs.nself.org/commands/infra
- Discord: https://discord.gg/nself
ɳSelf CLI v1.0.9. MIT licensed. Docs CC BY 4.0.
GitHub · Issues · Discussions · nself.org · nself.org/docs
Getting Started
Commands
- Commands, Overview
- Lifecycle: cmd-init · cmd-build · cmd-start · cmd-stop · cmd-restart · cmd-dev
- Monitoring: cmd-status · cmd-logs · cmd-health · cmd-urls · cmd-doctor · cmd-monitor · cmd-alerts · cmd-sentry · cmd-watchdog
- Data: cmd-db · cmd-backup · cmd-dr · cmd-queue · cmd-webhooks
- Config: cmd-config · cmd-service · cmd-env · cmd-promote
- Networking: cmd-ssl · cmd-trust · cmd-dns-setup
- Security: cmd-access · cmd-security · cmd-secrets
- Tenancy: cmd-tenant · cmd-billing
- Plugins: cmd-plugin · cmd-license · cmd-dogfood (extracted, CLI-R11) · cmd-k8s (extracted, CLI-R11) · cmd-encryption (extracted, CLI-R11) · cmd-waf (extracted, CLI-R11) · cmd-federation (extracted, CLI-R11) · cmd-mail (extracted, CLI-R11) · cmd-dlq (extracted, CLI-R11)
- AI: cmd-ai · cmd-claw · cmd-model
- Templates: cmd-template
- Utilities: cmd-exec · cmd-clean · cmd-reset · cmd-update · cmd-upgrade · cmd-version · cmd-admin · cmd-migrate · cmd-migrate-firebase · cmd-migrate-supabase · cmd-completion
Features
- Features, Overview
- Feature-Auth
- Feature-Storage
- Feature-Search
- Feature-Functions
- Feature-Email
- Feature-Monitoring
- Feature-Plugins
- Feature-nClaw, AI Assistant
- Feature-nChat, Messaging
- Feature-nTV, Media Player
- Feature-nFamily, Family Social
- Feature-nCloud, Managed Hosting
- Feature-Memory-Rooms, Knowledge Organization
- Feature-Agent-Dashboard, Agent Metrics
- Feature-Image-Generation, AI Image Generation
Configuration
- Configuration, Overview
- Config-Env-Vars
- Config-Postgres
- Config-Hasura
- Config-Auth
- Config-Nginx
- Config-Optional-Services
- Config-Custom-Services
- Config-System
Plugins (87 + 10 monitoring)
Free (25)
- plugin-backup
- plugin-content-acquisition
- plugin-content-progress
- plugin-cron
- plugin-donorbox
- plugin-feature-flags
- plugin-github
- plugin-github-runner
- plugin-invitations
- plugin-jobs
- plugin-link-preview
- plugin-mdns
- plugin-mlflow
- plugin-monitoring
- plugin-notifications
- plugin-notify
- plugin-paypal
- plugin-search
- plugin-shopify
- plugin-stripe
- plugin-subtitle-manager
- plugin-tokens
- plugin-torrent-manager
- plugin-vpn
- plugin-webhooks
Pro (62)
- plugin-access-controls
- plugin-activity-feed
- plugin-admin-api
- plugin-nself-ai-gateway
- plugin-nself-ai-mcp
- plugin-nself-ai-mcp
- plugin-analytics
- plugin-auth
- plugin-backup-pro
- plugin-bots
- plugin-browser
- plugin-calendar
- plugin-cdn
- plugin-chat
- plugin-claw
- plugin-claw-budget
- plugin-claw-news
- plugin-claw-web
- plugin-cloudflare
- plugin-cms
- plugin-compliance
- plugin-cron-pro
- plugin-ddns
- plugin-devices
- plugin-documents
- plugin-donorbox-pro
- plugin-entitlements
- plugin-epg
- plugin-file-processing
- plugin-game-metadata
- plugin-geocoding
- plugin-geolocation
- plugin-google
- plugin-home
- plugin-idme
- plugin-knowledge-base
- plugin-linkedin
- plugin-livekit
- plugin-media-processing
- plugin-meetings
- plugin-moderation
- plugin-mux
- plugin-notify-pro
- plugin-object-storage
- plugin-observability
- plugin-paypal-pro
- plugin-photos
- plugin-podcast
- plugin-post
- plugin-realtime
- plugin-recording
- plugin-retro-gaming
- plugin-rom-discovery
- plugin-shopify-pro
- plugin-social
- plugin-sports
- plugin-stream-gateway
- plugin-streaming
- plugin-stripe-pro
- plugin-support
- plugin-tmdb
- plugin-voice
- plugin-web3
- plugin-workflows
Planned (26)
plugin-auditplugin-blogplugin-checkoutplugin-commerceplugin-drmplugin-exportplugin-flowplugin-importplugin-ldapplugin-mailgunplugin-mediaplugin-oauth-providersplugin-pagesplugin-postmarkplugin-rate-limitplugin-reportsplugin-samlplugin-schedulerplugin-sendgridplugin-ssoplugin-subscriptionplugin-thumbplugin-transcoderplugin-twilioplugin-wafplugin-watermark
Guides
- Guide-Production-Deployment
- Guide-SSL-Setup
- Guide-Multi-Tenancy
- Guide-Security-Hardening
- Guide-Monitoring-Setup
- Guide-Backup-Restore
- Guide-Custom-Services
- Guide-Migration-from-v1
Architecture
Reference
- API-Reference
- error-codes, Error Codes
Licensing
Security
Brand
Operations
- operations/release-cascade, Release Cascade
- operations/self-healing, Self-Healing Schema
- operations/redis-tuning, Redis Pool Tuning
- operations/meilisearch-warmup, MeiliSearch Warm-Up
- operations/jwt-rotation, JWT Key Rotation
- operations/windows-wsl2-setup, Windows / WSL2 Setup
- operations/gemini-oauth-reauth, Gemini OAuth Reauth
Contributing
Admin
- USER-ACTION-QUEUE, Pending Admin Actions
All commands (52)
- A: cmd-access · cmd-account · cmd-admin
- B: cmd-backup · cmd-build · cmd-bundle
- C: cmd-ci · cmd-clean · cmd-completion · cmd-config
- D: cmd-db · cmd-deploy · cmd-dev · cmd-doctor
- E: cmd-env · cmd-exec
- F: cmd-functions
- G: cmd-generate
- H: cmd-health · cmd-help-topics
- I: cmd-init · cmd-install
- L: cmd-license · cmd-login · cmd-logout · cmd-logs
- M: cmd-man · cmd-mcp · cmd-migrate
- O: cmd-oauth · cmd-ops
- P: cmd-plugin · cmd-promote
- R: cmd-remove · cmd-reset · cmd-restart · cmd-runner
- S: cmd-secrets · cmd-security · cmd-self-heal · cmd-server · cmd-service · cmd-start · cmd-status · cmd-stop
- T: cmd-telemetry · cmd-template · cmd-trust
- U: cmd-update · cmd-urls
- V: cmd-verify-sbom · cmd-version