diff --git a/CHANGELOG.md b/CHANGELOG.md index d1a573b3bb..d86e4181aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,114 @@ # CHANGELOG +## v1.2.1 + +### Docker images + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
componentDocker pull
Agent NGT + docker pull vdaas/vald-agent-ngt:v1.2.1
+ docker pull ghcr.io/vdaas/vald/vald-agent-ngt:v1.2.1 +
Agent sidecar + docker pull vdaas/vald-agent-sidecar:v1.2.1
+ docker pull ghcr.io/vdaas/vald/vald-agent-sidecar:v1.2.1 +
Discoverers + docker pull vdaas/vald-discoverer-k8s:v1.2.1
+ docker pull ghcr.io/vdaas/vald/vald-discoverer-k8s:v1.2.1 +
Gateways + docker pull vdaas/vald-gateway:v1.2.1
+ docker pull ghcr.io/vdaas/vald/vald-gateway:v1.2.1
+ docker pull vdaas/vald-backup-gateway:v1.2.1
+ docker pull ghcr.io/vdaas/vald/vald-backup-gateway:v1.2.1
+ docker pull vdaas/vald-lb-gateway:v1.2.1
+ docker pull ghcr.io/vdaas/vald/vald-lb-gateway:v1.2.1
+ docker pull vdaas/vald-meta-gateway:v1.2.1
+ docker pull ghcr.io/vdaas/vald/vald-meta-gateway:v1.2.1 +
Backup managers + docker pull vdaas/vald-manager-backup-mysql:v1.2.1
+ docker pull ghcr.io/vdaas/vald/vald-manager-backup-mysql:v1.2.1
+ docker pull vdaas/vald-manager-backup-cassandra:v1.2.1
+ docker pull ghcr.io/vdaas/vald/vald-manager-backup-cassandra:v1.2.1 +
Compressor + docker pull vdaas/vald-manager-compressor:v1.2.1
+ docker pull ghcr.io/vdaas/vald/vald-manager-compressor:v1.2.1 +
Metas + docker pull vdaas/vald-meta-redis:v1.2.1
+ docker pull ghcr.io/vdaas/vald/vald-meta-redis:v1.2.1
+ docker pull vdaas/vald-meta-cassandra:v1.2.1
+ docker pull ghcr.io/vdaas/vald/vald-meta-cassandra:v1.2.1 +
Index Manager + docker pull vdaas/vald-manager-index:v1.2.1
+ docker pull ghcr.io/vdaas/vald/vald-manager-index:v1.2.1 +
Helm Operator + docker pull vdaas/vald-helm-operator:v1.2.1
+ docker pull ghcr.io/vdaas/vald/vald-helm-operator:v1.2.1 +
+ +### Documents +- [GoDoc](https://pkg.go.dev/github.com/vdaas/vald@v1.2.1) +- [Helm Chart Reference](https://github.com/vdaas/vald/blob/v1.2.1/charts/vald/README.md) +- [Helm Operator Chart Reference](https://github.com/vdaas/vald/blob/v1.2.1/charts/vald-helm-operator/README.md) + +### Changes +- remove global errgroup from kvsdb goroutine limitation (#1398) +- add google grpc healthz & logger (#1394) +- fix e2e multi apis test code (#1397) +- :pencil: fix command in vald agent standalone on docker (#1393) +- add Makefile & Makefile.d to build kick rule (#1391) +- format codes (#1389) +- [proposal] add golines as vald default formatter (#1337) +- replace gogo protobuf to vt protobuf (#1378) +- refactor gateway request result location aggregation logic & use xxh3 for kvsdb hashing (#1376) +- Add E2E tests for multi-APIs (#1353) +- Add test for the function to get length of vqueue (#1382) +- remove unused path of format/yaml command (#1383) +- [Documentation] fix image filename (#1377) +- Vald moves to a vector search engine that enables more simple and high-speed retrieval. This is the first step of Simple-Vald. (#1365) +- Add e2e-profiling job (#1356) +- fix svg error on dataflow image (#1375) +- remove invalid gateway component reference from chart.NOTES (#1371) + + ## v1.2.0 ### Docker images diff --git a/charts/vald-helm-operator/Chart.yaml b/charts/vald-helm-operator/Chart.yaml index 689628fb88..dcde9a4fa4 100644 --- a/charts/vald-helm-operator/Chart.yaml +++ b/charts/vald-helm-operator/Chart.yaml @@ -16,7 +16,7 @@ apiVersion: v2 name: vald-helm-operator -version: v1.2.0 +version: v1.2.1 description: A Helm chart for vald-helm-operator type: application keywords: diff --git a/charts/vald-helm-operator/README.md b/charts/vald-helm-operator/README.md index 7b11d71f02..5bc0c64b26 100644 --- a/charts/vald-helm-operator/README.md +++ b/charts/vald-helm-operator/README.md @@ -3,7 +3,7 @@ vald-helm-operator This is a Helm chart to install vald-helm-operator. -Current chart version is `v1.2.0` +Current chart version is `v1.2.1` Table of Contents --- @@ -30,13 +30,13 @@ Upgrading the version Please upgrade the CRDs first because Helm doesn't have a support to upgrade CRDs. - $ kubectl replace -f https://raw.githubusercontent.com/vdaas/vald/v1.2.0/charts/vald-helm-operator/crds/valdrelease.yaml - $ kubectl replace -f https://raw.githubusercontent.com/vdaas/vald/v1.2.0/charts/vald-helm-operator/crds/valdhelmoperatorrelease.yaml + $ kubectl replace -f https://raw.githubusercontent.com/vdaas/vald/v1.2.1/charts/vald-helm-operator/crds/valdrelease.yaml + $ kubectl replace -f https://raw.githubusercontent.com/vdaas/vald/v1.2.1/charts/vald-helm-operator/crds/valdhelmoperatorrelease.yaml After upgrading CRDs, you can upgrade the operator. If you're using `valdhelmoperatorrelease` (or `vhor`) resource, please update the `spec.image.tag` field of it. - $ kubectl patch vhor vhor-release -p '{"spec":{"image":{"tag":"v1.2.0"}}}' + $ kubectl patch vhor vhor-release -p '{"spec":{"image":{"tag":"v1.2.1"}}}' On the other hand, please update the operator's deployment manually. @@ -85,7 +85,7 @@ Configuration | healthPort | int | `8081` | port of health endpoint | | image.pullPolicy | string | `"Always"` | image pull policy | | image.repository | string | `"vdaas/vald-helm-operator"` | image repository | -| image.tag | string | `"v1.2.0"` | image tag | +| image.tag | string | `"v1.2.1"` | image tag | | leaderElectionID | string | `"vald-helm-operator"` | name of the configmap that is used for holding the leader lock. | | livenessProbe.enabled | bool | `true` | enable liveness probe. | | livenessProbe.failureThreshold | int | `2` | liveness probe failure threshold | diff --git a/charts/vald-helm-operator/values.yaml b/charts/vald-helm-operator/values.yaml index 7c390b199c..b8659f872f 100644 --- a/charts/vald-helm-operator/values.yaml +++ b/charts/vald-helm-operator/values.yaml @@ -29,7 +29,7 @@ image: repository: vdaas/vald-helm-operator # @schema {"name": "image.tag", "type": "string"} # image.tag -- image tag - tag: v1.2.0 + tag: v1.2.1 # @schema {"name": "image.pullPolicy", "type": "string", "enum": ["Always", "Never", "IfNotPresent"]} # image.pullPolicy -- image pull policy pullPolicy: Always diff --git a/charts/vald/Chart.yaml b/charts/vald/Chart.yaml index c134960b1d..eb55bdd8d6 100644 --- a/charts/vald/Chart.yaml +++ b/charts/vald/Chart.yaml @@ -16,7 +16,7 @@ apiVersion: v2 name: vald -version: v1.2.0 +version: v1.2.1 description: A distributed high scalable & high-speed approximate nearest neighbor search engine type: application keywords: diff --git a/charts/vald/README.md b/charts/vald/README.md index 9331ece711..84b81037a4 100644 --- a/charts/vald/README.md +++ b/charts/vald/README.md @@ -3,7 +3,7 @@ Vald This is a Helm chart to install Vald components. -Current chart version is `v1.2.0` +Current chart version is `v1.2.1` Table of Contents --- @@ -88,6 +88,7 @@ Configuration | agent.ngt.enable_proactive_gc | bool | `true` | enable proactive GC call for reducing heap memory allocation | | agent.ngt.index_path | string | `""` | path to index data | | agent.ngt.initial_delay_max_duration | string | `"3m"` | maximum duration for initial delay | +| agent.ngt.kvsdb.concurrency | int | `20` | kvsdb processing concurrency | | agent.ngt.load_index_timeout_factor | string | `"1ms"` | a factor of load index timeout. timeout duration will be calculated by (index count to be loaded) * (factor). | | agent.ngt.max_load_index_timeout | string | `"10m"` | maximum duration of load index timeout | | agent.ngt.min_load_index_timeout | string | `"3m"` | minimum duration of load index timeout | @@ -287,7 +288,7 @@ Configuration | defaults.grpc.client.tls.enabled | bool | `false` | TLS enabled | | defaults.grpc.client.tls.insecure_skip_verify | bool | `false` | enable/disable skip SSL certificate verification | | defaults.grpc.client.tls.key | string | `"/path/to/key"` | TLS key path | -| defaults.image.tag | string | `"v1.2.0"` | docker image tag | +| defaults.image.tag | string | `"v1.2.1"` | docker image tag | | 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. | | defaults.logging.format | string | `"raw"` | logging format. logging format must be `raw` or `json` | | defaults.logging.level | string | `"debug"` | logging level. logging level must be `debug`, `info`, `warn`, `error` or `fatal`. | diff --git a/charts/vald/values.yaml b/charts/vald/values.yaml index 0692fb9a2f..a97702d219 100644 --- a/charts/vald/values.yaml +++ b/charts/vald/values.yaml @@ -38,7 +38,7 @@ defaults: image: # @schema {"name": "defaults.image.tag", "type": "string"} # defaults.image.tag -- docker image tag - tag: v1.2.0 + tag: v1.2.1 # @schema {"name": "defaults.server_config", "type": "object", "anchor": "server_config"} server_config: # @schema {"name": "defaults.server_config.servers", "type": "object"} diff --git a/versions/VALD_VERSION b/versions/VALD_VERSION index 79127d85a4..6a5e98a744 100644 --- a/versions/VALD_VERSION +++ b/versions/VALD_VERSION @@ -1 +1 @@ -v1.2.0 +v1.2.1