-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from projectsyn/docs/v2-v3
Add v3 upgrade guidance
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
= Upgrade from 2.x to 3.x | ||
|
||
This guide describes the steps to perform an upgrade of the component from version 2.x to 3.x. | ||
|
||
== Introduction | ||
|
||
Beginning with version 3.0.0, this component is using the commodore best practices for Helm charts. | ||
|
||
This means that the value to manually override the Helm chart version has changed from `parameters.metallb.charts.metallb` to `parameters.metallb.charts.metallb.version`. | ||
|
||
Therefore, the following configuration | ||
|
||
``` | ||
parameters: | ||
metallb: | ||
charts: | ||
metallb: x.y.z | ||
``` | ||
|
||
must be changed to | ||
|
||
``` | ||
parameters: | ||
metallb: | ||
charts: | ||
metallb: | ||
version: x.y.z | ||
``` | ||
|
||
in order to override the Helm chart version. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
* xref:index.adoc[Home] | ||
.Technical reference | ||
* xref:references/parameters.adoc[Parameters] | ||
.How-to guides | ||
* xref:how-tos/upgrade-1.x-to-2.x.adoc[Upgrade from 1.x to 2.x] | ||
* xref:how-tos/upgrade-2.x-to-3.x.adoc[Upgrade from 2.x to 3.x] |