Key Concepts
Ingress
Ingress Controller
Ingress Class
TLS/SSL
Required Permissions
Ingress Status Values
How to View Ingresses
Select Cluster
Select Namespace
Filter and Search
How to View Ingress Details
Find the Ingress
Click Ingress Name
Review Details
- Overview: Name, namespace, status, ingress class, age
- Address: Load balancer IP or hostname
- Rules: Host-based routing with paths and backend services
- TLS: SSL/TLS configuration with secret references
- Default Backend: Fallback service for unmatched requests
- Labels & Annotations: Metadata and controller-specific settings
- Events: Recent events from the ingress controller
How to Create an Ingress
Click Create Ingress
Write YAML
spec.ingressClassName- Which ingress controller to usespec.rules- Host and path routing rulesspec.tls- TLS/SSL configuration
Select Namespace
Create
How to Edit an Ingress
Open Actions Menu
Click Edit Ingress
Modify Spec
- Add or modify routing rules
- Update TLS configuration
- Change backend services
- Add controller-specific annotations
Save
How to Delete an Ingress
Open Actions Menu
Click Delete
Confirm
Routing Rules
Ingress rules define how traffic is routed based on host and path:Path Types
TLS Configuration
TLS enables HTTPS for your ingress:tls.crt (certificate) and tls.key (private key) fields. Use kubectl create secret tls to create it from certificate files.Common Annotations
Annotations configure controller-specific behavior. Examples for NGINX Ingress Controller:Troubleshooting
Ingress stuck in Pending status
Ingress stuck in Pending status
- Verify an Ingress Controller is installed and running
- Check the ingress controller pods for errors
- Verify the
ingressClassNamematches your controller - Review ingress events for provisioning errors
404 Not Found
404 Not Found
- Check host header matches the ingress rule
- Verify path matches the configured pathType
- Test without host to check default backend
- Review ingress controller logs
TLS/SSL not working
TLS/SSL not working
- Verify the TLS secret exists in the same namespace
- Check secret has
tls.crtandtls.keyfields - Ensure hosts in TLS config match the rules
- Verify certificate is valid and not expired
Ingress address not assigned
Ingress address not assigned
- Check ingress controller has external IP or LoadBalancer
- Verify cloud provider integration for LoadBalancer services
- For bare metal, check MetalLB or similar is configured
- Review ingress controller service status
Changes not taking effect
Changes not taking effect
- Ingress controllers may cache configurations
- Check ingress controller logs for reload events
- Verify the ingress resource was actually updated
- Some changes may require controller restart
Wrong backend being selected
Wrong backend being selected
- Check path specificity - more specific paths should be listed first
- Verify pathType matches your routing needs
- Check for conflicting ingress rules
- Review controller-specific path matching behavior
FAQ
Do I need an Ingress Controller?
Do I need an Ingress Controller?
What's the difference between Ingress and LoadBalancer Service?
What's the difference between Ingress and LoadBalancer Service?
Can I use multiple Ingress Controllers?
Can I use multiple Ingress Controllers?
ingressClassName to specify which controller handles each Ingress. This allows different controllers for different use cases (e.g., internal vs external traffic).How do I enable HTTPS?
How do I enable HTTPS?
tls section with your hosts and a Secret containing the certificate. The controller handles SSL termination. For automatic certificates, consider cert-manager with Let’s Encrypt.What is the default backend?
What is the default backend?
How do I route based on path?
How do I route based on path?
pathType: Prefix for prefix matching (e.g., /api matches /api/users) or pathType: Exact for exact path matching.Can I use the same host in multiple Ingresses?
Can I use the same host in multiple Ingresses?
How do I redirect HTTP to HTTPS?
How do I redirect HTTP to HTTPS?
nginx.ingress.kubernetes.io/ssl-redirect: "true". Most controllers support automatic HTTP to HTTPS redirection.