Skip to content

Commit

Permalink
Update helm chart workflow to push the feast python server as well. A…
Browse files Browse the repository at this point in the history
…lso fixing broken publishing flow and updating versions (#2273)

Signed-off-by: Danny Chiao <danny@tecton.ai>
  • Loading branch information
adchia authored Feb 3, 2022
1 parent 393d6d9 commit fc37896
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion infra/charts/feast-python-server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: feast-python-server
description: Feast Feature Server in Python
type: application
version: 0.1.0
version: 0.17.0
keywords:
- machine learning
- big data
Expand Down
2 changes: 1 addition & 1 deletion infra/charts/feast-python-server/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# feast-python-server

![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.17.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

Feast Feature Server in Python

Expand Down
2 changes: 1 addition & 1 deletion infra/charts/feast/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
description: Feature store for machine learning
name: feast
version: 0.101.0
version: 0.17.0
keywords:
- machine learning
- big data
Expand Down
4 changes: 2 additions & 2 deletions infra/charts/feast/requirements.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
dependencies:
- name: feature-server
alias: feature-server
version: 0.101.0
version: 0.17.0
condition: feature-server.enabled
repository: https://feast-helm-charts.storage.googleapis.com
- name: transformation-service
alias: transformation-service
version: 0.101.0
version: 0.17.0
condition: transformation-service.enabled
repository: https://feast-helm-charts.storage.googleapis.com
- name: redis
Expand Down
8 changes: 4 additions & 4 deletions infra/scripts/helm/push-helm-charts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ helm plugin install https://github.com/hayorov/helm-gcs.git --version 0.2.2 ||

helm repo add feast-helm-chart-repo $bucket

mkdir -p feast
cp -R * feast/ || true

cd infra/charts
helm package feast
helm package feast-python-server

helm gcs push --public feast-${1}.tgz feast-helm-chart-repo --force
helm gcs push --public feast-${1}.tgz feast-helm-chart-repo --force
helm gcs push --public feast-python-server${1}.tgz feast-helm-chart-repo --force
2 changes: 1 addition & 1 deletion infra/scripts/helm/validate-helm-chart-versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e

# Amount of file locations that need to be bumped in unison when versions increment
UNIQUE_VERSIONS_COUNT=4
UNIQUE_VERSIONS_COUNT=9

if [ $# -ne 1 ]; then
echo "Please provide a single semver version (without a \"v\" prefix) to test the repository against, e.g 0.99.0"
Expand Down

0 comments on commit fc37896

Please sign in to comment.