We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 config:
--- apiVersion: extensions/v1beta1 kind: Ingress metadata: name: api namespace: dev annotations: kubernetes.io/ingress.class: "nginx" spec: tls: - secretName: tls-valid-wildcard-cert hosts: - 'frontend.example.net' - 'backend.example.net' rules: - host: 'frontend.example.net' http: paths: - path: / backend: serviceName: frontend servicePort: 80 - host: 'backend.example.net' http: paths: - path: / backend: serviceName: backend servicePort: 80
Also tried with annotation
ingress.kubernetes.io/ssl-redirect: "true"
The text was updated successfully, but these errors were encountered:
Adding ingress.kubernetes.io/rewrite-target: / makes the HTTP -> HTTPS redirect work. That should not be required.
ingress.kubernetes.io/rewrite-target: /
Sorry, something went wrong.
this is the same: #160
You are right.
No branches or pull requests
Ingress config:
Also tried with annotation
ingress.kubernetes.io/ssl-redirect: "true"
The text was updated successfully, but these errors were encountered: