@hashgraph/solo
    Preparing search index...

    A single step in the computed migration plan. The planner returns an ordered array of these steps, each representing one segment of the upgrade path.

    The caller executes these steps sequentially:

    • For 'recreate': uninstall the chart, wait for pod cleanup, reinstall at toVersion.
    • For 'in-place': run helm upgrade to toVersion.
    interface ComponentUpgradeMigrationStep {
        extraCommandArgs: string[];
        fromVersion: string;
        reason: string;
        strategy: ComponentUpgradeMigrationStrategy;
        toVersion: string;
    }
    Index

    Properties

    extraCommandArgs: string[]

    Additional Helm CLI arguments for this step.

    fromVersion: string

    The starting version for this step (normalized semver).

    reason: string

    Human-readable explanation of why this strategy was chosen.

    How to perform this particular upgrade segment.

    toVersion: string

    The target version for this step (normalized semver).