-
Notifications
You must be signed in to change notification settings - Fork 100
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
[JANSA] Fix oidcAuthIntrospectionURL/oidcClientSecret description #609
Conversation
Checked commit simaishi@f27fa1d with ruby 2.5.7, rubocop 0.69.0, haml-lint 0.28.0, and yamllint **
|
@abellotti can you please review? |
// Only used with the openid-connect authentication type. | ||
// If not specified, the operator will attempt to fetch its value from the | ||
// "token_introspection_endpoint" field in the Provider metadata at the | ||
// OIDCProviderURL provided. | ||
// +optional | ||
OIDCOAuthIntrospectionURL string `json:"oidcAuthIntrospectionURL"` | ||
// Secret name containing the OIDC client id and secret | ||
// Only used with the openid-connect authentication type |
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.
why is there a diff here ?
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.
Because #582 updated the description at wrong places.
In the original PR for master branch (#571), oidcAuthIntrospectionURL
wad updated. But in the Jansa specific PR (#582), oidcClientSecret
was updated instead.
So this PR is putting back oidcClientSecret
to what it was before #582 and also updating oidcAuthIntrospectionURL
to what it should be now.
I noticed this because backporting #606 to jansa branch conflicted.
this is fine other than the question about that one diff. Also, this will be updated when #606 gets merged to Jansa. |
Follow up for #582 (backport of #571) - looks like that PR added description to wrong variables.