File tree 3 files changed +29
-1
lines changed
3 files changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 0.0.31
18
+ version : 0.0.32
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
# https://github.com/neo4j/helm-charts/blob/dev/neo4j/values.yaml
2
2
3
3
neo4j :
4
+ disableLookups : true
4
5
5
6
securityContext :
6
7
runAsNonRoot : true
You can’t perform that action at this time.
0 commit comments