Skip to content

Commit

Permalink
support specify jwt requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
wulianglongrd committed Apr 22, 2023
1 parent 04eb399 commit f4e15d8
Show file tree
Hide file tree
Showing 10 changed files with 461 additions and 49 deletions.
14 changes: 14 additions & 0 deletions kubernetes/customresourcedefinitions.gen.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 46 additions & 0 deletions proto.lock
Original file line number Diff line number Diff line change
Expand Up @@ -44233,6 +44233,24 @@
{
"protopath": "security:/:v1:/:jwt.proto",
"def": {
"enums": [
{
"name": "JWTRule.Requirement",
"enum_fields": [
{
"name": "ALLOW_MISSING"
},
{
"name": "ALLOW_MISSING_OR_FAILED",
"integer": 1
},
{
"name": "ALLOW_VALID",
"integer": 2
}
]
}
],
"messages": [
{
"name": "JWTRule",
Expand Down Expand Up @@ -44291,6 +44309,11 @@
"name": "output_claim_to_headers",
"type": "ClaimToHeader",
"is_repeated": true
},
{
"id": 12,
"name": "requirement",
"type": "Requirement"
}
]
},
Expand Down Expand Up @@ -44729,6 +44752,24 @@
{
"protopath": "security:/:v1beta1:/:jwt.proto",
"def": {
"enums": [
{
"name": "JWTRule.Requirement",
"enum_fields": [
{
"name": "ALLOW_MISSING"
},
{
"name": "ALLOW_MISSING_OR_FAILED",
"integer": 1
},
{
"name": "ALLOW_VALID",
"integer": 2
}
]
}
],
"messages": [
{
"name": "JWTRule",
Expand Down Expand Up @@ -44787,6 +44828,11 @@
"name": "output_claim_to_headers",
"type": "ClaimToHeader",
"is_repeated": true
},
{
"id": 12,
"name": "requirement",
"type": "Requirement"
}
]
},
Expand Down
132 changes: 109 additions & 23 deletions security/v1/jwt.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

55 changes: 54 additions & 1 deletion security/v1/jwt.pb.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f4e15d8

Please sign in to comment.