Skip to content

Commit 6c10254

Browse files
author
zhilingc
committed
Reset version numbers to 0.1.0, update helm charts
1 parent 7032b50 commit 6c10254

File tree

9 files changed

+30
-24
lines changed

9 files changed

+30
-24
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.0
1+
0.1.0

charts/README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,9 @@ The following table lists the configurable parameters of the Feast chart and the
6161
| -- | -- | -- |
6262
| `core.image.registry` | core docker image registry | feast |
6363
| `core.image.repository` | core docker image repository | feast-core |
64-
| `core.image.tag` | core docker image version | 0.3.0 |
65-
| `core.jobs.errorsStoreId` | storage ID of location to write errors | FILE_ERROR_STORE |
64+
| `core.image.tag` | core docker image version | 0.1.0 |
65+
| `core.jobs.errorsStoreId` | type of errors store to write errors to. One of `stdout`, `stderr`, `file.json` | stdout |
66+
| `core.jobs.errorsStoreOptions` | additional options for the error store in json string format | `{}` |
6667
| `core.jobs.monitoring.initialDelay` | delay before a job starts to be monitored in ms | 60000 |
6768
| `core.jobs.monitoring.period` | polling interval for jobs monitoring in ms | 5000 |
6869
| `core.jobs.options` | additional options to be provided to the beam job. Should be a char escaped json k-v object | {} |
@@ -77,6 +78,7 @@ The following table lists the configurable parameters of the Feast chart and the
7778
| `core.service.grpc.targetPort` | core service target grpc port | 8433 |
7879
| `core.service.http.port` | core service exposed http port | 80 |
7980
| `core.service.http.targetPort` | core service target http port | 8080 |
81+
| `core.trainingDatasetPrefix` | prefix for training datasets created in bq | fs |
8082
| `dataflow.location` | desired dataflow's region | nil |
8183
| `dataflow.projectID` | desired dataflow's project id | nil |
8284
| `postgresql.postgresPassword` | specify password if you want the postgres password secret to be generated | nil |
@@ -89,7 +91,7 @@ The following table lists the configurable parameters of the Feast chart and the
8991
| `serving.config.timeout` | request timeout in seconds | 5 |
9092
| `serving.image.registry` | serving docker image registry | feast |
9193
| `serving.image.repository` | serving docker image repository | feast-serving |
92-
| `serving.image.tag` | serving docker image version | 0.3.0 |
94+
| `serving.image.tag` | serving docker image version | 0.1.0 |
9395
| `serving.replicaCount` | serving replica count | 4 |
9496
| `serving.resources.limits.cpu` | serving cpu limits | 1 |
9597
| `serving.resources.limits.memory` | serving memory limits | 2G |
@@ -99,5 +101,7 @@ The following table lists the configurable parameters of the Feast chart and the
99101
| `serving.service.grpc.targetPort` | serving service target grpc port | 8433 |
100102
| `serving.service.http.port` | serving service exposed http port | 80 |
101103
| `serving.service.http.targetPort` | serving service target http port | 8080 |
104+
| `serviceAccount.name` | service account secret name to mount to deployments | nil |
105+
| `serviceAccount.key` | service account secret key to mount to deployments | nil |
102106
| `statsd.host` | host of statsd daemon for job metrics to be sent to | nil |
103107
| `statsd.port` | port of statsd daemon for job metrics to be sent to | nil |

charts/dist/feast-0.1.0.tgz

11 KB
Binary file not shown.

charts/dist/feast-0.3.0.tgz

-10.9 KB
Binary file not shown.

charts/dist/index.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ apiVersion: v1
22
entries:
33
feast:
44
- apiVersion: v1
5-
appVersion: 0.3.0
6-
created: 2019-01-12T19:12:26.9585+08:00
5+
appVersion: 0.1.0
6+
created: 2019-01-18T23:14:21.749301991+08:00
77
description: A Helm chart to install Feast on kubernetes
8-
digest: cba907c528b94d8b478a1c21ad75a82576505731a579877b797cdf04b2d1aa2d
8+
digest: d123cfb872b2c6187363dbc101ed03852fc5c44163de2219592911e5035fb8f2
99
name: feast
1010
urls:
11-
- feast-0.3.0.tgz
12-
version: 0.3.0
13-
generated: 2019-01-12T19:12:26.95618+08:00
11+
- feast-0.1.0.tgz
12+
version: 0.1.0
13+
generated: 2019-01-18T23:14:21.748282323+08:00

charts/feast/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v1
2-
appVersion: "0.3.0"
2+
appVersion: "0.1.0"
33
description: A Helm chart to install Feast on kubernetes
44
name: feast
5-
version: 0.3.0
5+
version: 0.1.0

charts/feast/values.yaml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ core:
55
pullPolicy: IfNotPresent
66
registry: feast
77
repository: feast-core
8-
tag: "0.3.0"
8+
tag: "0.1.0"
99
replicaCount: 3
1010
resources:
1111
limits:
@@ -19,15 +19,15 @@ core:
1919
maxUnavailable: 0
2020
service:
2121
grpc:
22-
port: 8433
23-
targetPort: 8433
22+
port: 6565
23+
targetPort: 6565
2424
http:
2525
port: 80
2626
targetPort: 8080
2727
jobs:
2828
runner: DirectRunner
2929
options: "{}"
30-
errorsStoreType: "STDOUT"
30+
errorsStoreType: "stdout"
3131
errorStoreOptions: "{}"
3232
monitoring:
3333
period: 5000
@@ -53,7 +53,7 @@ serving:
5353
pullPolicy: IfNotPresent
5454
registry: feast
5555
repository: feast-serving
56-
tag: "0.3.0"
56+
tag: "0.1.0"
5757
replicaCount: 4
5858
resources:
5959
limits:
@@ -67,17 +67,19 @@ serving:
6767
maxUnavailable: 0
6868
service:
6969
grpc:
70-
port: 8433
71-
targetPort: 8433
70+
port: 6565
71+
targetPort: 6565
7272
http:
7373
port: 80
7474
targetPort: 8080
7575
jaeger:
7676
enabled: false
7777

78-
serviceAccount:
79-
name: feast-service-account
80-
key: feast-service-account-key
78+
# Enable only if you have an existing service account you
79+
# want to mount the secret of.
80+
# serviceAccount:
81+
# name: feast-service-account
82+
# key: feast-service-account-key
8183

8284
statsd:
8385
host: "localhost"

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<name>Feast Parent</name>
2525

2626
<properties>
27-
<revision>0.3.0</revision>
27+
<revision>0.1.0</revision>
2828
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2929
<protocVersion>3.6.1</protocVersion>
3030
<grpcVersion>1.14.0</grpcVersion>

sdk/python/feast/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
VERSION = '0.3.0'
15+
VERSION = '0.1.0'

0 commit comments

Comments
 (0)