Skip to content
Open
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
20 changes: 20 additions & 0 deletions modules/get-started/pages/rpk-install.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,26 @@ include::get-started:partial$install-rpk-linux.adoc[]

include::get-started:partial$install-rpk-macos.adoc[]

== Upgrade rpk plugins

Plugins, such as `rpk connect` and `rpk ai`, are separate binaries that `rpk` downloads and runs on your behalf. Upgrading `rpk` does not upgrade its plugins. An installed plugin stays at its version until you upgrade it, even across `rpk` upgrades.

To see which plugins are installed:

[,bash]
----
rpk plugin list --local
----

To upgrade a plugin, run its `upgrade` command. For example:

[,bash]
----
rpk connect upgrade
----

NOTE: Some plugins install themselves the first time you run one of their commands. For example, `rpk connect run` downloads the latest Redpanda Connect if it is not already installed. This happens only on first use. After that, the plugin never updates itself.

== Next steps

For the complete list of `rpk` commands and their syntax, see the xref:reference:rpk/index.adoc[rpk reference].
Expand Down
Loading