Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bitnami/milvus] Release 7.0.1 #25627

Merged
merged 3 commits into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .vib/milvus/cypress/cypress/e2e/milvus.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
it('allows to create a collection', () => {
cy.login();
// Go to the collections page
cy.visit('#/collections');
cy.visit('#/databases');
// Wait for DOM content to load
cy.wait(2000);
cy.get('button').contains('Collection').click({force: true});
Expand All @@ -25,19 +25,20 @@ it('allows to create a collection', () => {
cy.get('div[class*="MuiTextField"]').contains('div','Vector Field').within(() => {
cy.get('input').type(`${c.collection.vectorName}${random}{enter}`);
});
cy.get(`[href$="${c.collection.name}${random}/data"]`);
// Create collection index and load
cy.get('td [role="button"]').contains('Create Index').click({force: true});
cy.get(`[href$="${c.collection.name}${random}/overview"]`).click({force: true});
cy.get('span').contains('Create Index').click({force: true});
cy.get('[placeholder="Index name"]').type(`${c.collection.idName}{enter}`);
// Reload and wait for DOM content load
cy.visit('#/collections');
cy.visit('#/databases');
cy.wait(2000);
cy.get('td [role="button"]').contains('unloaded').click({force: true});
cy.get('button').contains('Load').click({force: true});
cy.contains('loaded');
// Add sample data
cy.get(`[href$="${c.collection.name}${random}/data"]`).click();
cy.get('button').contains('Add Sample Data').click({force: true});
cy.get(`[href$="${c.collection.name}${random}/overview"]`).click({force: true});
cy.get('span[class=MuiTab-wrapper]').contains('Data').click({force: true});
cy.get('span').contains('Insert Sample Data').click({force: true});
cy.get('button[type="submit"]').contains('Import').click({force: true});
// Check sample data table contains at least 1 entry
cy.get('td [type="checkbox"]');
Expand Down
1 change: 1 addition & 0 deletions .vib/milvus/cypress/cypress/support/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Cypress.Commands.add(
host = Cypress.env('host')) => {
cy.visit('/?#/connect');
cy.get('[data-cy="address"]').should('be.enabled').clear({force: true}).type(host);
cy.get('span.MuiSwitch-root').eq(0).find('input').click();
cy.get('[data-cy="username"]').should('be.enabled').type(username);
cy.get('[data-cy="password"]').should('be.enabled').type(`${password}{enter}`);
cy.contains('Overview');
Expand Down
12 changes: 6 additions & 6 deletions bitnami/milvus/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
dependencies:
- name: etcd
repository: oci://registry-1.docker.io/bitnamicharts
version: 10.0.0
version: 10.0.7
- name: kafka
repository: oci://registry-1.docker.io/bitnamicharts
version: 28.0.0
version: 28.2.1
- name: minio
repository: oci://registry-1.docker.io/bitnamicharts
version: 14.1.2
version: 14.3.4
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.19.0
digest: sha256:4c24624f8d0e216926c3ce0534590d1eb6b9fcd753174b65c7b4149c4f2a7424
generated: "2024-03-26T15:41:09.773928587+01:00"
version: 2.19.2
digest: sha256:578defe5647e35a8a438bdb2edbc08f105f955be1f34bb68a0509e6f22fd8a60
generated: "2024-05-08T05:51:21.907453078Z"
12 changes: 6 additions & 6 deletions bitnami/milvus/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ annotations:
licenses: Apache-2.0
images: |
- name: attu
image: docker.io/bitnami/attu:2.3.8-debian-12-r5
image: docker.io/bitnami/attu:2.3.10-debian-12-r2
- name: milvus
image: docker.io/bitnami/milvus:2.3.12-debian-12-r0
image: docker.io/bitnami/milvus:2.4.1-debian-12-r2
- name: os-shell
image: docker.io/bitnami/os-shell:12-debian-12-r16
image: docker.io/bitnami/os-shell:12-debian-12-r20
- name: pymilvus
image: docker.io/bitnami/pymilvus:2.3.7-debian-12-r0
image: docker.io/bitnami/pymilvus:2.4.1-debian-12-r2
apiVersion: v2
appVersion: 2.3.12
appVersion: 2.4.1
dependencies:
- name: etcd
repository: oci://registry-1.docker.io/bitnamicharts
Expand Down Expand Up @@ -48,4 +48,4 @@ maintainers:
name: milvus
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/milvus
version: 7.0.0
version: 7.0.1
Loading
Loading