diff --git a/modules/installation-guide/partials/proc_installing-che-on-kind-using-chectl.adoc b/modules/installation-guide/partials/proc_installing-che-on-kind-using-chectl.adoc index 996fa59f751..74f7d5cb7db 100644 --- a/modules/installation-guide/partials/proc_installing-che-on-kind-using-chectl.adoc +++ b/modules/installation-guide/partials/proc_installing-che-on-kind-using-chectl.adoc @@ -57,9 +57,8 @@ $ kubectl patch storageclass standard -p '{"metadata": {"annotations": {"storage . Install the https://kubernetes.github.io/ingress-nginx/deploy/[NGINX Ingress Controller]: + ---- -$ VERSION=0.30.0 -$ kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/nginx-${VERSION}/deploy/static/mandatory.yaml -$ kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/nginx-${VERSION}/deploy/static/provider/cloud-generic.yaml +$ VERSION=v0.41.0 +$ kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-${VERSION}/deploy/static/provider/aws/deploy.yaml ---- . Install the https://metallb.universe.tf/[MetalLB] load balancer: diff --git a/modules/installation-guide/partials/proc_installing-ingress-on-kubernetes.adoc b/modules/installation-guide/partials/proc_installing-ingress-on-kubernetes.adoc index 2b479f2c891..5c13c06f574 100644 --- a/modules/installation-guide/partials/proc_installing-ingress-on-kubernetes.adoc +++ b/modules/installation-guide/partials/proc_installing-ingress-on-kubernetes.adoc @@ -15,7 +15,8 @@ To install Ingress-nginx: . Install the cloud configuration: + ---- -$ kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v0.34.1/deploy/static/provider/cloud/deploy.yaml +$ kubectl apply \ + -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v0.41.0/deploy/static/provider/cloud/deploy.yaml ---- + @@ -41,6 +42,6 @@ ingress-nginx LoadBalancer 10.0.97.244 40.89.129.194 80:31107/TCP,443:30629/ + ---- $ kubectl get services --namespace ingress-nginx \ - -o jsonpath='{.items[].status.loadBalancer.ingress[0].ip}' + -o jsonpath='{.items[].status.loadBalancer.ingress[0].ip}' 40.89.129.194 ---- diff --git a/modules/installation-guide/partials/proc_preparing-the-aws-system-for-installing-che.adoc b/modules/installation-guide/partials/proc_preparing-the-aws-system-for-installing-che.adoc index 17993ad0ba0..e2d599c5f53 100644 --- a/modules/installation-guide/partials/proc_preparing-the-aws-system-for-installing-che.adoc +++ b/modules/installation-guide/partials/proc_preparing-the-aws-system-for-installing-che.adoc @@ -135,22 +135,12 @@ All the pods in the running state are displayed. To install Ingress-nginx: -. Install the default configuration. -+ -[subs="+quotes",options="nowrap"] ----- -$ kubectl apply \ - -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/master/deploy/static/mandatory.yaml ----- - . Install the configuration for AWS. + [subs="+quotes",options="nowrap"] ---- $ kubectl apply \ - -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/master/deploy/static/provider/aws/service-l4.yaml -$ kubectl apply \ - -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/master/deploy/static/provider/aws/patch-configmap-l4.yaml + -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v0.41.0/deploy/static/provider/aws/deploy.yaml ---- + The following output confirms that the Ingress controller is running.