diff --git a/.vib/kibana/cypress/cypress/support/utils.js b/.vib/kibana/cypress/cypress/support/utils.js index 1db246050e..134f337375 100644 --- a/.vib/kibana/cypress/cypress/support/utils.js +++ b/.vib/kibana/cypress/cypress/support/utils.js @@ -8,6 +8,12 @@ export let random = (Math.random() + 1).toString(36).substring(9); export const skipTheWelcomeScreen = () => { + // There is a bug introduced in Chromium 114+ that causes a redirection loop + // Workaround proposed at https://github.com/cypress-io/cypress/issues/25891 + // TODO: remove workaround once VIB Cypress version is updated to 13.6.3+ + if(top.location.protocol == 'https:') { + top.history.replaceState('', '', top.location.href.replace('https://', 'http://')) + } cy.visit('/'); cy.get('[data-test-subj="kbnLoadingMessage"]').should('not.exist'); cy.get('.euiLoadingSpinner').should('not.exist'); diff --git a/bitnami/kibana/Chart.yaml b/bitnami/kibana/Chart.yaml index 2583d19e6c..86e681c7a4 100644 --- a/bitnami/kibana/Chart.yaml +++ b/bitnami/kibana/Chart.yaml @@ -5,14 +5,10 @@ annotations: category: Analytics licenses: Apache-2.0 images: | - - o - - s - - '-' - - s - - h - - e - - l - - l + - name: kibana + image: docker.io/bitnami/kibana:8.12.1-debian-11-r1 + - name: os-shell + image: docker.io/bitnami/os-shell:11-debian-11-r96 apiVersion: v2 appVersion: 8.12.1 dependencies: @@ -36,4 +32,4 @@ maintainers: name: kibana sources: - https://github.com/bitnami/charts/tree/main/bitnami/kibana -version: 10.8.4 +version: 10.8.5 diff --git a/bitnami/kibana/values.yaml b/bitnami/kibana/values.yaml index 6f3800d128..287fadfda6 100644 --- a/bitnami/kibana/values.yaml +++ b/bitnami/kibana/values.yaml @@ -73,7 +73,7 @@ diagnosticMode: image: registry: docker.io repository: bitnami/kibana - tag: 8.12.1-debian-11-r0 + tag: 8.12.1-debian-11-r1 digest: "" ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'