You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example, if you are releasing a major version `0.8.0-incubating`, you should replace all the previous version `0.7.0-incubating` to the release version `0.8.0-incubating`.
126
126
127
127
128
128
And commit/push the version bump:
129
129
130
130
```bash
131
-
$ git commit -m "[helm] Bump helm version to x.y.z"docker/helm/Chart.yaml docker/helm/values.yaml docker/helm/README.md
131
+
$ git commit -m "[helm] Bump helm version to x.y.z" helm/Chart.yaml helm/values.yaml helm/README.md
For example, if you are releasing a bugfix version `0.8.1-incubating`, you should replace all the previous version `0.8.0-incubating` to the new version `0.8.1-incubating`.
150
150
151
151
152
152
And commit/push the version bump:
153
153
154
154
```bash
155
-
$ git commit -m "[helm] Bump helm version to x.y.z"docker/helm/Chart.yaml docker/helm/values.yaml docker/helm/README.md
155
+
$ git commit -m "[helm] Bump helm version to x.y.z" helm/Chart.yaml helm/values.yaml helm/README.md
**(4) Upgrade Helm Charts version on main branch**
226
226
227
227
Update the version in the Helm Chart in:
228
-
- `docker/helm/Chart.yaml`
229
-
- `docker/helm/values.yaml`
230
-
- `docker/helm/README.md`
228
+
- `helm/Chart.yaml`
229
+
- `helm/values.yaml`
230
+
- `helm/README.md`
231
231
232
232
For example, if the next major version is `0.9.0-incubating`, you should replace all the previous version `0.8.0-incubating` to the next release version `0.9.0-incubating`.
233
233
234
234
And commit/push the version bump:
235
235
236
236
```bash
237
-
$ git commit -m "[helm] Bump helm version to x.y.z"docker/helm/Chart.yaml docker/helm/values.yaml docker/helm/README.md
237
+
$ git commit -m "[helm] Bump helm version to x.y.z" helm/Chart.yaml helm/values.yaml helm/README.md
0 commit comments