-
Notifications
You must be signed in to change notification settings - Fork 1.7k
ingress: use POD_NAMESPACE as a namespace in cli parameters #1571
ingress: use POD_NAMESPACE as a namespace in cli parameters #1571
Conversation
makes sense to me, will wait for Manuel to lgtm |
@kayrus just a comment: in all the examples the default backend service is created in the default namespace (default-backend.yaml). Is up to the user to specify the correct service. |
@kayrus please do not change the content of the |
@aledbf made this vendor change by script. restored. as for the default backend, I know that. |
e8380f1
to
6551aec
Compare
6551aec
to
b2158fc
Compare
LGTM thanks |
Automatic merge from submit-queue |
…ayrus/fix_default_namespace Automatic merge from submit-queue ingress: use POD_NAMESPACE as a namespace in cli parameters When you deploy ingress not into `default` namespace, ingress RC fails with the `no service with name default/default-http-backend found: services "default-http-backend" not found` error message. This fix uses `POD_NAMESPACE` which we already pass into the pod ENV.
When you deploy ingress not into
default
namespace, ingress RC fails with theno service with name default/default-http-backend found: services "default-http-backend" not found
error message.This fix uses
POD_NAMESPACE
which we already pass into the pod ENV.This change is