This includes updates to CI config, vendor files, etc. I've hard-coded the k8s depedency at 1.13.4 to keep it inline with what we currently have and to make sure a another run of `go mod tidy` doesn't accidentally update it to an unexpected version. Thanks to hectorj2f for carrying this along.
context
gorilla/context is a general purpose registry for global request variables.
Note: gorilla/context, having been born well before
context.Contextexisted, does not play well with the shallow copying of the request thathttp.Request.WithContext(added to net/http Go 1.7 onwards) performs. You should either use just gorilla/context, or moving forward, the newhttp.Request.Context().
Read the full documentation here: http://www.gorillatoolkit.org/pkg/context
