feat: basic functionality implemented
- added Core CRD to manage DB migrations & configuration, PostgREST and GoTrue (auth) - added APIGateway CRD to manage Envoy proxy - added Dashboard CRD to manage (so far) pg-meta and (soon) studio deployments - implemented basic Envoy control plane based on K8s watcher
This commit is contained in:
parent
2fae578618
commit
647f602c79
123 changed files with 12173 additions and 581 deletions
internal/jwk
9
internal/jwk/set.go
Normal file
9
internal/jwk/set.go
Normal file
|
@ -0,0 +1,9 @@
|
|||
package jwk
|
||||
|
||||
type Key interface {
|
||||
SymmetricKey
|
||||
}
|
||||
|
||||
type Set[T Key] struct {
|
||||
Keys []T `json:"keys"`
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue