Skip to content

Commit

Permalink
Generated 0.2.1 install (kubeflow#529)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellistarn authored and k8s-ci-robot committed Nov 8, 2019
1 parent 6e258e2 commit 7f24834
Show file tree
Hide file tree
Showing 11 changed files with 1,049 additions and 40 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ You may find this [installation instruction](https://github.com/kubeflow/kfservi

### Installation using kubectl ###
```
TAG=0.2.0
TAG=0.2.1
kubectl apply -f ./install/$TAG/kfserving.yaml
```

Expand Down
18 changes: 9 additions & 9 deletions config/default/configmap/inferenceservice.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,23 +30,23 @@ data:
},
"sklearn": {
"image": "gcr.io/kfserving/sklearnserver",
"defaultImageVersion": "0.2.0",
"defaultImageVersion": "0.2.1",
"allowedImageVersions": [
"0.2.0"
"0.2.1"
]
},
"xgboost": {
"image": "gcr.io/kfserving/xgbserver",
"defaultImageVersion": "0.2.0",
"defaultImageVersion": "0.2.1",
"allowedImageVersions": [
"0.2.0"
"0.2.1"
]
},
"pytorch": {
"image": "gcr.io/kfserving/pytorchserver",
"defaultImageVersion": "0.2.0",
"defaultImageVersion": "0.2.1",
"allowedImageVersions": [
"0.2.0"
"0.2.1"
]
},
"tensorrt": {
Expand All @@ -64,15 +64,15 @@ data:
{
"alibi": {
"image" : "gcr.io/kfserving/alibi-explainer",
"defaultImageVersion": "0.2.0",
"defaultImageVersion": "0.2.1",
"allowedImageVersions": [
"0.2.0"
"0.2.1"
]
}
}
storageInitializer: |-
{
"image" : "gcr.io/kfserving/storage-initializer:0.2.0",
"image" : "gcr.io/kfserving/storage-initializer:0.2.1",
"memoryRequest": "100Mi",
"memoryLimit": "1Gi",
"cpuRequest": "100m",
Expand Down
2 changes: 1 addition & 1 deletion docs/samples/transformer/image_transformer/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
python_requires='>=3.6',
packages=find_packages("transformer"),
install_requires=[
"kfserving>=0.2.0",
"kfserving>=0.2.1",
"argparse>=1.4.0",
"requests>=2.22.0",
"joblib>=0.13.2",
Expand Down
1 change: 1 addition & 0 deletions hack/generate-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ set -o pipefail
RELEASES=(
"0.1.0"
"0.2.0"
"0.2.1"
)

TAG=$1
Expand Down
Loading

0 comments on commit 7f24834

Please sign in to comment.