Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ingress-rules not displayed (just the default host) #14

Open
stefan2904 opened this issue Feb 16, 2019 · 0 comments
Open

Ingress-rules not displayed (just the default host) #14

stefan2904 opened this issue Feb 16, 2019 · 0 comments

Comments

@stefan2904
Copy link

I have the following Ingress configuration (which is working):

---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  name: nginx-ingress1
  annotations:  
    kubernetes.io/ingress.class: nginx
    certmanager.k8s.io/cluster-issuer: letsencrypt-prod
spec:
  tls:
  - hosts:
    - nginx-ingress1.example.com
    - nginx-ingress2.example.com
    secretName: letsencrypt-prod
  backend:
    serviceName: nginx-example1
    servicePort: 80
  rules:
  - host: nginx-ingress1.example.com
    http:
      paths: 
      - path: /
        backend:
          serviceName: nginx-example1
          servicePort: 80
  - host: nginx-ingress2.example.com
    http:
      paths: 
      - path: /
        backend:
          serviceName: nginx-example2
          servicePort: 80

So there are two hosts (mapped to two services) plus a default host (mapped to one of the services).

Unfortunately spekt8 only renders the default host:

selection_768

My expectation is that this Ingress is supposed to point at both services.


(I am new to kubernetes, so I am not sure if I used the correct terms for the mentioned concepts, e.g. "Ingress rule" and "default host".)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant