Skip to content

Commit

Permalink
Merge pull request #76 from semi-technologies/helm_release_14.3.0
Browse files Browse the repository at this point in the history
Helm release 14.3.0
  • Loading branch information
parkerduckworth authored May 3, 2022
2 parents 3bcfc8d + fcfdf43 commit fd01652
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
9 changes: 9 additions & 0 deletions .cicd/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,13 @@ function check_no_setting() {
rm -fr ../weaviate/out.yml
}

function check_creates_template() {
local helm_settings=$1

helm template $helm_settings "weaviate.tgz" > out.yml
rm -fr ../weaviate/out.yml
}

(
cd weaviate
VERSION=$( grep 'version:' < Chart.yaml | awk '{ print $2 }')
Expand All @@ -52,6 +59,8 @@ function check_no_setting() {

mv "weaviate-$VERSION.tgz" "weaviate.tgz"

check_creates_template "--set collector_proxy.enabled=true"

check_modules "" "value: text2vec-contextionary"
check_modules "--set modules.text2vec-contextionary.enabled=true" "value: text2vec-contextionary"
check_modules "--set modules.text2vec-contextionary.enabled=false --set modules.qna-transformers.enabled=true" "value: qna-transformers"
Expand Down
3 changes: 1 addition & 2 deletions weaviate/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 14.3.0-rc.0

version: 14.3.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down

0 comments on commit fd01652

Please sign in to comment.