Skip to content

Commit

Permalink
add available images to configmap (kubeflow#319)
Browse files Browse the repository at this point in the history
  • Loading branch information
jinchihe authored and k8s-ci-robot committed Sep 9, 2019
1 parent 8cd985e commit e21553c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkg/apis/serving/v1alpha2/framework_scikit.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import (
var (
AllowedSKLearnRuntimeVersions = []string{
"latest",
"v0.1.2",
}
InvalidSKLearnRuntimeVersionError = "RuntimeVersion must be one of " + strings.Join(AllowedSKLearnRuntimeVersions, ", ")
SKLearnServerImageName = "gcr.io/kfserving/sklearnserver"
Expand Down
1 change: 1 addition & 0 deletions pkg/apis/serving/v1alpha2/framework_xgboost.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import (
var (
AllowedXGBoostRuntimeVersions = []string{
"latest",
"v0.1.2",
}
InvalidXGBoostRuntimeVersionError = "RuntimeVersion must be one of " + strings.Join(AllowedXGBoostRuntimeVersions, ", ")
XGBoostServerImageName = "gcr.io/kfserving/xgbserver"
Expand Down
1 change: 1 addition & 0 deletions pkg/apis/serving/v1alpha2/kfservice_framework_pytorch.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import (
var (
AllowedPyTorchRuntimeVersions = []string{
"latest",
"v0.1.2",
}
InvalidPyTorchRuntimeVersionError = "RuntimeVersion must be one of " + strings.Join(AllowedPyTorchRuntimeVersions, ", ")
PyTorchServerImageName = "gcr.io/kfserving/pytorchserver"
Expand Down

0 comments on commit e21553c

Please sign in to comment.