Skip to content

Commit

Permalink
Add pytorchserver image in kfservice-config (kubeflow#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
hougangliu authored and k8s-ci-robot committed Jul 9, 2019
1 parent 0d840b9 commit e53849f
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 17 deletions.
23 changes: 13 additions & 10 deletions config/default/configmap/kfservice.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,29 @@ metadata:
data:
frameworks: |-
{
"tensorflow" : {
"image" : "tensorflow/serving"
"tensorflow": {
"image": "tensorflow/serving"
},
"sklearn" : {
"image" : "gcr.io/kfserving/sklearnserver"
"sklearn": {
"image": "gcr.io/kfserving/sklearnserver"
},
"xgboost" : {
"image" : "gcr.io/kfserving/xgbserver"
"xgboost": {
"image": "gcr.io/kfserving/xgbserver"
},
"tensorrt" : {
"pytorch": {
"image": "gcr.io/kfserving/pytorchserver"
}
"tensorrt": {
"image": "nvcr.io/nvidia/tensorrtserver"
}
}
credentials: |-
{
"gcs" : {
"gcs": {
"gcsCredentialFileName": "gcloud-application-credentials.json"
},
"s3" : {
"s3": {
"s3AccessKeyIDName": "awsAccessKeyID",
"s3SecretAccessKeyName": "awsSecretAccessKey"
}
}
}
17 changes: 10 additions & 7 deletions install/v0.1.0/kfserving.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -505,16 +505,19 @@ data:
}
frameworks: |-
{
"tensorflow" : {
"image" : "tensorflow/serving"
"tensorflow": {
"image": "tensorflow/serving"
},
"sklearn" : {
"image" : "gcr.io/kfserving/sklearnserver"
"sklearn": {
"image": "gcr.io/kfserving/sklearnserver"
},
"xgboost" : {
"image" : "gcr.io/kfserving/xgbserver"
"pytorch": {
"image": "gcr.io/kfserving/pytorchserver"
}
"xgboost": {
"image": "gcr.io/kfserving/xgbserver"
},
"tensorrt" : {
"tensorrt": {
"image": "nvcr.io/nvidia/tensorrtserver"
}
}
Expand Down

0 comments on commit e53849f

Please sign in to comment.