Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions migration/template/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,14 @@

## Steps that can be done before the upgrade - non-disruptive

1. Checkout the new release: `git switch -d ${full_version}`
1. Pull the latest changes, switch to the correct branch and update Kubespray submodule:

1. Switch to the correct remote: `git submodule sync`

1. Update the kubespray submodule: `git submodule update --init --recursive`
```bash
git pull
git switch -d ${full_version}
git submodule sync
git submodule update --init --recursive
```

1. Run `bin/ck8s-kubespray upgrade both ${new_version} prepare` to update your config.

Expand Down