old_mixer_repo
old_mixer_repo copied to clipboard
Deprecated home of Istio's Mixer and its adapters, now in istio/istio's mixer dir
As discussed in TCP design proposal, we need to figure out how to do resource quotas appropriately. This would allow policy enforcement around things like: number of open TCP connections...
Currently mixer gets all the HTTP headers from proxy, the headers might include sensitive information. For example `Authorization` header might include JWT token which can be replayed, or even worse...
The interface for REPORT adapters supports receiving an array of instances at a time, but Mixer currently only delivers single items. Given that Mixer receives reports in batches, it would...
In Mixer, pkg/api/globalWordList.go contains the current global word list. This is a copy of a file in istio/api/mixer/v1/global_word_dictionary.yml. It'd be great to generate Mixer's go file directly from what's in...
We have no story around pushing traces to various backends, and how new tracing implementations fit into Istio. We need to develop a strategy and produce designs around ingesting trace...
Hi, [Casbin](https://github.com/casbin/casbin) is an authorization library that supports models like ACL, RBAC, ABAC. Related to RBAC, Casbin has several advantages: 1. roles can be cascaded, aka roles can have roles....
douglas-reid commented @ZackButcher agreed. Let's get a pre-commit hook for gazelle working. It'd be awesome to couple that with codecov checks too (which currently are enforced for 3?? packages). Also...
Service configuration is frequently placed under source control to manage changes. If configuration contains sensitive data like api keys, users names and passwords needed by connection configuration, it cannot be...
We form keys into redis by combining all the labels of a request. If we configure multiple aspects using the same labels, our code will get confused and will incorrectly...
Currently, there are a lot of redundant code in `memQuota_test.go` and `redisquota_test.go.` Need to find a way to reuse the common code and reduce duplications.