blob: 03ece9c59775a9bbd1dd376edfd5d1209d37c909 [file] [log] [blame]
Giorgi Lekveishvili725bb392023-05-05 18:24:27 +04001The ingress-nginx controller has been installed.
2
3{{- if contains "NodePort" .Values.controller.service.type }}
4Get the application URL by running these commands:
5
6{{- if (not (empty .Values.controller.service.nodePorts.http)) }}
7 export HTTP_NODE_PORT={{ .Values.controller.service.nodePorts.http }}
8{{- else }}
9 export HTTP_NODE_PORT=$(kubectl --namespace {{ .Release.Namespace }} get services -o jsonpath="{.spec.ports[0].nodePort}" {{ include "ingress-nginx.controller.fullname" . }})
10{{- end }}
11{{- if (not (empty .Values.controller.service.nodePorts.https)) }}
12 export HTTPS_NODE_PORT={{ .Values.controller.service.nodePorts.https }}
13{{- else }}
14 export HTTPS_NODE_PORT=$(kubectl --namespace {{ .Release.Namespace }} get services -o jsonpath="{.spec.ports[1].nodePort}" {{ include "ingress-nginx.controller.fullname" . }})
15{{- end }}
16 export NODE_IP=$(kubectl --namespace {{ .Release.Namespace }} get nodes -o jsonpath="{.items[0].status.addresses[1].address}")
17
18 echo "Visit http://$NODE_IP:$HTTP_NODE_PORT to access your application via HTTP."
19 echo "Visit https://$NODE_IP:$HTTPS_NODE_PORT to access your application via HTTPS."
20{{- else if contains "LoadBalancer" .Values.controller.service.type }}
21It may take a few minutes for the LoadBalancer IP to be available.
22You can watch the status by running 'kubectl --namespace {{ .Release.Namespace }} get services -o wide -w {{ include "ingress-nginx.controller.fullname" . }}'
23{{- else if contains "ClusterIP" .Values.controller.service.type }}
24Get the application URL by running these commands:
25 export POD_NAME=$(kubectl --namespace {{ .Release.Namespace }} get pods -o jsonpath="{.items[0].metadata.name}" -l "app={{ template "ingress-nginx.name" . }},component={{ .Values.controller.name }},release={{ .Release.Name }}")
26 kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:80
27 echo "Visit http://127.0.0.1:8080 to access your application."
28{{- end }}
29
30An example Ingress that makes use of the controller:
31
32 apiVersion: networking.k8s.io/v1
33 kind: Ingress
34 metadata:
35 annotations:
36 kubernetes.io/ingress.class: {{ .Values.controller.ingressClassResource.name }}
37 name: example
38 namespace: foo
39 spec:
40 rules:
41 - host: www.example.com
42 http:
43 paths:
44 - backend:
45 serviceName: exampleService
46 servicePort: 80
47 path: /
48 # This section is only required if TLS is to be enabled for the Ingress
49 tls:
50 - hosts:
51 - www.example.com
52 secretName: example-tls
53
54If TLS is enabled for the Ingress, a Secret containing the certificate and key must also be provided:
55
56 apiVersion: v1
57 kind: Secret
58 metadata:
59 name: example-tls
60 namespace: foo
61 data:
62 tls.crt: <base64 encoded cert>
63 tls.key: <base64 encoded key>
64 type: kubernetes.io/tls
65
66{{- if .Values.controller.headers }}
67#################################################################################
68###### WARNING: `controller.headers` has been deprecated! #####
69###### It has been renamed to `controller.proxySetHeaders`. #####
70#################################################################################
71{{- end }}