-
Notifications
You must be signed in to change notification settings - Fork 79
Add post-installation notes #297
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
Open
databyjp
wants to merge
7
commits into
main
Choose a base branch
from
add-notes
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
6ae5ddf
Add NOTES.txt template for Weaviate installation instructions and ver…
databyjp f9aaa68
Add weaviate-issues.yaml file for known issues and version warnings; …
databyjp 33c1060
Update BlockMax WAND migration message in weaviate-issues.yaml to inc…
databyjp 07e9671
Fix typo in weaviate-issues.yaml regarding backup issue message for c…
databyjp a6177f9
Update latest patch version for Weaviate 1.30 to 1.30.1 in weaviate-i…
databyjp f946e9f
Update latest patch versions in weaviate-issues.yaml and add RAFT sna…
databyjp 9392c1f
Copyedit
databyjp File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,56 @@ | ||
| # Weaviate Known Issues and Version Warnings | ||
| # This file contains known issues, bugs, and important notes for specific Weaviate versions. | ||
| # Maintain this file to help users be aware of potential problems when using certain versions. | ||
|
|
||
| # Latest patch versions for each supported minor version | ||
| # Update this section manually when new patch releases are available | ||
| latestVersions: | ||
| "1.30": "1.30.3" | ||
| "1.29": "1.29.7" | ||
| "1.28": "1.28.15" | ||
| "1.27": "1.27.25" | ||
| "1.26": "1.26.17" | ||
|
|
||
| # Support status for each minor version | ||
| # Options: "current", "maintained", "security" or "eol" | ||
| # All other versions not listed here will show as "End of life" | ||
| supportStatus: | ||
| "1.30": "current" | ||
| "1.29": "maintained" | ||
| "1.28": "maintained" | ||
| "1.27": "maintained" | ||
| "1.26": "maintained" | ||
|
|
||
| issueWarnings: | ||
| # Available levels: "critical", "important", "warning" | ||
| - id: "raft-snapshot-1-27-downgrade" | ||
| title: "RAFT Snapshots (v1.28.13+, v1.29.5+, v1.30.2+)" | ||
| message: "CAUTION FOR DOWNGRADES: Multi-node instances of Weaviate running `1.28.13+`, `1.29.5+`, or `1.30.2+` may experience problems if downgraded to a `v1.27.x` version earlier than `1.27.26`. The cluster may not reach a **Ready** state due to a change in the way that RAFT snapshots are stored in the database. A fix for this issue will be released with `1.27.26`, which safely handles the downgrade path to `1.27`. If you need to downgrade Weaviate to `v1.27.x`, use `1.27.26` or higher." | ||
| affectedVersions: | ||
| exact: [] | ||
| range: ["> 1.28.13", "> 1.29.5", "> 1.30.2"] | ||
| level: "important" | ||
|
|
||
| - id: "blockmax-wand-migration" | ||
| title: "BlockMax WAND migration available" | ||
| message: "This version sets BlockMax WAND as the default type of inverted index. If you are upgrading from an earlier version, you can migrate the inverted index for improved keyword & hybrid search. See our documentation for the official migration guide (https://weaviate.io/developers/weaviate/more-resources/migration/weaviate-1-30)." | ||
| affectedVersions: | ||
| exact: ["1.30.0"] | ||
| range: [] | ||
| level: "important" | ||
|
|
||
| - id: "backups-getting-stuck" | ||
| title: "Backups may get stuck" | ||
| message: "In this version, very large backups may get stuck. This was addressed in 1.27.0 by introducing an ability to cancel backups." | ||
| affectedVersions: | ||
| exact: [] | ||
| range: ["< 1.27.0"] | ||
| level: "warning" | ||
|
|
||
| - id: "strongly-suggest-upgrading" | ||
| title: "Suggest a different version" | ||
| message: "This version is not supported. Consider upgrading to a newer version." | ||
| affectedVersions: | ||
| exact: [] | ||
| range: ["< 1.25.0"] | ||
| level: "critical" | ||
This file contains hidden or 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,56 @@ | ||
| {{- $issueWarnings := .Files.Get "files/weaviate-issues.yaml" | fromYaml -}} | ||
|
|
||
| Thank you for installing {{ .Chart.Name }}. | ||
|
|
||
| Your release is named {{ .Release.Name }}. | ||
|
|
||
| Installed Weaviate version: {{ .Values.image.tag }} | ||
| Latest available version: {{ .Chart.AppVersion }} | ||
|
|
||
| {{- $currentMinorVersion := regexFind "^\\d+\\.\\d+" .Values.image.tag }} | ||
|
|
||
| {{- if hasKey $issueWarnings.latestVersions $currentMinorVersion -}} | ||
| {{- $latestPatch := index $issueWarnings.latestVersions $currentMinorVersion -}} | ||
| {{- if ne .Values.image.tag $latestPatch }} | ||
|
|
||
| NOTE: A newer patch version ({{ $latestPatch }}) is available for your Weaviate {{ $currentMinorVersion }}.x installation. | ||
| {{- end -}} | ||
| {{- end }} | ||
|
|
||
| {{- if hasKey $issueWarnings.supportStatus $currentMinorVersion -}} | ||
| {{- $supportStatus := index $issueWarnings.supportStatus $currentMinorVersion }} | ||
|
|
||
| SUPPORT STATUS:{{ if eq $supportStatus "current" }} You are using the current minor version of Weaviate.{{ else if eq $supportStatus "maintained" }} This version of Weaviate is still maintained with regular updates.{{ else if eq $supportStatus "security" }} This version of Weaviate receives security updates only.{{ else if eq $supportStatus "eol" }} This version of Weaviate has reached end-of-life and is no longer supported.{{ end }} | ||
| {{- else }} | ||
|
|
||
| SUPPORT STATUS: This version of Weaviate is not listed in our supported versions and is likely end-of-life (EOL). We recommend upgrading to a supported version. | ||
| {{- end }} | ||
|
|
||
| {{- range $issueWarnings.issueWarnings -}} | ||
| {{- /* Check if this version is affected */ -}} | ||
| {{- $affected := false -}} | ||
|
|
||
| {{- /* Check exact matches */ -}} | ||
| {{- range .affectedVersions.exact -}} | ||
| {{- if eq $.Values.image.tag . -}} | ||
| {{- $affected = true -}} | ||
| {{- end -}} | ||
| {{- end -}} | ||
|
|
||
| {{- /* Check range matches */ -}} | ||
| {{- range .affectedVersions.range -}} | ||
| {{- if semverCompare . $.Values.image.tag -}} | ||
| {{- $affected = true -}} | ||
| {{- end -}} | ||
| {{- end -}} | ||
|
|
||
| {{- /* Display warning */ -}} | ||
| {{- if $affected }} | ||
|
|
||
| {{ if eq .level "critical" }}CRITICAL:{{ else if eq .level "important" }}IMPORTANT:{{ else }}WARNING:{{ end }} {{ .message }} | ||
| {{- end -}} | ||
| {{- end }} | ||
|
|
||
| To learn more about the release, try: | ||
| $ helm status {{ .Release.Name }} | ||
| $ helm get all {{ .Release.Name }} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thought: do we wanna add
waiting for database to be restoredknown issue here ?