From dd98a3fa3ad85dec00402315e6a46b5b89fec480 Mon Sep 17 00:00:00 2001 From: Gurminder Sunner Date: Fri, 29 Jun 2018 11:50:31 +0100 Subject: [PATCH] version 0.2.1-SNAPSHOT --- CHANGELOG.md | 13 +++++++++++++ api-frontend/pom.xml | 2 +- cluster-manager/pom.xml | 2 +- engine/pom.xml | 2 +- helm-charts/seldon-core-crd/Chart.yaml | 2 +- helm-charts/seldon-core/Chart.yaml | 2 +- helm-charts/seldon-core/values.yaml | 6 +++--- seldon-core/seldon-core/prototypes/core.jsonnet | 6 +++--- 8 files changed, 24 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cc65a6db1f..186bea7705 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Change Log +## [v0.2.0](https://github.com/SeldonIO/seldon-core/tree/v0.2.0) (2018-06-29) +[Full Changelog](https://github.com/SeldonIO/seldon-core/compare/v0.1.8...v0.2.0) + +**Closed issues:** + +- PREDICTIVE\_UNIT\_PARAMETERS: not able to set them up correctly [\#170](https://github.com/SeldonIO/seldon-core/issues/170) +- Add docs page for Helm [\#71](https://github.com/SeldonIO/seldon-core/issues/71) + +**Merged pull requests:** + +- fix crd.libsonnet error [\#177](https://github.com/SeldonIO/seldon-core/pull/177) ([fisache](https://github.com/fisache)) +- Distributed deployment and Istio [\#173](https://github.com/SeldonIO/seldon-core/pull/173) ([cliveseldon](https://github.com/cliveseldon)) + ## [v0.1.8](https://github.com/SeldonIO/seldon-core/tree/v0.1.8) (2018-06-27) [Full Changelog](https://github.com/SeldonIO/seldon-core/compare/v0.1.7...v0.1.8) diff --git a/api-frontend/pom.xml b/api-frontend/pom.xml index e17e6dc79e..f59b939e5c 100644 --- a/api-frontend/pom.xml +++ b/api-frontend/pom.xml @@ -10,7 +10,7 @@ io.seldon.apife seldon-apife - 0.2.0 + 0.2.1-SNAPSHOT jar api-frontend diff --git a/cluster-manager/pom.xml b/cluster-manager/pom.xml index a4384d8745..22a2a89b54 100644 --- a/cluster-manager/pom.xml +++ b/cluster-manager/pom.xml @@ -4,7 +4,7 @@ io.seldon.clustermanager seldon-cluster-manager jar - 0.2.0 + 0.2.1-SNAPSHOT seldon-cluster-manager http://maven.apache.org diff --git a/engine/pom.xml b/engine/pom.xml index b0e26d68f9..a0100d9867 100644 --- a/engine/pom.xml +++ b/engine/pom.xml @@ -10,7 +10,7 @@ io.seldon.engine seldon-engine - 0.2.0 + 0.2.1-SNAPSHOT jar engine diff --git a/helm-charts/seldon-core-crd/Chart.yaml b/helm-charts/seldon-core-crd/Chart.yaml index 2410b6a4f4..8164cd8099 100644 --- a/helm-charts/seldon-core-crd/Chart.yaml +++ b/helm-charts/seldon-core-crd/Chart.yaml @@ -6,4 +6,4 @@ keywords: name: seldon-core-crd sources: - https://github.com/SeldonIO/seldon-core -version: 0.2.0 +version: 0.2.1-SNAPSHOT diff --git a/helm-charts/seldon-core/Chart.yaml b/helm-charts/seldon-core/Chart.yaml index 9bba4f2731..d0c810d417 100644 --- a/helm-charts/seldon-core/Chart.yaml +++ b/helm-charts/seldon-core/Chart.yaml @@ -6,4 +6,4 @@ keywords: name: seldon-core sources: - https://github.com/SeldonIO/seldon-core -version: 0.2.0 +version: 0.2.1-SNAPSHOT diff --git a/helm-charts/seldon-core/values.yaml b/helm-charts/seldon-core/values.yaml index 30f696874a..e32977dcc2 100644 --- a/helm-charts/seldon-core/values.yaml +++ b/helm-charts/seldon-core/values.yaml @@ -2,17 +2,17 @@ apife: enabled: true image: pull_policy: IfNotPresent - tag: 0.2.0 + tag: 0.2.1-SNAPSHOT apife_service_type: NodePort cluster_manager: image: pull_policy: IfNotPresent - tag: 0.2.0 + tag: 0.2.1-SNAPSHOT java_opts: '' spring_opts: '' engine: image: - tag: 0.2.0 + tag: 0.2.1-SNAPSHOT rbac: enabled: true redis: diff --git a/seldon-core/seldon-core/prototypes/core.jsonnet b/seldon-core/seldon-core/prototypes/core.jsonnet index 3fd9ba2192..c14e0c2343 100644 --- a/seldon-core/seldon-core/prototypes/core.jsonnet +++ b/seldon-core/seldon-core/prototypes/core.jsonnet @@ -6,12 +6,12 @@ // @optionalParam namespace string default Namespace // @optionalParam withRbac string false Whether to include RBAC setup // @optionalParam withApife string true Whether to include builtin API Oauth fornt end server for ingress -// @optionalParam apifeImage string seldonio/apife:0.2.0 Default image for API Front End +// @optionalParam apifeImage string seldonio/apife:0.2.1-SNAPSHOT Default image for API Front End // @optionalParam apifeServiceType string NodePort API Front End Service Type -// @optionalParam operatorImage string seldonio/cluster-manager:0.2.0 Seldon cluster manager image version +// @optionalParam operatorImage string seldonio/cluster-manager:0.2.1-SNAPSHOT Seldon cluster manager image version // @optionalParam operatorSpringOpts string null cluster manager spring opts // @optionalParam operatorJavaOpts string null cluster manager java opts -// @optionalParam engineImage string seldonio/engine:0.2.0 Seldon engine image version +// @optionalParam engineImage string seldonio/engine:0.2.1-SNAPSHOT Seldon engine image version // TODO(https://github.com/ksonnet/ksonnet/issues/222): We have to add namespace as an explicit parameter // because ksonnet doesn't support inheriting it from the environment yet.