Skip to content

Commit

Permalink
Cut 0.2.2 release (kubeflow#579)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellistarn authored and k8s-ci-robot committed Dec 1, 2019
1 parent 9dd0900 commit d7c6718
Show file tree
Hide file tree
Showing 10 changed files with 1,038 additions and 21 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.1
TAG=0.2.2
kubectl apply -f ./install/$TAG/kfserving.yaml
```
By default, you can create InferenceService instances in any namespace which has no label with `control-plane` as key.
Expand Down
20 changes: 10 additions & 10 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.1",
"defaultImageVersion": "0.2.2",
"allowedImageVersions": [
"0.2.1"
"0.2.2"
]
},
"xgboost": {
"image": "gcr.io/kfserving/xgbserver",
"defaultImageVersion": "0.2.1",
"defaultImageVersion": "0.2.2",
"allowedImageVersions": [
"0.2.1"
"0.2.2"
]
},
"pytorch": {
"image": "gcr.io/kfserving/pytorchserver",
"defaultImageVersion": "0.2.1",
"defaultImageVersion": "0.2.2",
"allowedImageVersions": [
"0.2.1"
"0.2.2"
]
},
"tensorrt": {
Expand All @@ -64,15 +64,15 @@ data:
{
"alibi": {
"image" : "gcr.io/kfserving/alibi-explainer",
"defaultImageVersion": "0.2.1",
"defaultImageVersion": "0.2.2",
"allowedImageVersions": [
"0.2.1"
"0.2.2"
]
}
}
storageInitializer: |-
{
"image" : "gcr.io/kfserving/storage-initializer:0.2.1",
"image" : "gcr.io/kfserving/storage-initializer:0.2.2",
"memoryRequest": "100Mi",
"memoryLimit": "1Gi",
"cpuRequest": "100m",
Expand All @@ -95,7 +95,7 @@ data:
}
logger: |-
{
"image" : "gcr.io/kfserving/logger:0.2.1",
"image" : "gcr.io/kfserving/logger:0.2.2",
"memoryRequest": "100Mi",
"memoryLimit": "1Gi",
"cpuRequest": "100m",
Expand Down
1 change: 1 addition & 0 deletions hack/generate-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ RELEASES=(
"0.1.0"
"0.2.0"
"0.2.1"
"0.2.2"
)

TAG=$1
Expand Down

0 comments on commit d7c6718

Please sign in to comment.