-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
kube-apiserver: Add oidc-required-claim flag #6453
kube-apiserver: Add oidc-required-claim flag #6453
Conversation
Hi @jeyglk. Thanks for your PR. I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/assign @geojaz |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Left the one comment just to check ..
pkg/apis/kops/componentconfig.go
Outdated
// A key=value pair that describes a required claim in the ID Token. | ||
// If set, the claim is verified to be present in the ID Token with a matching value. | ||
// Repeat this flag to specify multiple claims. | ||
OIDCRequiredClaim map[string]string `json:"oidcRequiredClaim,omitempty" flag:"oidc-required-claim"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Has this been tested with multiple claims?
The documentation
--oidc-required-claim mapStringString
| A key=value pair that describes a required claim in the ID Token. If set, the claim is verified to be present in the ID Token with a matching value. Repeat this flag to specify multiple claims.
i.e. the Repeat this flag to specify multiple claims
... but the default of the flagbuilder reflection which converts the struct to command line args is to append map[string]string like --node-labels=k1=v1,k2=v2 etc
If it's not supported perhaps use a slice and add the repeat
tag to the annotation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, the flag doesn't support multiple claims. Thanks for the suggestion, that makes sense. Will try 👍
b271b74
to
893742f
Compare
@gambol99 comment addressed, PTAL |
/ok-to-test @geojaz are we still generating the api docs? |
/test pull-kops-e2e-kubernetes-aws |
1 similar comment
/test pull-kops-e2e-kubernetes-aws |
/lgtm |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: gambol99, jeyglk The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
This PR adds the oidc-required-claim flag for kube-apiserver, that has been released in Kubernetes 1.11.
This would work if we specify one key-value claim, however it would fail for more than one pair.This is due to the implementation of this flag. More info in this PR
https://github.com/kubernetes/kubernetes/pull/62136/filesI am not sure what would be the best approach? Any input is welcome.EDIT: Should be all good now!