Skip to content

Commit

Permalink
version 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gsunner committed Jul 9, 2018
1 parent a7bc6a8 commit 086e943
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 35 deletions.
2 changes: 1 addition & 1 deletion api-frontend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>io.seldon.apife</groupId>
<artifactId>seldon-apife</artifactId>
<version>0.2.1-SNAPSHOT-CRD</version>
<version>0.2.1</version>
<packaging>jar</packaging>

<name>api-frontend</name>
Expand Down
2 changes: 1 addition & 1 deletion cluster-manager/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>io.seldon.clustermanager</groupId>
<artifactId>seldon-cluster-manager</artifactId>
<packaging>jar</packaging>
<version>0.2.1-SNAPSHOT-CRD</version>
<version>0.2.1</version>
<name>seldon-cluster-manager</name>
<url>http://maven.apache.org</url>

Expand Down
2 changes: 1 addition & 1 deletion engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>io.seldon.engine</groupId>
<artifactId>seldon-engine</artifactId>
<version>0.2.1-SNAPSHOT-CRD</version>
<version>0.2.1</version>
<packaging>jar</packaging>

<name>engine</name>
Expand Down
2 changes: 1 addition & 1 deletion helm-charts/seldon-core-crd/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ keywords:
name: seldon-core-crd
sources:
- https://github.com/SeldonIO/seldon-core
version: 0.2.1-SNAPSHOT-CRD
version: 0.2.1
2 changes: 1 addition & 1 deletion helm-charts/seldon-core/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ keywords:
name: seldon-core
sources:
- https://github.com/SeldonIO/seldon-core
version: 0.2.1-SNAPSHOT-CRD
version: 0.2.1
48 changes: 21 additions & 27 deletions helm-charts/seldon-core/values.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,36 @@
ambassador:
annotations:
getambassador.io/config: "---\napiVersion: ambassador/v0\nkind: Module\nname:\
\ ambassador\nconfig:\n service_port: 8080\n"
enabled: false
image:
name: quay.io/datawire/ambassador:0.35.1
resources:
limits:
cpu: 1
memory: 400Mi
requests:
cpu: 200m
memory: 128Mi
service_type: NodePort
statsd:
image:
name: datawire/prom-statsd-exporter:0.6.0
apife:
enabled: true
image:
name: seldonio/apife:0.2.1-SNAPSHOT-CRD
name: seldonio/apife:0.2.1
pull_policy: IfNotPresent
service_type: NodePort
cluster_manager:
image:
name: seldonio/cluster-manager:0.2.1-SNAPSHOT-CRD
name: seldonio/cluster-manager:0.2.1
pull_policy: IfNotPresent
java_opts: ''
spring_opts: ''
engine:
image:
name: seldonio/engine:0.2.1-SNAPSHOT-CRD
name: seldonio/engine:0.2.1
rbac:
enabled: true
rolebinding:
Expand All @@ -23,27 +41,3 @@ rbac:
redis:
image:
name: redis:4.0.1
ambassador:
enabled: false
service_type: NodePort
image:
name: quay.io/datawire/ambassador:0.35.1
statsd:
image:
name: datawire/prom-statsd-exporter:0.6.0
annotations:
getambassador.io/config: |
---
apiVersion: ambassador/v0
kind: Module
name: ambassador
config:
service_port: 8080
resources:
limits:
cpu: 1
memory: 400Mi
requests:
cpu: 200m
memory: 128Mi

6 changes: 3 additions & 3 deletions seldon-core/seldon-core/prototypes/core.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -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.1-SNAPSHOT-CRD Default image for API Front End
// @optionalParam apifeImage string seldonio/apife:0.2.1 Default image for API Front End
// @optionalParam apifeServiceType string NodePort API Front End Service Type
// @optionalParam operatorImage string seldonio/cluster-manager:0.2.1-SNAPSHOT-CRD Seldon cluster manager image version
// @optionalParam operatorImage string seldonio/cluster-manager:0.2.1 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.1-SNAPSHOT-CRD Seldon engine image version
// @optionalParam engineImage string seldonio/engine:0.2.1 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.
Expand Down

0 comments on commit 086e943

Please sign in to comment.