Publishing to an OCI registry
Publishing a Helm chart to an OCI registry follows a similar workflow to the one you would follow when working with a standard container image. Commands such as docker login
, docker pull
, and docker push
have analogous commands in Helm. These commands and their descriptions can be seen in the following table:
Command |
Description |
|
Log in to a registry |
|
Log out of a registry |
|
Push a packaged chart to a registry |
|
Pull a chart from a registry |
Table 8.1 – Helm commands for OCI management
Note that full support for OCI-based charts became available in version 3.8.0. Before this version...