Eirik Nygaard
Eirik Nygaard
To get deep linking to work I needed to add this patch, it is hacky as the nginx ingress does not encode the query pairs properly: ``` diff --git a/oauthproxy.go...
The nginx ingress controller requests auth using this statement: error_page 401 = https://host/oauth2/start?rd=$scheme://$http_host$request_uri; Where the $scheme://$http_host$request_uri should be url encoded, which would allow us to fetch the value using the...
My ingress setup look like this: ``` --- apiVersion: extensions/v1beta1 kind: Ingress metadata: annotations: ingress.kubernetes.io/auth-signin: https://hostname.example.net/oauth2/start ingress.kubernetes.io/auth-url: https://hostname.example.net/oauth2/auth ingress.kubernetes.io/ssl-redirect: "true" kubernetes.io/ingress.class: nginx kubernetes.io/tls-acme: "true" labels: app: foo name: foo spec:...
@bnsd55 support for sending all vespa log entries to the container's stdout is in progress here: https://github.com/vespa-engine/docker-image/pull/34 Here is a sample of what it will look like with the new...