Skip to content

Commit 32ac968

Browse files
committed
🔖 🤖 Release v1.2.0
Signed-off-by: Vdaas CI <[email protected]>
1 parent e683740 commit 32ac968

File tree

8 files changed

+137
-12
lines changed

8 files changed

+137
-12
lines changed

CHANGELOG.md

+125
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,130 @@
11
# CHANGELOG
22

3+
## v1.2.0
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.2.0</code><br/>
16+
<code>docker pull ghcr.io/vdaas/vald/vald-agent-ngt:v1.2.0</code>
17+
</td>
18+
</tr>
19+
<tr>
20+
<td>Agent sidecar</td>
21+
<td>
22+
<code>docker pull vdaas/vald-agent-sidecar:v1.2.0</code><br/>
23+
<code>docker pull ghcr.io/vdaas/vald/vald-agent-sidecar:v1.2.0</code>
24+
</td>
25+
</tr>
26+
<tr>
27+
<td>Discoverers</td>
28+
<td>
29+
<code>docker pull vdaas/vald-discoverer-k8s:v1.2.0</code><br/>
30+
<code>docker pull ghcr.io/vdaas/vald/vald-discoverer-k8s:v1.2.0</code>
31+
</td>
32+
</tr>
33+
<tr>
34+
<td>Gateways</td>
35+
<td>
36+
<code>docker pull vdaas/vald-gateway:v1.2.0</code><br/>
37+
<code>docker pull ghcr.io/vdaas/vald/vald-gateway:v1.2.0</code><br/>
38+
<code>docker pull vdaas/vald-backup-gateway:v1.2.0</code><br/>
39+
<code>docker pull ghcr.io/vdaas/vald/vald-backup-gateway:v1.2.0</code><br/>
40+
<code>docker pull vdaas/vald-lb-gateway:v1.2.0</code><br/>
41+
<code>docker pull ghcr.io/vdaas/vald/vald-lb-gateway:v1.2.0</code><br/>
42+
<code>docker pull vdaas/vald-meta-gateway:v1.2.0</code><br/>
43+
<code>docker pull ghcr.io/vdaas/vald/vald-meta-gateway:v1.2.0</code>
44+
</td>
45+
</tr>
46+
<tr>
47+
<td>Backup managers</td>
48+
<td>
49+
<code>docker pull vdaas/vald-manager-backup-mysql:v1.2.0</code><br/>
50+
<code>docker pull ghcr.io/vdaas/vald/vald-manager-backup-mysql:v1.2.0</code><br/>
51+
<code>docker pull vdaas/vald-manager-backup-cassandra:v1.2.0</code><br/>
52+
<code>docker pull ghcr.io/vdaas/vald/vald-manager-backup-cassandra:v1.2.0</code>
53+
</td>
54+
</tr>
55+
<tr>
56+
<td>Compressor</td>
57+
<td>
58+
<code>docker pull vdaas/vald-manager-compressor:v1.2.0</code><br/>
59+
<code>docker pull ghcr.io/vdaas/vald/vald-manager-compressor:v1.2.0</code>
60+
</td>
61+
</tr>
62+
<tr>
63+
<td>Metas</td>
64+
<td>
65+
<code>docker pull vdaas/vald-meta-redis:v1.2.0</code><br/>
66+
<code>docker pull ghcr.io/vdaas/vald/vald-meta-redis:v1.2.0</code><br/>
67+
<code>docker pull vdaas/vald-meta-cassandra:v1.2.0</code><br/>
68+
<code>docker pull ghcr.io/vdaas/vald/vald-meta-cassandra:v1.2.0</code>
69+
</td>
70+
</tr>
71+
<tr>
72+
<td>Index Manager</td>
73+
<td>
74+
<code>docker pull vdaas/vald-manager-index:v1.2.0</code><br/>
75+
<code>docker pull ghcr.io/vdaas/vald/vald-manager-index:v1.2.0</code>
76+
</td>
77+
</tr>
78+
<tr>
79+
<td>Helm Operator</td>
80+
<td>
81+
<code>docker pull vdaas/vald-helm-operator:v1.2.0</code><br/>
82+
<code>docker pull ghcr.io/vdaas/vald/vald-helm-operator:v1.2.0</code>
83+
</td>
84+
</tr>
85+
</table>
86+
87+
### Documents
88+
- [GoDoc](https://pkg.go.dev/github.com/vdaas/[email protected])
89+
- [Helm Chart Reference](https://github.com/vdaas/vald/blob/v1.2.0/charts/vald/README.md)
90+
- [Helm Operator Chart Reference](https://github.com/vdaas/vald/blob/v1.2.0/charts/vald-helm-operator/README.md)
91+
92+
### Changes
93+
# Release Vald v1.2.0
94+
95+
96+
## Changes:
97+
- fix build failure on arm cpu due to the xxh3 dependency version (#1368)
98+
- Add core algorithm ngt test (#1364)
99+
- add mote accurate directory detection logic for removing (#1366)
100+
- remove meta backup compressor from charts (#1334)
101+
- update go module version (#1363)
102+
- Update architecture overview (#1304)
103+
- Improve internal package tests (#1227)
104+
- fix bug of bulkinsert when error occurs and refactor error message (#1361)
105+
- change initial-index-directory removal logic (#1359)
106+
- ci: :construction_worker: Add gnupg to ci-container (#1362)
107+
- ci: :construction_worker: add condition to trigger importing gpg key (#1360)
108+
- fix: :bug: Fix mount paths when using persistent volume claim template (#1358)
109+
- ci: :construction_worker: Add Upsert operation tests (#1347)
110+
- config: :gear: Use GPG key for signing commits (#1351)
111+
- add time validation for vqueue (#1352)
112+
- chore-deps: :arrow_up: Upgrade tools (#1355)
113+
- comment out backup/meta/compressor build command in Makefile (#1346)
114+
- remove: :heavy_minus_sign: Remove backup, meta components from CI (#1331)
115+
- add line trace logging when log mode is glg and level is debug (#1348)
116+
- update go version to 1.16.6 and update go module dependencies (#1345)
117+
- [bugfix] agent createindex operation's time.Ticker purges too slow & buffer overflow due to the unnecessary error wrapping (#1343)
118+
- [bugfix] change kvsdb and vqueue check order for Exists operation (#1341)
119+
- update go module dependencies (#1336)
120+
- bugfix nil pointer panic in agent's MultiUpsert operation (#1335)
121+
- [bugfix] agent.GetObject API returns old indexed vector problem instead of vqueue's new data (#1333)
122+
- add timestamp handler for agent timestamp controlled update (#1324)
123+
- fix: :bug: Fix typo (#1330)
124+
- remove owner and description info from resource info rich error for each grpc handler (#1327)
125+
- Update documents: configurations (#1289
126+
127+
3128
## v1.1.2
4129

5130
### 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.1.2
19+
version: v1.2.0
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.1.2`
6+
Current chart version is `v1.2.0`
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.1.2/charts/vald-helm-operator/crds/valdrelease.yaml
34-
$ kubectl replace -f https://raw.githubusercontent.com/vdaas/vald/v1.1.2/charts/vald-helm-operator/crds/valdhelmoperatorrelease.yaml
33+
$ kubectl replace -f https://raw.githubusercontent.com/vdaas/vald/v1.2.0/charts/vald-helm-operator/crds/valdrelease.yaml
34+
$ kubectl replace -f https://raw.githubusercontent.com/vdaas/vald/v1.2.0/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.1.2"}}}'
39+
$ kubectl patch vhor vhor-release -p '{"spec":{"image":{"tag":"v1.2.0"}}}'
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.1.2"` | image tag |
88+
| image.tag | string | `"v1.2.0"` | 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.1.2
32+
tag: v1.2.0
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.1.2
19+
version: v1.2.0
2020
description: A distributed high scalable & high-speed approximate nearest neighbor search engine
2121
type: application
2222
keywords:

charts/vald/README.md

+2-2
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.1.2`
6+
Current chart version is `v1.2.0`
77

88
Table of Contents
99
---
@@ -287,7 +287,7 @@ Configuration
287287
| defaults.grpc.client.tls.enabled | bool | `false` | TLS enabled |
288288
| defaults.grpc.client.tls.insecure_skip_verify | bool | `false` | enable/disable skip SSL certificate verification |
289289
| defaults.grpc.client.tls.key | string | `"/path/to/key"` | TLS key path |
290-
| defaults.image.tag | string | `"v1.1.2"` | docker image tag |
290+
| defaults.image.tag | string | `"v1.2.0"` | docker image tag |
291291
| 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. |
292292
| defaults.logging.format | string | `"raw"` | logging format. logging format must be `raw` or `json` |
293293
| defaults.logging.level | string | `"debug"` | logging level. logging level must be `debug`, `info`, `warn`, `error` or `fatal`. |

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.1.2
41+
tag: v1.2.0
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.1.2
1+
v1.2.0

0 commit comments

Comments
 (0)