Skip to content

Commit 441dd69

Browse files
authored
rename ingress.yaml to ingress-values.yaml (#1132) (#1133)
Cherry-picked from #1132
1 parent a37bde6 commit 441dd69

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

modules/ROOT/pages/kubernetes/accessing-neo4j-ingress.adoc

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,13 @@ helm upgrade --install ingress-nginx ingress-nginx \
103103

104104
== Configure the Kubernetes Ingress
105105

106-
Configure the _ingress.yaml_ file that you will use to install the Reverse proxy Helm chart.
106+
Configure the _ingress-values.yaml_ file that you will use to install the Reverse proxy Helm chart.
107107

108-
=== Configure the _ingress.yaml_ file to access Neo4j on port `:443`
108+
=== Configure the _ingress-values.yaml_ file to access Neo4j on port `:443`
109109

110-
The following example shows how to configure the _ingress.yaml_ file to access Neo4j on port `:443`:
110+
The following example shows how to configure the _ingress-values.yaml_ file to access Neo4j on port `:443`:
111111

112-
. Create a Kubernetes secret containing the Ingress self-signed certificates and then create the _ingress.yaml_ file.
112+
. Create a Kubernetes secret containing the Ingress self-signed certificates and then create the _ingress-values.yaml_ file.
113113
.. Create a directory for the Ingress self-signed certificates:
114114
+
115115
[source,shell]
@@ -130,7 +130,7 @@ openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout ingress.key -out ing
130130
kubectl create secret tls ingress-cert --key /path/to/your/certs/ingress.key --cert /path/to/your/certs/ingress.cert
131131
----
132132

133-
. Configure the _ingress.yaml_ file with the correct values for the `serviceName` and `secretName`.
133+
. Configure the _ingress-values.yaml_ file with the correct values for the `serviceName` and `secretName`.
134134
Ensure that the `secretName` is the same as the one created in the previous step.
135135
Enable TLS by setting `tls.enabled` to `true`.
136136
+
@@ -149,9 +149,9 @@ reverseProxy:
149149
- localhost
150150
----
151151

152-
=== Configure the _ingress.yaml_ file to access Neo4j on port `:80`
152+
=== Configure the _ingress-values.yaml_ file to access Neo4j on port `:80`
153153

154-
Alternatively, if you want to access Neo4j on port `:80`, leave `tls.enabled` with its default value `false`, and create the _ingress.yaml_ file with the following content:
154+
Alternatively, if you want to access Neo4j on port `:80`, leave `tls.enabled` with its default value `false`, and create the _ingress-values.yaml_ file with the following content:
155155

156156
[source, yaml]
157157
----
@@ -166,11 +166,11 @@ reverseProxy:
166166

167167
== Install the Reverse proxy Helm chart
168168

169-
Install the Reverse proxy Helm chart using the _ingress.yaml_ file that you have created:
169+
Install the Reverse proxy Helm chart using the _ingress-values.yaml_ file that you have created:
170170

171171
[source,shell]
172172
----
173-
helm install rp neo4j/neo4j-reverse-proxy -f /path/to/your/ingress.yaml
173+
helm install rp neo4j/neo4j-reverse-proxy -f /path/to/your/ingress-values.yaml
174174
----
175175

176176
== Access your data via Neo4j Browser

0 commit comments

Comments
 (0)