diff --git a/CHANGELOG.md b/CHANGELOG.md index 61d198a11d..efe16d65c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,76 @@ # CHANGELOG +## v1.6.3 + +### Docker images + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
componentDocker pull
Agent NGT + docker pull vdaas/vald-agent-ngt:v1.6.3
+ docker pull ghcr.io/vdaas/vald/vald-agent-ngt:v1.6.3 +
Agent sidecar + docker pull vdaas/vald-agent-sidecar:v1.6.3
+ docker pull ghcr.io/vdaas/vald/vald-agent-sidecar:v1.6.3 +
Discoverers + docker pull vdaas/vald-discoverer-k8s:v1.6.3
+ docker pull ghcr.io/vdaas/vald/vald-discoverer-k8s:v1.6.3 +
Gateways + docker pull vdaas/vald-lb-gateway:v1.6.3
+ docker pull ghcr.io/vdaas/vald/vald-lb-gateway:v1.6.3
+ docker pull vdaas/vald-filter-gateway:v1.6.3
+ docker pull ghcr.io/vdaas/vald/vald-filter-gateway:v1.6.3 +
Index Manager + docker pull vdaas/vald-manager-index:v1.6.3
+ docker pull ghcr.io/vdaas/vald/vald-manager-index:v1.6.3 +
Helm Operator + docker pull vdaas/vald-helm-operator:v1.6.3
+ docker pull ghcr.io/vdaas/vald/vald-helm-operator:v1.6.3 +
+ +### Documents +- [GoDoc](https://pkg.go.dev/github.com/vdaas/vald@v1.6.3) +- [Helm Chart Reference](https://github.com/vdaas/vald/blob/v1.6.3/charts/vald/README.md) +- [Helm Operator Chart Reference](https://github.com/vdaas/vald/blob/v1.6.3/charts/vald-helm-operator/README.md) + +### Changes +🐛 Bugfix +- Bugfix Circuit Breaker half-open error handling [#1811](https://github.com/vdaas/vald/pull/1811) + +📝 Document fix +- Fix dead link [#1807](https://github.com/vdaas/vald/pull/1807) + +:arrow_up: Dependencies +- Update go modules and add small test for strings [#1812](https://github.com/vdaas/vald/pull/1812) + + ## v1.6.2 ### Docker images diff --git a/charts/vald-helm-operator/Chart.yaml b/charts/vald-helm-operator/Chart.yaml index 8839edc243..34a0dc5cb5 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.6.2 +version: v1.6.3 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 bcc003bab1..97a1571fa3 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.6.2` +Current chart version is `v1.6.3` 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.6.2/charts/vald-helm-operator/crds/valdrelease.yaml - $ kubectl replace -f https://raw.githubusercontent.com/vdaas/vald/v1.6.2/charts/vald-helm-operator/crds/valdhelmoperatorrelease.yaml + $ kubectl replace -f https://raw.githubusercontent.com/vdaas/vald/v1.6.3/charts/vald-helm-operator/crds/valdrelease.yaml + $ kubectl replace -f https://raw.githubusercontent.com/vdaas/vald/v1.6.3/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.6.2"}}}' + $ kubectl patch vhor vhor-release -p '{"spec":{"image":{"tag":"v1.6.3"}}}' 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.6.2"` | image tag | +| image.tag | string | `"v1.6.3"` | 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 32a37adead..769e3e354f 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.6.2 + tag: v1.6.3 # @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 686cf25374..bae3a75ff7 100644 --- a/charts/vald/Chart.yaml +++ b/charts/vald/Chart.yaml @@ -16,7 +16,7 @@ apiVersion: v2 name: vald -version: v1.6.2 +version: v1.6.3 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 621cceb3d7..a8537159e9 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.6.2` +Current chart version is `v1.6.3` Table of Contents --- @@ -294,7 +294,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.6.2"` | docker image tag | +| defaults.image.tag | string | `"v1.6.3"` | 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 972a4f5630..98c134e66e 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.6.2 + tag: v1.6.3 # @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 d4f6e2c5d4..78d19a2970 100644 --- a/versions/VALD_VERSION +++ b/versions/VALD_VERSION @@ -1 +1 @@ -v1.6.2 +v1.6.3