Difference between revisions of "Spec.IngressClassName"

From wikieduonline
Jump to navigation Jump to search
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
+
{{lc}}
 
  [[ingressClassName: nginx]]
 
  [[ingressClassName: nginx]]
 +
[[ingressClassName: alb]]
 +
[[ingressClassName: ""]]
  
  
 +
[[helm install grafana]]: [[ingress]].ingressClassName 
  
 
== Single rule ==
 
== Single rule ==
Line 51: Line 54:
 
== Related ==
 
== Related ==
 
* [[Kubernetes: Ingress controllers]]
 
* [[Kubernetes: Ingress controllers]]
* [[kubectl describe ingressclass]]
+
* <code>[[kubectl describe ingressclass]]</code>
* [[kubectl get ingressclass]]
+
* <code>[[kubectl get ingressclass]]</code>
 +
* <code>[[helm install grafana]]</code>
  
 
== See also ==
 
== See also ==

Latest revision as of 14:31, 13 February 2024

ingressClassName: nginx
ingressClassName: alb
ingressClassName: ""


helm install grafana: ingress.ingressClassName  

Single rule[edit]

spec:
  ingressClassName: nginx
  rules:
    - host: yourhost.com
      http:
        paths:
          - path: /
            pathType: Prefix
            backend:
              service:
                name: yourservicename
                port:
                  number: 80

Multiple rules[edit]

spec:
 ingressClassName: nginx
 rules:
   - host: chart-example.local
     http:
       paths:
         - path: /
           pathType: Prefix
           backend:
             service:
               name: grafana
               port:
                 number: 80
   - host: prometheus.chart-example.local
     http:
       paths:
         - path: /
           pathType: Prefix
           backend:
             service:
               name: prometheus-server
               port:
                 number: 80


Changes[edit]

  • Ingresses can specify the class they are associated with by using a new ingressClassName field on Ingresses

Related[edit]

See also[edit]

Advertising: