Skip to content

Commit 5d7eede

Browse files
Merge pull request #163 from Linkurious/develop
Release 0.0.29 [ci:run]
2 parents 630ed12 + f075e50 commit 5d7eede

File tree

7 files changed

+34
-5
lines changed

7 files changed

+34
-5
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.0.28
2+
current_version = 0.0.29
33
commit = False
44
tag = False
55
serialize =

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.28
1+
0.0.29

charts/neo4jv5-internal/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.0.31
18+
version: 0.0.32
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
apiVersion: networking.k8s.io/v1
2+
kind: NetworkPolicy
3+
metadata:
4+
name: "{{.Release.Name}}-job"
5+
namespace: {{ .Release.Namespace }}
6+
labels:
7+
{{- include "neo4j-lke.labels" . | nindent 4 }}
8+
spec:
9+
# https://editor.cilium.io/?id=rGvdpkpvU1mnl2Ct
10+
podSelector:
11+
matchLabels:
12+
{{- include "neo4j-lke.selectorLabels" . | nindent 12 }}
13+
policyTypes:
14+
- Egress
15+
- Ingress
16+
ingress:
17+
- from:
18+
- podSelector:
19+
matchLabels:
20+
{{- include "neo4j-lke.selectorLabels" . | nindent 12 }}
21+
egress:
22+
- to:
23+
- podSelector:
24+
matchLabels:
25+
{{- include "neo4j-lke.selectorLabels" . | nindent 12 }}
26+
ports:
27+
- port: 7687

charts/neo4jv5-internal/values.preview.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
neo4j:
2+
23
config:
34
# Devops, Engineering
45
dbms.security.oidc.azure.authorization.group_to_role_mapping: |

charts/neo4jv5-internal/values.prod.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ neo4j:
2121
resources:
2222
requests:
2323
cpu: 1000m
24-
memory: "2Gi"
24+
memory: "3Gi"
2525
limits:
2626
cpu: 2000m
27-
memory: "2Gi"
27+
memory: "3Gi"
2828

2929
# Uncomment to set the initial password
3030
# password: "my-initial-password"

charts/neo4jv5-internal/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# https://github.com/neo4j/helm-charts/blob/dev/neo4j/values.yaml
22

33
neo4j:
4+
disableLookups: true
45

56
securityContext:
67
runAsNonRoot: true

0 commit comments

Comments
 (0)