Open
Conversation
Add deprecation warnings when Linked CA features are used: - Warning in authority.go when linkedCAToken is initialized - Warning in app.go when --token flag is used at startup Existing Linked CAs continue to work but now show deprecation warnings directing users to migrate to Step CA Pro. This is phase 1 of removing Linked CA from open-source step-ca. A future release will remove the functionality entirely. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
4 tasks
tashian
added a commit
to smallstep/docs
that referenced
this pull request
Jan 29, 2026
Update documentation to clarify that linked CA functionality is now available exclusively through Step CA Pro, not open-source step-ca. Related PRs: - smallstep/certificates#2554 - smallstep/cli#1559 PRO-331 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Add migration tools to help users move from Linked CA to standalone mode: - Add --token flag to step-ca export to fetch provisioners and admins from linked CA cloud storage before migration - Add step-ca import command to import provisioners and admins from an export file into a standalone CA's admin database The import command features: - Automatic ID remapping for provisioners and admins - Duplicate detection (skips existing provisioners/admins) - --dry-run flag to preview changes without modifying the database Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
The export command creates its own authority instance from the config file and does not require a running CA server. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
The migration steps are documented in the changelog. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
step-ca export --tokenflag to export from linked CAsstep-ca importcommand to import provisioners and admins into standalone CAChanges
Deprecation Warnings
authority/authority.go: Warning whenlinkedCATokenis initializedcommands/app.go: Warning when--tokenflag is used at startupCHANGELOG.md: Added deprecation noticeMigration Tools
commands/export.go: Add--tokenflag to fetch provisioners/admins from linked CA cloud storagecommands/import.go: New command to import provisioners and admins from export file into standalone CA database--dry-runflag to preview changes without modifying the databaseMigration Workflow
Behavior Summary
step ca init --deployment-type=linkedstep-ca --token=xxx(existing)step ca initContext
This is phase 1 of removing Linked CA from open-source step-ca. The linked deployment type is moving to Step CA Pro.
Related CLI PR: smallstep/cli#1559
Test plan
make buildpassesmake testpasses (4843 tests)make lintpasses (no new issues)step-ca --token=xxxshows deprecation warning but continues to workstep-ca export --tokenexports linked CA provisionersstep-ca importimports provisioners into standalone CA🤖 Generated with Claude Code