diff --git a/CHANGELOG.md b/CHANGELOG.md index ea311820b8..2363cac03f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,85 @@ # CHANGELOG +## v1.5.6 + +### Docker images + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
componentDocker pull
Agent NGT + docker pull vdaas/vald-agent-ngt:v1.5.6
+ docker pull ghcr.io/vdaas/vald/vald-agent-ngt:v1.5.6 +
Agent sidecar + docker pull vdaas/vald-agent-sidecar:v1.5.6
+ docker pull ghcr.io/vdaas/vald/vald-agent-sidecar:v1.5.6 +
Discoverers + docker pull vdaas/vald-discoverer-k8s:v1.5.6
+ docker pull ghcr.io/vdaas/vald/vald-discoverer-k8s:v1.5.6 +
Gateways + docker pull vdaas/vald-lb-gateway:v1.5.6
+ docker pull ghcr.io/vdaas/vald/vald-lb-gateway:v1.5.6
+ docker pull vdaas/vald-filter-gateway:v1.5.6
+ docker pull ghcr.io/vdaas/vald/vald-filter-gateway:v1.5.6 +
Index Manager + docker pull vdaas/vald-manager-index:v1.5.6
+ docker pull ghcr.io/vdaas/vald/vald-manager-index:v1.5.6 +
Helm Operator + docker pull vdaas/vald-helm-operator:v1.5.6
+ docker pull ghcr.io/vdaas/vald/vald-helm-operator:v1.5.6 +
+ +### Documents +- [GoDoc](https://pkg.go.dev/github.com/vdaas/vald@v1.5.6) +- [Helm Chart Reference](https://github.com/vdaas/vald/blob/v1.5.6/charts/vald/README.md) +- [Helm Operator Chart Reference](https://github.com/vdaas/vald/blob/v1.5.6/charts/vald-helm-operator/README.md) + +### Changes +✨ Feature + +- Add distance type [#1732](https://github.com/vdaas/vald/pull/1732) +- Add vald-helm-operator E2E [#1722](https://github.com/vdaas/vald/pull/1722) + + +⬆️ update dependencies +- Delete tensorflow [#1723](https://github.com/vdaas/vald/pull/1723) +- Update deps [#1724](https://github.com/vdaas/vald/pull/1724) + +✏️ Documents + +- Add capacity planning document [#1714](https://github.com/vdaas/vald/pull/1714) +- Update filter gateway document [#1721](https://github.com/vdaas/vald/pull/1721) +- Fix capacity planning doc [#1736](https://github.com/vdaas/vald/pull/1736) +- Fix file name of capacity planning document [#1737](https://github.com/vdaas/vald/pull/1737) + + + ## v1.5.5 ### Docker images diff --git a/charts/vald-helm-operator/Chart.yaml b/charts/vald-helm-operator/Chart.yaml index afa5cccd1b..17423dcad3 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.5.5 +version: v1.5.6 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 4c3c6ec35e..68dea8e4a2 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.5.5` +Current chart version is `v1.5.6` 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.5.5/charts/vald-helm-operator/crds/valdrelease.yaml - $ kubectl replace -f https://raw.githubusercontent.com/vdaas/vald/v1.5.5/charts/vald-helm-operator/crds/valdhelmoperatorrelease.yaml + $ kubectl replace -f https://raw.githubusercontent.com/vdaas/vald/v1.5.6/charts/vald-helm-operator/crds/valdrelease.yaml + $ kubectl replace -f https://raw.githubusercontent.com/vdaas/vald/v1.5.6/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.5.5"}}}' + $ kubectl patch vhor vhor-release -p '{"spec":{"image":{"tag":"v1.5.6"}}}' 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.5.5"` | image tag | +| image.tag | string | `"v1.5.6"` | 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 1c00fa70d6..b5ac4b97a1 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.5.5 + tag: v1.5.6 # @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 d66c82dce1..2763eb8c8e 100644 --- a/charts/vald/Chart.yaml +++ b/charts/vald/Chart.yaml @@ -16,7 +16,7 @@ apiVersion: v2 name: vald -version: v1.5.5 +version: v1.5.6 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 00d42376af..1025df969b 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.5.5` +Current chart version is `v1.5.6` Table of Contents --- @@ -83,7 +83,7 @@ Configuration | agent.ngt.default_pool_size | int | `10000` | default create index batch pool size | | agent.ngt.default_radius | float | `-1` | default radius used for search | | agent.ngt.dimension | int | `4096` | vector dimension | -| agent.ngt.distance_type | string | `"l2"` | distance type. it should be `l1`, `l2`, `angle`, `hamming`, `cosine`, `normalizedangle`, `normalizedcosine` or `jaccard`. for further details about NGT libraries supported distance is https://github.com/yahoojapan/NGT/wiki/Command-Quick-Reference and vald agent's supported NGT distance type is https://pkg.go.dev/github.com/vdaas/vald/internal/core/algorithm/ngt#pkg-constants | +| agent.ngt.distance_type | string | `"l2"` | distance type. it should be `l1`, `l2`, `angle`, `hamming`, `cosine`,`poincare`, `lorentz`, `jaccard`, `sparsejaccard`, `normalizedangle` or `normalizedcosine`. for further details about NGT libraries supported distance is https://github.com/yahoojapan/NGT/wiki/Command-Quick-Reference and vald agent's supported NGT distance type is https://pkg.go.dev/github.com/vdaas/vald/internal/core/algorithm/ngt#pkg-constants | | agent.ngt.enable_copy_on_write | bool | `false` | enable copy on write saving for more stable backup | | agent.ngt.enable_in_memory_mode | bool | `true` | in-memory mode enabled | | agent.ngt.enable_proactive_gc | bool | `false` | enable proactive GC call for reducing heap memory allocation | @@ -288,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.5.5"` | docker image tag | +| defaults.image.tag | string | `"v1.5.6"` | docker image tag | | 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`. | | defaults.logging.logger | string | `"glg"` | logger name. currently logger must be `glg` or `zap`. | diff --git a/charts/vald/values.yaml b/charts/vald/values.yaml index 9c787ae8f4..7f451a23e3 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.5.5 + tag: v1.5.6 # @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 b671d40335..54a3d96d68 100644 --- a/versions/VALD_VERSION +++ b/versions/VALD_VERSION @@ -1 +1 @@ -v1.5.5 +v1.5.6