From 94b34f4c70fb6e8c3c937275a7574517e6fb4a44 Mon Sep 17 00:00:00 2001 From: Vdaas CI Date: Wed, 13 Oct 2021 07:34:08 +0000 Subject: [PATCH] :bookmark: :robot: Release v1.2.4 Signed-off-by: Vdaas CI --- CHANGELOG.md | 75 +++++++++++++++++++++++++++ charts/vald-helm-operator/Chart.yaml | 2 +- charts/vald-helm-operator/README.md | 10 ++-- charts/vald-helm-operator/values.yaml | 2 +- charts/vald/Chart.yaml | 2 +- charts/vald/README.md | 8 +-- charts/vald/values.yaml | 2 +- versions/VALD_VERSION | 2 +- 8 files changed, 89 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4381515d0d..0aa64f4786 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,80 @@ # CHANGELOG +## v1.2.4 + +### Docker images + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
componentDocker pull
Agent NGT + docker pull vdaas/vald-agent-ngt:v1.2.4
+ docker pull ghcr.io/vdaas/vald/vald-agent-ngt:v1.2.4 +
Agent sidecar + docker pull vdaas/vald-agent-sidecar:v1.2.4
+ docker pull ghcr.io/vdaas/vald/vald-agent-sidecar:v1.2.4 +
Discoverers + docker pull vdaas/vald-discoverer-k8s:v1.2.4
+ docker pull ghcr.io/vdaas/vald/vald-discoverer-k8s:v1.2.4 +
Gateways + docker pull vdaas/vald-lb-gateway:v1.2.4
+ docker pull ghcr.io/vdaas/vald/vald-lb-gateway:v1.2.4
+ docker pull vdaas/vald-filter-gateway:v1.2.4
+ docker pull ghcr.io/vdaas/vald/vald-filter-gateway:v1.2.4 +
Index Manager + docker pull vdaas/vald-manager-index:v1.2.4
+ docker pull ghcr.io/vdaas/vald/vald-manager-index:v1.2.4 +
Helm Operator + docker pull vdaas/vald-helm-operator:v1.2.4
+ docker pull ghcr.io/vdaas/vald/vald-helm-operator:v1.2.4 +
+ +### Documents +- [GoDoc](https://pkg.go.dev/github.com/vdaas/vald@v1.2.4) +- [Helm Chart Reference](https://github.com/vdaas/vald/blob/v1.2.4/charts/vald/README.md) +- [Helm Operator Chart Reference](https://github.com/vdaas/vald/blob/v1.2.4/charts/vald-helm-operator/README.md) + +### Changes +- update go patch version (#1464) +- [bugfix] sidecar e2e testing (#1465) +- update dependencies version including NGT (#1461) +- fix unlimited gorountine processing in kvsdb (#1458) +- Refactor hack pkg agent e2e benchmark (#1430) +- Remove non-exist components from doc and ci (#1450) +- :recycle: :pencil: add default_pool_size in example yml (#1457) +- reduce memory usage around ngt implementation & refactor agent/lb & auto-generate unit test (#1449) +- Remove rinx from several yamls (#1451) +- Add E2E scenario with SkipStrictExistCheck enabled (#1415) +- fix filter-gateway chart (#1454) +- Implement pkg/agent/core/ngt/service/option test (#1429) + + ## v1.2.3 ### Docker images diff --git a/charts/vald-helm-operator/Chart.yaml b/charts/vald-helm-operator/Chart.yaml index 2c08dc1389..e6efa2503c 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.3 +version: v1.2.4 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 94de8d6fba..b6e2aaa95b 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.3` +Current chart version is `v1.2.4` 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.3/charts/vald-helm-operator/crds/valdrelease.yaml - $ kubectl replace -f https://raw.githubusercontent.com/vdaas/vald/v1.2.3/charts/vald-helm-operator/crds/valdhelmoperatorrelease.yaml + $ kubectl replace -f https://raw.githubusercontent.com/vdaas/vald/v1.2.4/charts/vald-helm-operator/crds/valdrelease.yaml + $ kubectl replace -f https://raw.githubusercontent.com/vdaas/vald/v1.2.4/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.3"}}}' + $ kubectl patch vhor vhor-release -p '{"spec":{"image":{"tag":"v1.2.4"}}}' 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.3"` | image tag | +| image.tag | string | `"v1.2.4"` | 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 5a9a11fda4..791aa08b3d 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.3 + tag: v1.2.4 # @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 2fb942700a..d81a7362ea 100644 --- a/charts/vald/Chart.yaml +++ b/charts/vald/Chart.yaml @@ -16,7 +16,7 @@ apiVersion: v2 name: vald -version: v1.2.3 +version: v1.2.4 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 5b957ec5c9..0aa3354eec 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.3` +Current chart version is `v1.2.4` Table of Contents --- @@ -85,10 +85,10 @@ Configuration | 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.enable_in_memory_mode | bool | `true` | in-memory mode enabled | -| agent.ngt.enable_proactive_gc | bool | `true` | enable proactive GC call for reducing heap memory allocation | +| agent.ngt.enable_proactive_gc | bool | `false` | 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.kvsdb.concurrency | int | `6` | 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 | @@ -286,7 +286,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.3"` | docker image tag | +| defaults.image.tag | string | `"v1.2.4"` | 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 2af984c155..7cdc23e465 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.3 + tag: v1.2.4 # @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 4367f90008..c7cd5b2679 100644 --- a/versions/VALD_VERSION +++ b/versions/VALD_VERSION @@ -1 +1 @@ -v1.2.3 +v1.2.4