From b4a0ef71f940e062cdd147b1f0a7476433c7a281 Mon Sep 17 00:00:00 2001 From: Tyler Smalley Date: Mon, 25 Jan 2021 13:39:49 -0800 Subject: [PATCH] Upgrade Kibana to 7.10.2 Signed-off-by: Tyler Smalley --- Dockerfile | 4 ++-- hardening_manifest.yaml | 10 +++++----- scripts/kibana-docker | 4 ++++ 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 14b80c8..5fe80de 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,8 +14,8 @@ RUN yum update --setopt=tsflags=nodocs -y && \ RUN mkdir /usr/share/kibana WORKDIR /usr/share/kibana -COPY --chown=1000:0 kibana-7.10.1-linux-x86_64.tar.gz . -RUN tar --strip-components=1 -zxf kibana-7.10.1-linux-x86_64.tar.gz +COPY --chown=1000:0 kibana-7.10.2-linux-x86_64.tar.gz . +RUN tar --strip-components=1 -zxf kibana-7.10.2-linux-x86_64.tar.gz # Ensure that group permissions are the same as user permissions. # This will help when relying on GID-0 to run Kibana, rather than UID-1000. # OpenShift does this, for example. diff --git a/hardening_manifest.yaml b/hardening_manifest.yaml index 7be6f06..528eda6 100644 --- a/hardening_manifest.yaml +++ b/hardening_manifest.yaml @@ -8,7 +8,7 @@ name: "elastic/kibana/kibana" # The most specific version should be the first tag and will be shown # on ironbank.dsop.io tags: -- "7.10.1" +- "7.10.2" - "latest" # Build args passed to Dockerfile ARGs @@ -23,18 +23,18 @@ labels: org.opencontainers.image.licenses: "Elastic License" org.opencontainers.image.url: "https://www.elastic.co/products/kibana" org.opencontainers.image.vendor: "Elastic" - org.opencontainers.image.version: "7.10.1" + org.opencontainers.image.version: "7.10.2" # mil.dso.ironbank.image.keywords: "" # mil.dso.ironbank.image.type: "commercial" mil.dso.ironbank.product.name: "Kibana" # List of resources to make available to the offline build context resources: -- filename: kibana-7.10.1-linux-x86_64.tar.gz - url: https://artifacts.elastic.co/downloads/kibana/kibana-7.10.1-linux-x86_64.tar.gz +- filename: kibana-7.10.2-linux-x86_64.tar.gz + url: https://artifacts.elastic.co/downloads/kibana/kibana-7.10.2-linux-x86_64.tar.gz validation: type: sha512 - value: bf332b3c13c4d71d3e6a1e8b68cca85b215151b5130f862ea14c548f72bca0978829cd49af8d8e9ce1bc46098c65add7d8a0cf5ec4767b219a0cd7474ec78f11 + value: aa68f850cc09cf5dcb7c0b48bb8df788ca58eaad38d96141b8e59917fd38b42c728c0968f7cb2c8132c5aaeb595525cdde0859554346c496f53c569e03abe412 - filename: dumb-init url: https://github.com/Yelp/dumb-init/releases/download/v1.2.2/dumb-init_1.2.2_amd64 validation: diff --git a/scripts/kibana-docker b/scripts/kibana-docker index f8d5bd7..49feba1 100755 --- a/scripts/kibana-docker +++ b/scripts/kibana-docker @@ -162,6 +162,9 @@ kibana_vars=( xpack.code.security.gitProtocolWhitelist xpack.encryptedSavedObjects.encryptionKey xpack.encryptedSavedObjects.keyRotation.decryptionOnlyKeys + xpack.fleet.agents.elasticsearch.host + xpack.fleet.agents.kibana.host + xpack.fleet.agents.tlsCheckDisabled xpack.graph.enabled xpack.graph.canEditDrillDownUrls xpack.graph.savePolicy @@ -234,6 +237,7 @@ kibana_vars=( xpack.security.authc.oidc.realm xpack.security.authc.saml.realm xpack.security.authc.saml.maxRedirectURLSize + xpack.security.authc.selector.enabled xpack.security.cookieName xpack.security.enabled xpack.security.encryptionKey -- GitLab