Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the top banner to reference version 1.9.0 release notes #1273

Merged
merged 4 commits into from
Aug 17, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module.exports = {
id: 'start',
content:
'<div class="header-item">⭐️ If you like KubeVela, give it a star on <a target="_blank" rel="noopener noreferrer" href="https://github.com/kubevela/kubevela">GitHub</a>!⭐️</div>' +
'<div class="header-item"><span>KubeVela v1.8.0 is now available.(2023-04-20)</span> <a target="_blank" style="color: var(--ifm-color-primary)" rel="noopener noreferrer" href="https://github.com/kubevela/kubevela/releases/tag/v1.8.0">Read Release Note</a></div>',
'<div class="header-item"><span>KubeVela v1.9.0 is now available.(2023-06-15)</span> <a target="_blank" style="color: var(--ifm-color-primary)" rel="noopener noreferrer" href="https://github.com/kubevela/kubevela/releases/tag/v1.9.0">Read Release Note</a></div>',
},
algolia: {
appId: 'PXMFHFWUGZ',
Expand Down
2 changes: 1 addition & 1 deletion versioned_docs/version-v1.9/contributor/code-contribute.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ Before start, please make sure you have already started the vela controller envi
make run-apiserver
```

By default, the apiserver will serving at "0.0.0.0:8000".
By default, the apiserver will be serving at "0.0.0.0:8000".

Get the VelaUX code by:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,32 @@ This doc aims to provide a migration guide from old versions to the new ones wit

KubeVela has [release cadence](../../contributor/release-process.md) for every 2-3 months, we'll only maintain for the last 2 releases. As a result, you're highly recommended to upgrade along with the community. We'll strictly align with the [semver version rule](https://semver.org/) for compatibility.

## From v1.8.x to v1.9.x

:::caution
1. Legacy code removal. Basically you will not be able to use EnvBinding, HealthScope, ScopeDefinition and other objects in old KubeVela (<1.0), like ApplicationConfiguration.
2. Registry migrated from kubevela.net OSS storage to GitHub pages.
> Notice: the "hub.kubevela.net", "charts.kubevela.net" and "addons.kubevela.net" will not be served in the future.
> 1. For docker images in "hub.kubevela.net", replace it with "docker.io" or "ghcr.io/kubevela".
> 2. For helm charts in "charts.kubevela.net", replace it with "kubevela.github.io/charts".
> 3. For addons in "addons.kubevela.net", replace it with "kubevela.github.io/catalog/official".
>
> You can run the following command to update your addon registry.
> ```shell
> vela addon registry delete KubeVela
> vela addon registry add KubeVela --type helm --endpoint=https://kubevela.github.io/catalog/official
> vela addon registry add experimental --type helm --endpoint=https://kubevela.github.io/catalog/experimental
> ```
:::

1. Upgrade your kubevela chart

```
helm repo add kubevela https://kubevela.github.io/charts
helm repo update
helm upgrade -n vela-system --install kubevela kubevela/vela-core --version 1.9.5 --wait
```

## From v1.7.x to v1.8.x

These isn't too much work to be done for upgrading from v1.7.x to v1.8.x for usage.
Expand Down
Loading