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
What happened: The gateway.spec.tls.mode field is not being defaulted.
gateway.spec.tls.mode
What you expected to happen: The field set to "Terminate" (i.e. the default) when unspecified.
How to reproduce it (as minimally and precisely as possible):
cat examples/wildcard-https.yaml
make install
kubectl get gateways/gateway -o yaml
Anything else we need to know?: Other fields that should be defaulted may be effected by this bug.
The text was updated successfully, but these errors were encountered:
The TLS mode is unspecified:
$ cat examples/wildcard-https.yaml kind: Gateway ... tls: options: {} certificateRef: name: example-wildcard kind: Secret group: core ...
The mode should be set to "Terminate" (default) but it's nil:
$ kubectl get gateways/gateway -o yaml apiVersion: networking.x-k8s.io/v1alpha1 kind: Gateway ... tls: certificateRef: group: core kind: Secret name: example-wildcard options: {} routeOverride: certificate: Deny ...
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
What happened:
The
gateway.spec.tls.mode
field is not being defaulted.What you expected to happen:
The field set to "Terminate" (i.e. the default) when unspecified.
How to reproduce it (as minimally and precisely as possible):
cat examples/wildcard-https.yaml
make install
kubectl get gateways/gateway -o yaml
Anything else we need to know?:
Other fields that should be defaulted may be effected by this bug.
The text was updated successfully, but these errors were encountered: