File tree Expand file tree Collapse file tree 7 files changed +34
-5
lines changed Expand file tree Collapse file tree 7 files changed +34
-5
lines changed Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 0.0.28
2+ current_version = 0.0.29
33commit = False
44tag = False
55serialize =
Original file line number Diff line number Diff line change 1- 0.0.28
1+ 0.0.29
Original file line number Diff line number Diff 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
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 11neo4j :
2+
23 config :
34 # Devops, Engineering
45 dbms.security.oidc.azure.authorization.group_to_role_mapping : |
Original file line number Diff line number Diff 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"
Original file line number Diff line number Diff line change 11# https://github.com/neo4j/helm-charts/blob/dev/neo4j/values.yaml
22
33neo4j :
4+ disableLookups : true
45
56 securityContext :
67 runAsNonRoot : true
You can’t perform that action at this time.
0 commit comments