-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(build): fix image tags to work with helm
- Loading branch information
1 parent
0dd8620
commit 68ae49a
Showing
4 changed files
with
37 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
## TODO | ||
|
||
- Groups are probably what most users are going to want to use to configure all | ||
this. The closest to the OpenID spec would be via adding extra scopes that add | ||
the data required to the token and then map back to a group. Imagine: | ||
|
||
```yaml | ||
user: email | ||
group: https://myapp.example.com/group | ||
``` | ||
The downside to using this kind of configuration is that it'll need to be | ||
handled in the provider backend and it is unclear how easy that'll be. It is | ||
possible in auth0, so I'll go down this route for now. | ||
- Is there a way to do FPS on a per-session basis with prometheus? Naively the | ||
way to do it would be to have a per-session label value, but that would be | ||
crazy for cardinality. |