Welcome to the Linux Foundation Forum!
Lab 11.2 Why Ingress rule is not working?
Hi!
I'm stuck at step 10 from Lab 11.2.
I've used ingress.yaml config from labs solutions folder:
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: ingress-test
namespace: default
spec:
rules:
- host: www.external.com
http:
paths:
- backend:
service:
name: web-one
port:
number: 80
path: /
pathType: ImplementationSpecific
status:
loadBalancer: {}
Applied it successfully:
[14:02]user@ubuntu-vbox-k8s-master[ingress-nginx]$ kubectl get ingress NAME CLASS HOSTS ADDRESS PORTS AGE ingress-test <none> www.external.com 80 11m
And got working web-one service and other:
[14:02]user@ubuntu-vbox-k8s-master[ingress-nginx]$ kubectl get svc NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE kubernetes ClusterIP 10.96.0.1 <none> 443/TCP 30d myingress-ingress-nginx-controller LoadBalancer 10.100.135.99 <pending> 80:31209/TCP,443:31337/TCP 13m myingress-ingress-nginx-controller-admission ClusterIP 10.105.23.218 <none> 443/TCP 13m web-one ClusterIP 10.103.23.224 <none> 80/TCP 7h26m web-two ClusterIP 10.108.186.93 <none> 80/TCP
Then I tried Curl:
[14:03]user@ubuntu-vbox-k8s-master[ingress-nginx]$ curl 10.100.135.99 <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx</center> </body> </html>
It was expected, but I've got same for request with header:
[14:04]user@ubuntu-vbox-k8s-master[ingress-nginx]$ curl -H "Host: www.external.com" http://10.100.135.99 <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx</center> </body> </html>
Could anybody help?
Thanks in advance,
0
Best Answer
-
Hi @Gim6626,
As mentioned in an earlier solution, due to recent changes in the Ingress and Controller relationship, an annotation is required on the Ingress resource:
... metadata: annotations: kubernetes.io/ingress.class: nginx name: ingress-test ...Regards,
-Chris1
Answers
-
Step 15 does not work too, but in other way - it just shows fixed nginx page does not matter what header is passed
0 -
Thank you, it works!
0
Categories
- All Categories
- 178 LFX Mentorship
- 178 LFX Mentorship: Linux Kernel
- 774 Linux Foundation IT Professional Programs
- 383 Cloud Engineer IT Professional Program
- 175 Advanced Cloud Engineer IT Professional Program
- 75 DevOps IT Professional Program - Discontinued
- 7 DevOps & GitOps IT Professional Program
- 103 Cloud Native Developer IT Professional Program
- 7.6K Training Courses & Learning Paths
- 12 AI & ML Training
- 1 Blockchain & Decentralized Identity Training
- 32 Cloud & Containers Training
- 3 Cybersecurity Training
- 2 DevOps & Site-Reliability Training
- 1 Linux Kernel Development Training
- 2 Networking Training
- 2 Open Source Best Practice Training
- 5 System Administration Training
- 1 System Engineering Training
- 6 Web & Application Development Training
- 798 Hardware
- 202 Drivers
- 68 I/O Devices
- 37 Monitors
- 96 Multimedia
- 173 Networking
- 91 Printers & Scanners
- 92 Storage
- 772 Linux Distributions
- 81 Debian
- 68 Fedora
- 24 Linux Mint
- 13 Mageia
- 24 openSUSE
- 151 Red Hat Enterprise
- 31 Slackware
- 13 SUSE Enterprise
- 356 Ubuntu
- 469 Linux System Administration
- 31 Cloud Computing
- 73 Command Line/Scripting
- Github systems admin projects
- 101 Linux Security
- 79 Network Management
- 101 System Management
- 46 Web Management
- 165 Mobile Computing
- 32 Android
- 118 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 406 Off Topic
- 128 Introductions
- 34 Study Material
- 1K Programming and Development
- 310 Kernel Development
- 720 Software Development
- 1K Software
- 418 Applications
- 182 Command Line
- 5 Compiling/Installing
- 71 Games
- 320 Installation
- Archived
- 183 Small Talk
- 2 LFD140 Class Forum
- 1.4K LFS258 Class Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)