diff --git a/aerospike-backup-service/README.md b/aerospike-backup-service/README.md index 871e1ea..00c37fe 100644 --- a/aerospike-backup-service/README.md +++ b/aerospike-backup-service/README.md @@ -26,21 +26,21 @@ helm repo add aerospike https://aerospike.github.io/helm-charts | Parameter | Description | Default | |---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------| -| `replicaCount` | Configures the number Aerospike Proximus instance pods to run. | '1' | -| `image` | Configures Aerospike Proximus image repository, tag and pull policy. | see [values.yaml](values.yaml) | +| `replicaCount` | Configures the number Aerospike Backup Service instance pods to run. | '1' | +| `image` | Configures Aerospike Aerospike Backup Service image repository, tag and pull policy. | see [values.yaml](values.yaml) | | `imagePullSecrets` | For Private docker registries, when authentication is needed. | see [values.yaml](values.yaml) | | `args` | Arguments to pass to ABS | `[]` | -| `backupServiceConfig` | ABS cluster configuration deployed to `/etc/aerospike-backup-service/aerospike-backup-service.yml`. | see [values.yaml](values.yaml) | -| `initContainers` | List of initContainers added to each proximus pods for custom cluster behavior. | `[]` | +| `backupServiceConfig` | ABS cluster configuration deployed to `/etc/aerospike-backup-service/aerospike-backup-service.yml`. | see [values.yaml](values.yaml) | +| `initContainers` | List of initContainers added to each abs pods for custom cluster behavior. | `[]` | | `serviceAccount` | Service Account details like name and annotations. | see [values.yaml](values.yaml) | | `podAnnotations` | Additional pod [annotations](https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/). Should be specified as a map of annotation names to annotation values. | `{}` | | `podLabels` | Additional pod [labels](https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/). Should be specified as a map of label names to label values. | `{}` | | `podSecurityContext` | Pod [security context](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/) | `{}` | | `securityContext` | Container [security context](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container) | `{}` | | `service` | Load-Balancer configuration for more details please refer to a Load-Balancer docs. | `{}` | -| `resources` | Resource [requests and limits](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) for the proximus pods. | `{}` | +| `resources` | Resource [requests and limits](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) for the abs pods. | `{}` | | `autoscaling` | Enable the horizontal pod auto-scaler. | see [values.yaml](values.yaml) | -| `volumes` | List of additional volumes to attach to the Proximus pod. | see [values.yaml](values.yaml) | +| `volumes` | List of additional volumes to attach to the abs pod. | see [values.yaml](values.yaml) | | `extraVolumeMounts` | Extra volume mounts corresponding to the volumes added to `extraVolumes`. | see [values.yaml](values.yaml) | | `extraSecretVolumeMounts` | Extra secret volume mounts corresponding to the volumes added to `extraVolumes`. | see [values.yaml](values.yaml) | | `affinity` | [Affinity](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity) rules if any for the pods. | `{}` | diff --git a/aerospike-vector-search/Chart.yaml b/aerospike-vector-search/Chart.yaml index 99cd6e0..c3f961c 100644 --- a/aerospike-vector-search/Chart.yaml +++ b/aerospike-vector-search/Chart.yaml @@ -11,7 +11,7 @@ maintainers: email: developers@aerospike.com # The helm chart version -version: 0.3.0 +version: 0.4.0 # The default version of Aerospike Kafka Outbound Connector -appVersion: "0.4.0" \ No newline at end of file +appVersion: "0.9.0" diff --git a/aerospike-vector-search/README.md b/aerospike-vector-search/README.md index 3cad38f..199ca52 100644 --- a/aerospike-vector-search/README.md +++ b/aerospike-vector-search/README.md @@ -1,6 +1,6 @@ # Aerospike Vector Search -This Helm chart allows you to configure and run our official [Aerospike Vector Search](https://hub.docker.com/repository/docker/aerospike/aerospike-proximus) +This Helm chart allows you to configure and run our official [Aerospike Vector Search](https://hub.docker.com/repository/docker/aerospike/aerospike-vector-search) docker image on a Kubernetes cluster. This helm chart sets up a `StatefulSet` for each AVS instance. We use a `StatefulSet` instead of a `Deployment`, to have stable DNS names for the @@ -30,7 +30,7 @@ helm repo add aerospike https://aerospike.github.io/helm-charts | `replicaCount` | Configures the number AVS instance pods to run. | '1' | | `image` | Configures AVS image repository, tag and pull policy. | see [values.yaml](values.yaml) | | `imagePullSecrets` | For Private docker registries, when authentication is needed. | see [values.yaml](values.yaml) | -| `aerospikeVectorSearchConfig` | AVS cluster configuration deployed to `/etc/aerospike-proximus/aerospike-proximus.yml`. | see [values.yaml](values.yaml) | +| `aerospikeVectorSearchConfig` | AVS cluster configuration deployed to `/etc/aerospike-vector-search/aerospike-vector-search.yml`. | see [values.yaml](values.yaml) | | `initContainers` | List of initContainers added to each AVS pods for custom cluster behavior. | `[]` | | `serviceAccount` | Service Account details like name and annotations. | see [values.yaml](values.yaml) | | `podAnnotations` | Additional pod [annotations](https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/). Should be specified as a map of annotation names to annotation values. | `{}` | @@ -58,7 +58,7 @@ A sample values yaml file is shown below: replicaCount: 1 image: - tag: "0.4.0" + tag: "0.9.0" aerospikeVectorSearchConfig: aerospike: diff --git a/aerospike-vector-search/examples/eks/README.md b/aerospike-vector-search/examples/eks/README.md index b402da1..78b16c4 100644 --- a/aerospike-vector-search/examples/eks/README.md +++ b/aerospike-vector-search/examples/eks/README.md @@ -1,11 +1,11 @@ -# Aerospike Proximus EKS example +# Aerospike Vector Search EKS example ## Prerequisites - EKS cluster - Helm v3 - An Aerospike cluster that can connect to Pods in the Kubernetes cluster The Aerospike cluster can be deployed in the same Kubernetes cluster using [Aerospike Kubernetes Operator](https://docs.aerospike.com/cloud/kubernetes/operator) -- Aerospike Proximus [Helm chart](../../README.md#configuration) +- Aerospike Vector Search [Helm chart](../../README.md#configuration) ## Adding the helm chart repository @@ -15,7 +15,7 @@ Add the `aerospike` helm repository if not already done helm repo add aerospike https://aerospike.github.io/helm-charts ``` -## Deploy Proximus Cluster. +## Deploy Aerospike Vector Search Cluster. All subsequent commands are run from this directory. @@ -43,11 +43,11 @@ kubectl create namespace aerospike ### EKS LoadBalancer configuration In this example we configure internal facing L4 LoadBalancer (NLB) for more details please refer to AWS [documentation](https://docs.aws.amazon.com/eks/latest/userguide/network-load-balancing.html). -### Deploy Proximus. -Update the [as-proximus-eks-values.yaml](as-proximus-eks-values.yaml) file to change Proximus configuration. +### Deploy Aerospike Vector Search. +Update the [avs-eks-values.yaml](avs-eks-values.yaml) file to change Aerospike Vector Search configuration. -Deploy the Proximus cluster using configuration from [as-proximus-eks-values.yaml](as-proximus-eks-values.yaml) +Deploy the Aerospike Vector Search cluster using configuration from [avs-eks-values.yaml](avs-eks-values.yaml) ```shell -helm install --namespace aerospike as-proximus-eks -f as-proximus-eks-values.yaml ../../../aerospike-proximus +helm install --namespace aerospike avs-eks -f avs-eks-values.yaml ../../../aerospike-vector-search ``` diff --git a/aerospike-vector-search/examples/eks/avs-eks-values.yaml b/aerospike-vector-search/examples/eks/avs-eks-values.yaml index b2e480b..3314db1 100644 --- a/aerospike-vector-search/examples/eks/avs-eks-values.yaml +++ b/aerospike-vector-search/examples/eks/avs-eks-values.yaml @@ -2,7 +2,7 @@ replicaCount: 3 aerospikeVectorSearchConfig: cluster: cluster-name: "avs-db-1" - feature-key-file: "/etc/aerospike-proximus/features.conf" + feature-key-file: "/etc/aerospike-vector-search/features.conf" service: ports: 5000: @@ -21,12 +21,11 @@ aerospikeVectorSearchConfig: addresses: 0.0.0.0 aerospike: - metadata-namespace: "avs-meta" seeds: - aerospike-cluster-0-0.aerospike-cluster.aerospike.svc.cluster.local: port: 3000 logging: - # file: /var/log/aerospike-proximus/aerospike-proximus.log + # file: /var/log/aerospike-vector-search/aerospike-vector-search.log enable-console-logging: false format: simple max-history: 30 diff --git a/aerospike-vector-search/examples/gke/README.md b/aerospike-vector-search/examples/gke/README.md index a735680..8b90cb7 100644 --- a/aerospike-vector-search/examples/gke/README.md +++ b/aerospike-vector-search/examples/gke/README.md @@ -1,11 +1,11 @@ -# Aerospike Proximus GKE example +# Aerospike Aerospike Vector Search GKE example ## Prerequisites - GKE cluster - Helm v3 - An Aerospike cluster that can connect to Pods in the Kubernetes cluster The Aerospike cluster can be deployed in the same Kubernetes cluster using [Aerospike Kubernetes Operator](https://docs.aerospike.com/cloud/kubernetes/operator) -- Aerospike Proximus [Helm chart](../../README.md#configuration) +- Aerospike Vector Search [Helm chart](../../README.md#configuration) ## Adding the helm chart repository @@ -15,7 +15,7 @@ Add the `aerospike` helm repository if not already done helm repo add aerospike https://aerospike.github.io/helm-charts ``` -## Deploy Proximus Cluster. +## Deploy Aerospike Vector Search Cluster. All subsequent commands are run from this directory. @@ -43,11 +43,11 @@ kubectl create namespace aerospike ### GKE LoadBalancer configuration In this example we configure internal facing L4 LoadBalancer for more details please refer to GCP [documentation](https://cloud.google.com/kubernetes-engine/docs/concepts/service-load-balancer). -### Deploy Proximus. -Update the [avs-gke-values.yaml](avs-gke-values.yaml) file to change Proximus configuration. +### Deploy Aerospike Vector Search. +Update the [avs-gke-values.yaml](avs-gke-values.yaml) file to change Aerospike Vector Search configuration. -Deploy the Proximus cluster using configuration from [avs-gke-values.yaml](avs-gke-values.yaml) +Deploy the Aerospike Vector Search cluster using configuration from [avs-gke-values.yaml](avs-gke-values.yaml) ```shell -helm install --namespace aerospike as-proximus-gke -f avs-gke-values.yaml ../../../aerospike-proximus +helm install --namespace aerospike avs-eks -f avs-gke-values.yaml ../../../aerospike-vector-search ``` diff --git a/aerospike-vector-search/examples/gke/avs-gke-values.yaml b/aerospike-vector-search/examples/gke/avs-gke-values.yaml index 4463cd1..8f8fad6 100644 --- a/aerospike-vector-search/examples/gke/avs-gke-values.yaml +++ b/aerospike-vector-search/examples/gke/avs-gke-values.yaml @@ -2,7 +2,7 @@ replicaCount: 3 aerospikeVectorSearchConfig: cluster: cluster-name: "avs-db-1" - feature-key-file: "/etc/aerospike-proximus/features.conf" + feature-key-file: "/etc/aerospike-vector-search/features.conf" service: ports: 5000: @@ -22,12 +22,11 @@ aerospikeVectorSearchConfig: addresses: 0.0.0.0 aerospike: - metadata-namespace: "avs-meta" seeds: - aerospike-cluster-0-0.aerospike-cluster.aerospike.svc.cluster.local: port: 3000 logging: - # file: /var/log/aerospike-proximus/aerospike-proximus.log + # file: /var/log/aerospike-vector-search/aerospike-vector-search.log enable-console-logging: false format: simple max-history: 30 diff --git a/aerospike-vector-search/examples/kind/README.md b/aerospike-vector-search/examples/kind/README.md index e79bdb5..4c7445c 100644 --- a/aerospike-vector-search/examples/kind/README.md +++ b/aerospike-vector-search/examples/kind/README.md @@ -1,23 +1,23 @@ -# Aerospike Proximus Quote Search example +# Aerospike Vector Search Quote Search example -This example deploys Aerospike Proximus cluster along with an Aerospike cluster and runs `quote-search` example app. +This example deploys Aerospike Vector Search cluster along with an Aerospike cluster and runs `quote-search` example app. ## Prerequisites - Kubernetes cluster - Helm v3 - An Aerospike cluster that can connect to Pods in the Kubernetes cluster The Aerospike cluster can be deployed in the same Kubernetes cluster using [Aerospike Kubernetes Operator](https://docs.aerospike.com/cloud/kubernetes/operator) -- Aerospike Proximus [Helm chart](../../README.md#configuration) +- Aerospike Vector Search [Helm chart](../../README.md#configuration) ## Clone this repository. - A clone of this git repository -## Deploy Proximus Cluster. +## Deploy Aerospike Vector Search Cluster. All subsequent commands are run from this directory. ### Install and Configure Load-Balancer -Proximus cluster can be reach outside of Kubernetes cluster using a Load-Balancer in this example we're using Metallb but it could be any L4 Load-Balancer of your choice. +Aerospike Vector Search cluster can be reach outside of Kubernetes cluster using a Load-Balancer in this example we're using Metallb but it could be any L4 Load-Balancer of your choice. #### Deploy MetalLB ```shell kubectl apply -f https://raw.githubusercontent.com/metallb/metallb/v0.14.4/config/manifests/metallb-native.yaml @@ -65,21 +65,21 @@ Create a Kubernetes namespace if not already done kubectl create namespace aerospike ``` -### Deploy Proximus. -Update the [quote-search-values.yaml](quote-search-values.yaml) file to change Proximus configuration. +### Deploy Aerospike Vector Search. +Update the [quote-search-values.yaml](quote-search-values.yaml) file to change Aerospike Vector Search configuration. -Deploy the Proximus cluster using configuration from [quote-search-values.yaml](quote-search-values.yaml) +Deploy the Aerospike Vector Search cluster using configuration from [quote-search-values.yaml](quote-search-values.yaml) ```shell -helm install --namespace aerospike as-quote-search -f quote-search-values.yaml ../../../aerospike-proximus +helm install --namespace aerospike as-quote-search -f quote-search-values.yaml ../../../aerospike-vector-search ``` ### Deploy `quote-search` app #### Build Docker Image -Follow this [manual](https://github.com/aerospike/proximus-examples/blob/main/quote-semantic-search/README.md#1-build-the-image) to build `qoute-search` app. +Follow this [manual](https://github.com/aerospike/aerospike-vector-search-examples/blob/main/quote-semantic-search/README.md#1-build-the-image) to build `qoute-search` app. #### Download sample data set ```shell mkdir -p ./data -curl -L -o ./data/quotes.csv.tgz https://github.com/aerospike/proximus-examples/raw/main/quote-semantic-search/container-volumes/quote-search/data/quotes.csv.tgz +curl -L -o ./data/quotes.csv.tgz https://github.com/aerospike/aerospike-vector-search-examples/raw/main/quote-semantic-search/container-volumes/quote-search/data/quotes.csv.tgz ``` #### Run tha app ```shell @@ -87,11 +87,11 @@ docker run -d \ --name "quote-search" \ -v "./data:/container-volumes/quote-search/data" \ --network "kind" -p "8080:8080" \ --e "PROXIMUS_HOST=$(kubectl -n aerospike get svc/as-quote-search-aerospike-proximus-lb -o=jsonpath='{.status.loadBalancer.ingress[0].ip}')" \ --e "PROXIMUS_PORT=80" \ +-e "AVS_HOST=$(kubectl -n aerospike get svc/as-quote-search-aerospike-vector-search-lb -o=jsonpath='{.status.loadBalancer.ingress[0].ip}')" \ +-e "AVS_PORT=80" \ -e "APP_NUM_QUOTES=5000" \ -e "GRPC_DNS_RESOLVER=native" \ --e "PROXIMUS_IS_LOADBALANCER=True" quote-search +-e "AVS_IS_LOADBALANCER=True" quote-search ``` ## Cleanup ### Stop `quote-search` app @@ -99,7 +99,7 @@ docker run -d \ docker stop quote-search docker rm quote-search ``` -### Uninstall Proximus cluster +### Uninstall Aerospike Vector Search cluster ```shell helm delete as-quote-search --namespace aerospike ``` diff --git a/aerospike-vector-search/examples/kind/avs-kind-values.yaml b/aerospike-vector-search/examples/kind/avs-kind-values.yaml index 520bdb1..f3046cc 100644 --- a/aerospike-vector-search/examples/kind/avs-kind-values.yaml +++ b/aerospike-vector-search/examples/kind/avs-kind-values.yaml @@ -1,7 +1,7 @@ aerospikeVectorSearchConfig: cluster: cluster-name: "avs-db-1" - feature-key-file: "/etc/aerospike-proximus/features.conf" + feature-key-file: "/etc/aerospike-vector-search/features.conf" service: ports: 5000: @@ -16,12 +16,11 @@ aerospikeVectorSearchConfig: addresses: "0.0.0.0" aerospike: - metadata-namespace: "avs-meta" seeds: - aerospike-cluster-0-0.aerospike-cluster.aerospike.svc.cluster.local: port: 3000 logging: - # file: /var/log/aerospike-proximus/aerospike-proximus.log + # file: /var/log/aerospike-vector-search/aerospike-vector-search.log enable-console-logging: false format: simple max-history: 30 diff --git a/aerospike-vector-search/templates/configmap.yaml b/aerospike-vector-search/templates/configmap.yaml index 63266dc..7910740 100644 --- a/aerospike-vector-search/templates/configmap.yaml +++ b/aerospike-vector-search/templates/configmap.yaml @@ -5,5 +5,5 @@ metadata: labels: {{- include "aerospike-vector-search.labels" . | nindent 4 }} data: - aerospike-proximus.yml: |- + aerospike-vector-search.yml: |- {{- .Values.aerospikeVectorSearchConfig | toYaml | nindent 4 }} diff --git a/aerospike-vector-search/templates/statefulset.yaml b/aerospike-vector-search/templates/statefulset.yaml index c5fd46f..3d56ab6 100644 --- a/aerospike-vector-search/templates/statefulset.yaml +++ b/aerospike-vector-search/templates/statefulset.yaml @@ -63,8 +63,8 @@ spec: {{- end }} volumeMounts: - name: aerospike-vector-search-configmap - mountPath: /etc/aerospike-proximus/aerospike-proximus.yml - subPath: aerospike-proximus.yml + mountPath: /etc/aerospike-vector-search/aerospike-vector-search.yml + subPath: aerospike-vector-search.yml readOnly: true - name: aerospike-secret mountPath: {{ index .Values.aerospikeVectorSearchConfig "feature-key-file" }} diff --git a/aerospike-vector-search/values.yaml b/aerospike-vector-search/values.yaml index 99dce48..b545c24 100644 --- a/aerospike-vector-search/values.yaml +++ b/aerospike-vector-search/values.yaml @@ -5,10 +5,10 @@ replicaCount: 1 image: - repository: "aerospike/aerospike-proximus" + repository: "aerospike/aerospike-vector-search" pullPolicy: "IfNotPresent" # Overrides the image tag whose default is the chart appVersion. - tag: "0.4.0" + tag: "0.9.0" imagePullSecrets: [] nameOverride: "" @@ -56,7 +56,7 @@ aerospikeVectorSearchConfig: {} # default: # - address: 10.0.0.1 # port: 5000 -# metadata-namespace: # Optional default: proximus-meta +# metadata-namespace: # Optional default: avs-meta # graceful-shutdown-timeout: # Optional default: 20,000 milliseconds # #manage: # Optional @@ -121,7 +121,7 @@ aerospikeVectorSearchConfig: {} # ticker-interval-seconds: # Optional # timezone-name: # Optional # -#feature-key-file: "/etc/aerospike-proximus/features.conf" # Required +#feature-key-file: "/etc/aerospike-vector-search/features.conf" # Required # #indexing: # Optional # cache: # Optional diff --git a/docs/aerospike-vector-search-0.4.0.tgz b/docs/aerospike-vector-search-0.4.0.tgz new file mode 100644 index 0000000..28568dd Binary files /dev/null and b/docs/aerospike-vector-search-0.4.0.tgz differ diff --git a/docs/index.yaml b/docs/index.yaml index 09024ed..b8f8a1b 100644 --- a/docs/index.yaml +++ b/docs/index.yaml @@ -3,7 +3,7 @@ entries: aerospike-backup-service: - apiVersion: v2 appVersion: 1.0.0 - created: "2024-07-08T10:25:45.242245+03:00" + created: "2024-07-18T14:15:40.866089+03:00" description: A Helm chart for Kubernetes digest: ec8484396b05af2ba532c0a88b3072d4d542c4a025a879fc09781e249600e825 name: aerospike-backup-service @@ -13,7 +13,7 @@ entries: version: 1.0.0 - apiVersion: v2 appVersion: 1.0.0 - created: "2024-07-08T10:25:45.240526+03:00" + created: "2024-07-18T14:15:40.864335+03:00" description: A Helm chart for Kubernetes digest: 14cc5efd7357f65c0cf0f36be9e19a6276f9dc787ec131bbf602c725efbde3ab name: aerospike-backup-service @@ -38,7 +38,7 @@ entries: version: 2.2.0 - apiVersion: v2 appVersion: 2.0.0 - created: "2024-07-08T10:25:45.245205+03:00" + created: "2024-07-18T14:15:40.867876+03:00" description: Aerospike Graph Service digest: 00e954c2ec6fe44c90cda43476070280e9c5d8bd0a4f875984928dfb2c3cbe05 keywords: @@ -53,7 +53,7 @@ entries: aerospike-jms-inbound: - apiVersion: v2 appVersion: 3.0.0 - created: "2024-07-08T10:25:45.247392+03:00" + created: "2024-07-18T14:15:40.869975+03:00" description: A Helm chart for Aerospike Connect for JMS - Inbound digest: f664bee76244a49c19dabea859581e1d668e46f6aa2e0973c3e5ee6d8f689ba3 icon: https://avatars0.githubusercontent.com/u/2214313?s=200&v=4 @@ -73,7 +73,7 @@ entries: aerospike-jms-outbound: - apiVersion: v2 appVersion: 4.1.1 - created: "2024-07-08T10:25:45.249387+03:00" + created: "2024-07-18T14:15:40.87197+03:00" description: A Helm chart for Aerospike Connect for JMS - Outbound digest: d3f9f3cdd9bc57eaa945336f5c1c28c164b1c8a2c41f97eda9806276077c0a2c icon: https://avatars0.githubusercontent.com/u/2214313?s=200&v=4 @@ -93,7 +93,7 @@ entries: aerospike-kafka-outbound: - apiVersion: v2 appVersion: 5.1.2 - created: "2024-07-08T10:25:45.252798+03:00" + created: "2024-07-18T14:15:40.87579+03:00" description: A Helm chart for Aerospike Connect for Kafka - Outbound digest: c4b04092fe2c0857d26957c6b95b317c46063add104777b481cb9291c20b85ae icon: https://avatars0.githubusercontent.com/u/2214313?s=200&v=4 @@ -112,7 +112,7 @@ entries: version: 1.0.1 - apiVersion: v2 appVersion: 5.0.0 - created: "2024-07-08T10:25:45.251428+03:00" + created: "2024-07-18T14:15:40.87431+03:00" description: A Helm chart for Aerospike Connect for Kafka - Outbound digest: 46b6cff86371f5cf40c64a93eacd5eea402f9c572d4144ad50f174129479de77 icon: https://avatars0.githubusercontent.com/u/2214313?s=200&v=4 @@ -132,7 +132,7 @@ entries: aerospike-pulsar-outbound: - apiVersion: v2 appVersion: 3.2.1 - created: "2024-07-08T10:25:45.254027+03:00" + created: "2024-07-18T14:15:40.877177+03:00" description: A Helm chart for Aerospike Connect for Pulsar - Outbound digest: 8fdf247a0abb72026178a316419c83e1929043bf913b962a984d42f7b8cfdb6b icon: https://avatars0.githubusercontent.com/u/2214313?s=200&v=4 @@ -152,7 +152,7 @@ entries: aerospike-vector-search: - apiVersion: v2 appVersion: 0.4.0 - created: "2024-07-08T10:25:45.257471+03:00" + created: "2024-07-18T14:15:40.88339+03:00" description: A Helm chart for Aerospike Vector Search digest: 7c25aa6ee63ed4fe42049cf170795bb5c3cf90fc4f5222e40c09d54a8dbf7ec1 icon: https://avatars0.githubusercontent.com/u/2214313?s=200&v=4 @@ -169,7 +169,7 @@ entries: version: 0.3.0 - apiVersion: v2 appVersion: 0.4.0 - created: "2024-07-08T10:25:45.255838+03:00" + created: "2024-07-18T14:15:40.880601+03:00" description: A Helm chart for Aerospike Vector Search digest: f66c0163471586d199efa4c88ce73a45978d17071ba8e59ba6ff8fabeebf4876 icon: https://avatars0.githubusercontent.com/u/2214313?s=200&v=4 @@ -184,4 +184,4 @@ entries: urls: - https://aerospike.github.io/helm-charts/aerospike-vector-search-0.1.0.tgz version: 0.1.0 -generated: "2024-07-08T10:25:45.238313+03:00" +generated: "2024-07-18T14:15:40.862265+03:00"