Skip to content

Commit 337c8b9

Browse files
committed
🔖 🤖 Release v1.3.1
Signed-off-by: Vdaas CI <[email protected]>
1 parent e789236 commit 337c8b9

File tree

8 files changed

+88
-18
lines changed

8 files changed

+88
-18
lines changed

CHANGELOG.md

+68
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,73 @@
11
# CHANGELOG
22

3+
## v1.3.1
4+
5+
### Docker images
6+
7+
<table>
8+
<tr>
9+
<th>component</th>
10+
<th>Docker pull</th>
11+
</tr>
12+
<tr>
13+
<td>Agent NGT</td>
14+
<td>
15+
<code>docker pull vdaas/vald-agent-ngt:v1.3.1</code><br/>
16+
<code>docker pull ghcr.io/vdaas/vald/vald-agent-ngt:v1.3.1</code>
17+
</td>
18+
</tr>
19+
<tr>
20+
<td>Agent sidecar</td>
21+
<td>
22+
<code>docker pull vdaas/vald-agent-sidecar:v1.3.1</code><br/>
23+
<code>docker pull ghcr.io/vdaas/vald/vald-agent-sidecar:v1.3.1</code>
24+
</td>
25+
</tr>
26+
<tr>
27+
<td>Discoverers</td>
28+
<td>
29+
<code>docker pull vdaas/vald-discoverer-k8s:v1.3.1</code><br/>
30+
<code>docker pull ghcr.io/vdaas/vald/vald-discoverer-k8s:v1.3.1</code>
31+
</td>
32+
</tr>
33+
<tr>
34+
<td>Gateways</td>
35+
<td>
36+
<code>docker pull vdaas/vald-lb-gateway:v1.3.1</code><br/>
37+
<code>docker pull ghcr.io/vdaas/vald/vald-lb-gateway:v1.3.1</code><br/>
38+
<code>docker pull vdaas/vald-filter-gateway:v1.3.1</code><br/>
39+
<code>docker pull ghcr.io/vdaas/vald/vald-filter-gateway:v1.3.1</code>
40+
</td>
41+
</tr>
42+
<tr>
43+
<td>Index Manager</td>
44+
<td>
45+
<code>docker pull vdaas/vald-manager-index:v1.3.1</code><br/>
46+
<code>docker pull ghcr.io/vdaas/vald/vald-manager-index:v1.3.1</code>
47+
</td>
48+
</tr>
49+
<tr>
50+
<td>Helm Operator</td>
51+
<td>
52+
<code>docker pull vdaas/vald-helm-operator:v1.3.1</code><br/>
53+
<code>docker pull ghcr.io/vdaas/vald/vald-helm-operator:v1.3.1</code>
54+
</td>
55+
</tr>
56+
</table>
57+
58+
### Documents
59+
- [GoDoc](https://pkg.go.dev/github.com/vdaas/[email protected])
60+
- [Helm Chart Reference](https://github.com/vdaas/vald/blob/v1.3.1/charts/vald/README.md)
61+
- [Helm Operator Chart Reference](https://github.com/vdaas/vald/blob/v1.3.1/charts/vald-helm-operator/README.md)
62+
63+
### Changes
64+
- Add documentation comments to proto files (#1452)
65+
- Add ngt index count panel to agent grafana dashboard (#1483)
66+
- add grpc keepalive EnforcementPolicy support (#1487)
67+
- fix timing of removeInvalidIndex (#1481)
68+
- [bugfix] add validation to agent service option InitialDelayMaxDuration (#1482)
69+
70+
371
## v1.3.0
472

573
### Docker images

charts/vald-helm-operator/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
apiVersion: v2
1818
name: vald-helm-operator
19-
version: v1.3.0
19+
version: v1.3.1
2020
description: A Helm chart for vald-helm-operator
2121
type: application
2222
keywords:

charts/vald-helm-operator/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ vald-helm-operator
33

44
This is a Helm chart to install vald-helm-operator.
55

6-
Current chart version is `v1.3.0`
6+
Current chart version is `v1.3.1`
77

88
Table of Contents
99
---
@@ -30,13 +30,13 @@ Upgrading the version
3030

3131
Please upgrade the CRDs first because Helm doesn't have a support to upgrade CRDs.
3232

33-
$ kubectl replace -f https://raw.githubusercontent.com/vdaas/vald/v1.3.0/charts/vald-helm-operator/crds/valdrelease.yaml
34-
$ kubectl replace -f https://raw.githubusercontent.com/vdaas/vald/v1.3.0/charts/vald-helm-operator/crds/valdhelmoperatorrelease.yaml
33+
$ kubectl replace -f https://raw.githubusercontent.com/vdaas/vald/v1.3.1/charts/vald-helm-operator/crds/valdrelease.yaml
34+
$ kubectl replace -f https://raw.githubusercontent.com/vdaas/vald/v1.3.1/charts/vald-helm-operator/crds/valdhelmoperatorrelease.yaml
3535

3636
After upgrading CRDs, you can upgrade the operator.
3737
If you're using `valdhelmoperatorrelease` (or `vhor`) resource, please update the `spec.image.tag` field of it.
3838

39-
$ kubectl patch vhor vhor-release -p '{"spec":{"image":{"tag":"v1.3.0"}}}'
39+
$ kubectl patch vhor vhor-release -p '{"spec":{"image":{"tag":"v1.3.1"}}}'
4040

4141
On the other hand, please update the operator's deployment manually.
4242

@@ -85,7 +85,7 @@ Configuration
8585
| healthPort | int | `8081` | port of health endpoint |
8686
| image.pullPolicy | string | `"Always"` | image pull policy |
8787
| image.repository | string | `"vdaas/vald-helm-operator"` | image repository |
88-
| image.tag | string | `"v1.3.0"` | image tag |
88+
| image.tag | string | `"v1.3.1"` | image tag |
8989
| leaderElectionID | string | `"vald-helm-operator"` | name of the configmap that is used for holding the leader lock. |
9090
| livenessProbe.enabled | bool | `true` | enable liveness probe. |
9191
| livenessProbe.failureThreshold | int | `2` | liveness probe failure threshold |

charts/vald-helm-operator/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ image:
2929
repository: vdaas/vald-helm-operator
3030
# @schema {"name": "image.tag", "type": "string"}
3131
# image.tag -- image tag
32-
tag: v1.3.0
32+
tag: v1.3.1
3333
# @schema {"name": "image.pullPolicy", "type": "string", "enum": ["Always", "Never", "IfNotPresent"]}
3434
# image.pullPolicy -- image pull policy
3535
pullPolicy: Always

charts/vald/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
apiVersion: v2
1818
name: vald
19-
version: v1.3.0
19+
version: v1.3.1
2020
description: A distributed high scalable & high-speed approximate nearest neighbor search engine
2121
type: application
2222
keywords:

charts/vald/README.md

+10-8
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Vald
33

44
This is a Helm chart to install Vald components.
55

6-
Current chart version is `v1.3.0`
6+
Current chart version is `v1.3.1`
77

88
Table of Contents
99
---
@@ -241,7 +241,7 @@ Configuration
241241
| defaults.grpc.client.call_option.wait_for_ready | bool | `true` | gRPC client call option wait for ready |
242242
| defaults.grpc.client.connection_pool.enable_dns_resolver | bool | `true` | enables gRPC client connection pool dns resolver, when enabled vald uses ip handshake exclude dns discovery which improves network performance |
243243
| defaults.grpc.client.connection_pool.enable_rebalance | bool | `true` | enables gRPC client connection pool rebalance |
244-
| defaults.grpc.client.connection_pool.old_conn_close_duration | string | `"3s"` | makes delay before gRPC client connection closing during connection pool rebalance |
244+
| defaults.grpc.client.connection_pool.old_conn_close_duration | string | `"2m"` | makes delay before gRPC client connection closing during connection pool rebalance |
245245
| defaults.grpc.client.connection_pool.rebalance_duration | string | `"30m"` | gRPC client connection pool rebalance duration |
246246
| defaults.grpc.client.connection_pool.size | int | `3` | gRPC client connection pool size |
247247
| defaults.grpc.client.dial_option.backoff_base_delay | string | `"1s"` | gRPC client dial option base backoff delay |
@@ -252,9 +252,9 @@ Configuration
252252
| defaults.grpc.client.dial_option.initial_connection_window_size | int | `0` | gRPC client dial option initial connection window size |
253253
| defaults.grpc.client.dial_option.initial_window_size | int | `0` | gRPC client dial option initial window size |
254254
| defaults.grpc.client.dial_option.insecure | bool | `true` | gRPC client dial option insecure enabled |
255-
| defaults.grpc.client.dial_option.keepalive.permit_without_stream | bool | `false` | gRPC client keep alive permit without stream |
256-
| defaults.grpc.client.dial_option.keepalive.time | string | `""` | gRPC client keep alive time |
257-
| defaults.grpc.client.dial_option.keepalive.timeout | string | `""` | gRPC client keep alive timeout |
255+
| defaults.grpc.client.dial_option.keepalive.permit_without_stream | bool | `true` | gRPC client keep alive permit without stream |
256+
| defaults.grpc.client.dial_option.keepalive.time | string | `"120s"` | gRPC client keep alive time |
257+
| defaults.grpc.client.dial_option.keepalive.timeout | string | `"30s"` | gRPC client keep alive timeout |
258258
| defaults.grpc.client.dial_option.max_msg_size | int | `0` | gRPC client dial option max message size |
259259
| defaults.grpc.client.dial_option.min_connection_timeout | string | `"20s"` | gRPC client dial option minimum connection timeout |
260260
| defaults.grpc.client.dial_option.net.dialer.dual_stack_enabled | bool | `true` | gRPC client TCP dialer dual stack enabled |
@@ -286,7 +286,7 @@ Configuration
286286
| defaults.grpc.client.tls.enabled | bool | `false` | TLS enabled |
287287
| defaults.grpc.client.tls.insecure_skip_verify | bool | `false` | enable/disable skip SSL certificate verification |
288288
| defaults.grpc.client.tls.key | string | `"/path/to/key"` | TLS key path |
289-
| defaults.image.tag | string | `"v1.3.0"` | docker image tag |
289+
| defaults.image.tag | string | `"v1.3.1"` | docker image tag |
290290
| defaults.ingress.usev1beta1 | bool | `false` | use networking.k8s.io/v1beta1 instead of v1 for ingresses. This option will be removed once k8s 1.22 is released. |
291291
| defaults.logging.format | string | `"raw"` | logging format. logging format must be `raw` or `json` |
292292
| defaults.logging.level | string | `"debug"` | logging level. logging level must be `debug`, `info`, `warn`, `error` or `fatal`. |
@@ -478,8 +478,10 @@ Configuration
478478
| defaults.server_config.servers.grpc.server.grpc.keepalive.max_conn_age | string | `""` | gRPC server keep alive max connection age |
479479
| defaults.server_config.servers.grpc.server.grpc.keepalive.max_conn_age_grace | string | `""` | gRPC server keep alive max connection age grace |
480480
| defaults.server_config.servers.grpc.server.grpc.keepalive.max_conn_idle | string | `""` | gRPC server keep alive max connection idle |
481-
| defaults.server_config.servers.grpc.server.grpc.keepalive.time | string | `""` | gRPC server keep alive time |
482-
| defaults.server_config.servers.grpc.server.grpc.keepalive.timeout | string | `""` | gRPC server keep alive timeout |
481+
| defaults.server_config.servers.grpc.server.grpc.keepalive.min_time | string | `"60s"` | gRPC server keep alive min_time |
482+
| defaults.server_config.servers.grpc.server.grpc.keepalive.permit_without_stream | bool | `true` | gRPC server keep alive permit_without_stream |
483+
| defaults.server_config.servers.grpc.server.grpc.keepalive.time | string | `"120s"` | gRPC server keep alive time |
484+
| defaults.server_config.servers.grpc.server.grpc.keepalive.timeout | string | `"30s"` | gRPC server keep alive timeout |
483485
| defaults.server_config.servers.grpc.server.grpc.max_header_list_size | int | `0` | gRPC server max header list size |
484486
| defaults.server_config.servers.grpc.server.grpc.max_receive_message_size | int | `0` | gRPC server max receive message size |
485487
| defaults.server_config.servers.grpc.server.grpc.max_send_message_size | int | `0` | gRPC server max send message size |

charts/vald/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ defaults:
3838
image:
3939
# @schema {"name": "defaults.image.tag", "type": "string"}
4040
# defaults.image.tag -- docker image tag
41-
tag: v1.3.0
41+
tag: v1.3.1
4242
# @schema {"name": "defaults.server_config", "type": "object", "anchor": "server_config"}
4343
server_config:
4444
# @schema {"name": "defaults.server_config.servers", "type": "object"}

versions/VALD_VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.3.0
1+
v1.3.1

0 commit comments

Comments
 (0)