You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Configuring a TLS module without a certificate should configure Ambassador to listen on port 443. The primary use of this is if you are terminating TLS at an L4 LoadBalancer, you need redirect_cleartext_from: 80 for http -> https redirection. This can only be configured in a TLS module.
Should cause Ambassador to listen on 443 and redirect traffic from 80. Starting in 0.50.0-rc2, Kubewatch errors out on that TLS module 2019-01-11 16:59:56 kubewatch [36 TRestarter] 0.50.0 ERROR: service ambassador, namespace default.1: <RichStatus BAD error=TLSContext server found no certificate in secret ambassador-certs in namespace default hostname=ambassador-5958f9547f-k8g45 resolvedname=192.168.0.8 version=0.50.0>.
The text was updated successfully, but these errors were encountered:
This commit makes adding valid secret config in a TLS context
optional. So, when `redirect_cleartext_from` or other valid fields
are specified but the secret specified is invalid, the TLS context
will still go through. This also means that when default
`ambassador-certs` secret is implied by Ambassador, and if it does
not exist, the rest of TLS Context goes through.
Also added tests.
Fix#1104
Regression starting in
0.50.0-rc2
.Configuring a TLS module without a certificate should configure Ambassador to listen on port 443. The primary use of this is if you are terminating TLS at an L4 LoadBalancer, you need
redirect_cleartext_from: 80
for http -> https redirection. This can only be configured in a TLSmodule
.Adding this TLS
Module
:Should cause Ambassador to listen on 443 and redirect traffic from 80. Starting in
0.50.0-rc2
, Kubewatch errors out on that TLS module2019-01-11 16:59:56 kubewatch [36 TRestarter] 0.50.0 ERROR: service ambassador, namespace default.1: <RichStatus BAD error=TLSContext server found no certificate in secret ambassador-certs in namespace default hostname=ambassador-5958f9547f-k8g45 resolvedname=192.168.0.8 version=0.50.0>
.The text was updated successfully, but these errors were encountered: