From f230af7bac10c9358a6fbd7ff8be26a7d5a0424e Mon Sep 17 00:00:00 2001 From: Harshit Singhvi Date: Tue, 9 Aug 2022 13:04:14 +0100 Subject: [PATCH 1/2] Releasing 4.4.10 --- .circleci/config.yml | 4 ++-- Chart.yaml | 4 ++-- deployment-scenarios/cluster-restore.yaml | 4 ++-- tools/backup/Chart.yaml | 4 ++-- tools/backup/Dockerfile | 2 +- tools/backup/values.yaml | 2 +- tools/restore/Dockerfile | 2 +- values.yaml | 4 ++-- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2f945e8b..23044832 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -293,13 +293,13 @@ jobs: echo "MATCH (n) RETURN count(n) as n;" | kubectl run -i --rm cypher-shell \ --namespace $NAMESPACE \ - --image=neo4j:4.4.9-enterprise --restart=Never \ + --image=neo4j:4.4.10-enterprise --restart=Never \ --command -- ./bin/cypher-shell -u neo4j -p "$NEO4J_PASSWORD" \ -a bolt://$NAME_RESTORE-neo4j.$NAMESPACE.svc.cluster.local 2>&1 | tee restore-result.log echo "MATCH (n) RETURN count(n) as n;" | kubectl run -i --rm cypher-shell \ --namespace $NAMESPACE \ - --image=neo4j:4.4.9-enterprise --restart=Never \ + --image=neo4j:4.4.10-enterprise --restart=Never \ --command -- ./bin/cypher-shell -u neo4j -p "$NEO4J_PASSWORD" \ -a neo4j://$NAME_RESTORE-neo4j.$NAMESPACE.svc.cluster.local 2>&1 | tee restore-result.log cp restore-result.log $BUILD_ARTIFACTS/ diff --git a/Chart.yaml b/Chart.yaml index 4a0882ae..7e5aeb87 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 name: neo4j home: https://www.neo4j.com -version: 4.4.9 -appVersion: 4.4.9 +version: 4.4.10 +appVersion: 4.4.10 description: Neo4j is the world's leading graph database keywords: - graph diff --git a/deployment-scenarios/cluster-restore.yaml b/deployment-scenarios/cluster-restore.yaml index c58e1cb0..52d7285f 100644 --- a/deployment-scenarios/cluster-restore.yaml +++ b/deployment-scenarios/cluster-restore.yaml @@ -7,7 +7,7 @@ core: restore: enabled: true image: gcr.io/neo4j-helm/restore - imageTag: 4.4.9 + imageTag: 4.4.10 secretName: neo4j-gcp-credentials #neo4j-aws-credentials database: neo4j,system cloudProvider: gcp #aws @@ -20,7 +20,7 @@ readReplica: restore: enabled: true image: gcr.io/neo4j-helm/restore - imageTag: 4.4.9 + imageTag: 4.4.10 secretName: neo4j-gcp-credentials #neo4j-aws-credentials database: neo4j,system cloudProvider: gcp #aws diff --git a/tools/backup/Chart.yaml b/tools/backup/Chart.yaml index 8af68cdc..7a996e79 100644 --- a/tools/backup/Chart.yaml +++ b/tools/backup/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 name: neo4j-backup home: https://www.neo4j.com -version: 4.4.9 -appVersion: 4.4.9 +version: 4.4.10 +appVersion: 4.4.10 description: Neo4j Backup Utility keywords: - graph diff --git a/tools/backup/Dockerfile b/tools/backup/Dockerfile index f3ad46eb..1ccb037f 100644 --- a/tools/backup/Dockerfile +++ b/tools/backup/Dockerfile @@ -11,7 +11,7 @@ RUN echo "deb https://httpredir.debian.org/debian stretch-backports main" | tee RUN echo "neo4j-enterprise neo4j/question select I ACCEPT" | debconf-set-selections RUN echo "neo4j-enterprise neo4j/license note" | debconf-set-selections -RUN apt-get update && apt-get install -y neo4j-enterprise=1:4.4.9 google-cloud-sdk unzip less \ +RUN apt-get update && apt-get install -y neo4j-enterprise=1:4.4.10 google-cloud-sdk unzip less \ && rm -rf /var/lib/apt/lists/* RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && unzip awscliv2.zip && ./aws/install && rm awscliv2.zip RUN curl -sL https://aka.ms/InstallAzureCLIDeb | bash diff --git a/tools/backup/values.yaml b/tools/backup/values.yaml index 316f9fa2..8c1c7566 100644 --- a/tools/backup/values.yaml +++ b/tools/backup/values.yaml @@ -1,5 +1,5 @@ image: gcr.io/neo4j-helm/backup -imageTag: 4.4.9 +imageTag: 4.4.10 podLabels: {} podAnnotations: {} neo4jaddr: holder-neo4j.default.svc.cluster.local:6362 diff --git a/tools/restore/Dockerfile b/tools/restore/Dockerfile index 87ebc385..36d23f12 100644 --- a/tools/restore/Dockerfile +++ b/tools/restore/Dockerfile @@ -1,4 +1,4 @@ -FROM neo4j:4.4.9-enterprise +FROM neo4j:4.4.10-enterprise RUN apt-get update \ && apt-get install -y curl wget gnupg apt-transport-https apt-utils lsb-release unzip less \ && rm -rf /var/lib/apt/lists/* diff --git a/values.yaml b/values.yaml index 4c6bf2fe..f0164385 100644 --- a/values.yaml +++ b/values.yaml @@ -7,7 +7,7 @@ name: "neo4j" # Specs for the Neo4j docker image image: "neo4j" -imageTag: "4.4.9-enterprise" +imageTag: "4.4.10-enterprise" imagePullPolicy: "IfNotPresent" # imagePullSecret: registry-secret acceptLicenseAgreement: "no" @@ -159,7 +159,7 @@ core: restore: enabled: false image: gcr.io/neo4j-helm/restore - imageTag: 4.4.9 + imageTag: 4.4.10 secretName: null database: neo4j,system cloudProvider: gcp From aef5ef14f4edde0203b9495c1c62ee1f484cd85c Mon Sep 17 00:00:00 2001 From: Harshit Singhvi Date: Wed, 10 Aug 2022 09:09:19 +0100 Subject: [PATCH 2/2] Updating index.yaml --- index.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/index.yaml b/index.yaml index 64f728a5..8784254c 100644 --- a/index.yaml +++ b/index.yaml @@ -2,6 +2,16 @@ apiVersion: v1 generated: 2021-04-29T21:17:54.857071000+02:00 entries: neo4j-backup: + - created: 2022-08-10T09:08:16.836786000+01:00 + description: Neo4j 4.4.10 + digest: 70bf12bf13fa5788305e77ef8edf09889be4a9028edf176506ff586bf50836bf + home: https://github.com/neo4j-contrib/neo4j-helm + name: neo4j + sources: + - https://github.com/neo4j-contrib/neo4j-helm + urls: + - https://github.com/neo4j-contrib/neo4j-helm/releases/download/4.4.10/neo4j-backup-4.4.10.tgz + version: 4.4.10 - created: 2022-07-21T17:04:03.338814000+01:00 description: Neo4j 4.4.9 digest: 8ada9d6af94d03bf7dce21b841480c42b0d6c2a1c6f5f37f478907b097065a62 @@ -343,6 +353,16 @@ entries: - https://github.com/neo4j-contrib/neo4j-helm/releases/download/4.0.5-1/neo4j-backup-4.0.5-1.tgz version: 4.0.4-1 neo4j: + - created: 2022-08-10T09:08:16.836786000+01:00 + description: Neo4j 4.4.10 + digest: e3cc602189f1552bcfc5e7be2aac585c790e3872df352f9dcd2a57a9121ea299 + home: https://github.com/neo4j-contrib/neo4j-helm + name: neo4j + sources: + - https://github.com/neo4j-contrib/neo4j-helm + urls: + - https://github.com/neo4j-contrib/neo4j-helm/releases/download/4.4.10/neo4j-4.4.10.tgz + version: 4.4.10 - created: 2022-07-21T17:04:03.338814000+01:00 description: Neo4j 4.4.9 digest: 59e5c274d468b52351474d23c3b93425efae7ebde342ab74a6c94749cc194d31