From 441dd69deb1a68156622a0714b6fa10bd8a14252 Mon Sep 17 00:00:00 2001 From: Reneta Popova Date: Fri, 20 Oct 2023 17:08:39 +0100 Subject: [PATCH] rename ingress.yaml to ingress-values.yaml (#1132) (#1133) Cherry-picked from #1132 --- .../kubernetes/accessing-neo4j-ingress.adoc | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/modules/ROOT/pages/kubernetes/accessing-neo4j-ingress.adoc b/modules/ROOT/pages/kubernetes/accessing-neo4j-ingress.adoc index 9062f61fd..49ce61734 100644 --- a/modules/ROOT/pages/kubernetes/accessing-neo4j-ingress.adoc +++ b/modules/ROOT/pages/kubernetes/accessing-neo4j-ingress.adoc @@ -103,13 +103,13 @@ helm upgrade --install ingress-nginx ingress-nginx \ == Configure the Kubernetes Ingress -Configure the _ingress.yaml_ file that you will use to install the Reverse proxy Helm chart. +Configure the _ingress-values.yaml_ file that you will use to install the Reverse proxy Helm chart. -=== Configure the _ingress.yaml_ file to access Neo4j on port `:443` +=== Configure the _ingress-values.yaml_ file to access Neo4j on port `:443` -The following example shows how to configure the _ingress.yaml_ file to access Neo4j on port `:443`: +The following example shows how to configure the _ingress-values.yaml_ file to access Neo4j on port `:443`: -. Create a Kubernetes secret containing the Ingress self-signed certificates and then create the _ingress.yaml_ file. +. Create a Kubernetes secret containing the Ingress self-signed certificates and then create the _ingress-values.yaml_ file. .. Create a directory for the Ingress self-signed certificates: + [source,shell] @@ -130,7 +130,7 @@ openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout ingress.key -out ing kubectl create secret tls ingress-cert --key /path/to/your/certs/ingress.key --cert /path/to/your/certs/ingress.cert ---- -. Configure the _ingress.yaml_ file with the correct values for the `serviceName` and `secretName`. +. Configure the _ingress-values.yaml_ file with the correct values for the `serviceName` and `secretName`. Ensure that the `secretName` is the same as the one created in the previous step. Enable TLS by setting `tls.enabled` to `true`. + @@ -149,9 +149,9 @@ reverseProxy: - localhost ---- -=== Configure the _ingress.yaml_ file to access Neo4j on port `:80` +=== Configure the _ingress-values.yaml_ file to access Neo4j on port `:80` -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: +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: [source, yaml] ---- @@ -166,11 +166,11 @@ reverseProxy: == Install the Reverse proxy Helm chart -Install the Reverse proxy Helm chart using the _ingress.yaml_ file that you have created: +Install the Reverse proxy Helm chart using the _ingress-values.yaml_ file that you have created: [source,shell] ---- -helm install rp neo4j/neo4j-reverse-proxy -f /path/to/your/ingress.yaml +helm install rp neo4j/neo4j-reverse-proxy -f /path/to/your/ingress-values.yaml ---- == Access your data via Neo4j Browser