Skip to content
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.

Commit

Permalink
Adding changes for 4.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Harshit Singhvi committed Mar 28, 2022
1 parent f6e46d6 commit 4717210
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.4-enterprise --restart=Never \
--image=neo4j:4.4.5-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.4-enterprise --restart=Never \
--image=neo4j:4.4.5-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/
Expand Down
4 changes: 2 additions & 2 deletions Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v1
name: neo4j
home: https://www.neo4j.com
version: 4.4.4
appVersion: 4.4.4
version: 4.4.5
appVersion: 4.4.5
description: Neo4j is the world's leading graph database
keywords:
- graph
Expand Down
4 changes: 2 additions & 2 deletions deployment-scenarios/cluster-restore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ core:
restore:
enabled: true
image: gcr.io/neo4j-helm/restore
imageTag: 4.4.4
imageTag: 4.4.5
secretName: neo4j-gcp-credentials #neo4j-aws-credentials
database: neo4j,system
cloudProvider: gcp #aws
Expand All @@ -20,7 +20,7 @@ readReplica:
restore:
enabled: true
image: gcr.io/neo4j-helm/restore
imageTag: 4.4.4
imageTag: 4.4.5
secretName: neo4j-gcp-credentials #neo4j-aws-credentials
database: neo4j,system
cloudProvider: gcp #aws
Expand Down
2 changes: 1 addition & 1 deletion doc/docs/modules/ROOT/pages/externalexposure.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ We can verify our service is running nicely like this:

```
$ kubectl get service | grep neo4j-external
zeke-neo4j-external LoadBalancer 10.0.5.183 35.202.123.82 7687:30529/TCP,74.4.40843/TCP,7473:30325/TCP 115s
zeke-neo4j-external LoadBalancer 10.0.5.183 35.202.123.82 7687:30529/TCP,74.4.50843/TCP,7473:30325/TCP 115s
```

After all of these steps, you should end up with a cluster properly exposed. We can recover our password
Expand Down
6 changes: 3 additions & 3 deletions doc/docs/modules/ROOT/pages/externalexposure42.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -225,9 +225,9 @@ We can verify our services are running nicely like this:

```
$ kubectl get service | grep neo4j-external
zeke-neo4j-external-0 LoadBalancer 10.0.5.183 35.202.123.82 7687:30529/TCP,74.4.40843/TCP,7473:30325/TCP 115s
zeke-neo4j-external-1 LoadBalancer 10.0.9.182 34.71.151.230 7687:31059/TCP,74.4.41288/TCP,7473:31009/TCP 115s
zeke-neo4j-external-2 LoadBalancer 10.0.12.38 35.232.116.39 7687:30523/TCP,74.4.40844/TCP,7473:31732/TCP 114s
zeke-neo4j-external-0 LoadBalancer 10.0.5.183 35.202.123.82 7687:30529/TCP,74.4.50843/TCP,7473:30325/TCP 115s
zeke-neo4j-external-1 LoadBalancer 10.0.9.182 34.71.151.230 7687:31059/TCP,74.4.51288/TCP,7473:31009/TCP 115s
zeke-neo4j-external-2 LoadBalancer 10.0.12.38 35.232.116.39 7687:30523/TCP,74.4.50844/TCP,7473:31732/TCP 114s
```

After all of these steps, you should end up with a cluster properly exposed. We can recover our password
Expand Down
4 changes: 2 additions & 2 deletions tools/backup/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v1
name: neo4j-backup
home: https://www.neo4j.com
version: 4.4.4
appVersion: 4.4.4
version: 4.4.5
appVersion: 4.4.5
description: Neo4j Backup Utility
keywords:
- graph
Expand Down
2 changes: 1 addition & 1 deletion tools/backup/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.4 google-cloud-sdk unzip less \
RUN apt-get update && apt-get install -y neo4j-enterprise=1:4.4.5 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
Expand Down
2 changes: 1 addition & 1 deletion tools/backup/values.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
image: gcr.io/neo4j-helm/backup
imageTag: 4.4.4
imageTag: 4.4.5
podLabels: {}
podAnnotations: {}
neo4jaddr: holder-neo4j.default.svc.cluster.local:6362
Expand Down
2 changes: 1 addition & 1 deletion tools/restore/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM neo4j:4.4.4-enterprise
FROM neo4j:4.4.5-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/*
Expand Down
4 changes: 2 additions & 2 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name: "neo4j"

# Specs for the Neo4j docker image
image: "neo4j"
imageTag: "4.4.4-enterprise"
imageTag: "4.4.5-enterprise"
imagePullPolicy: "IfNotPresent"
# imagePullSecret: registry-secret
acceptLicenseAgreement: "no"
Expand Down Expand Up @@ -159,7 +159,7 @@ core:
restore:
enabled: false
image: gcr.io/neo4j-helm/restore
imageTag: 4.4.4
imageTag: 4.4.5
secretName: null
database: neo4j,system
cloudProvider: gcp
Expand Down

0 comments on commit 4717210

Please sign in to comment.