-
Notifications
You must be signed in to change notification settings - Fork 139
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
feat: simplify token audiences config #947
base: incubation
Are you sure you want to change the base?
Changes from all commits
5547a5a
518f888
941e71d
cea9305
94d8626
a5b609c
0b63d2d
1374f2a
b156a34
c99d6d7
5fd931a
7365c32
0e20b23
cae6062
e38a8ad
bb1289e
287b303
0a32786
e349c3c
9bb75de
adf2672
ef204ab
98c69c5
ae69939
fc544c5
a27dba9
65887e4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
package cluster | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"reflect" | ||
|
||
"github.com/go-logr/logr" | ||
authentication "k8s.io/api/authentication/v1" | ||
"sigs.k8s.io/controller-runtime/pkg/client" | ||
) | ||
|
||
var ( | ||
// Default value of audiences for DSCI.SM.auth. | ||
defaultAudiences = []string{"https://kubernetes.default.svc"} | ||
) | ||
|
||
func isDefaultAudiences(specAudiences *[]string) bool { | ||
return specAudiences == nil || reflect.DeepEqual(*specAudiences, defaultAudiences) | ||
} | ||
|
||
type TokenSupplier func() (string, error) | ||
|
||
// GetEffectiveClusterAudiences returns the audiences defined for the cluster | ||
// falling back to the default audiences in case of errors. | ||
func GetEffectiveClusterAudiences(cli client.Client, log logr.Logger, specAudiences *[]string, getTokenFunc TokenSupplier) []string { | ||
if isDefaultAudiences(specAudiences) { | ||
return fetchClusterAudiences(cli, log, getTokenFunc) | ||
} | ||
return *specAudiences | ||
} | ||
|
||
func fetchClusterAudiences(cli client.Client, log logr.Logger, getTokenFunc TokenSupplier) []string { | ||
token, err := getTokenFunc() | ||
if err != nil { | ||
log.Error(err, "Error getting token, using default audiences") | ||
return defaultAudiences | ||
} | ||
|
||
tokenReview := &authentication.TokenReview{ | ||
Spec: authentication.TokenReviewSpec{ | ||
Token: token, | ||
}, | ||
} | ||
|
||
if err = cli.Create(context.Background(), tokenReview, &client.CreateOptions{}); err != nil { | ||
log.Error(err, "Error creating TokenReview, using default audiences") | ||
return defaultAudiences | ||
} | ||
|
||
if tokenReview.Status.Error != "" || !tokenReview.Status.Authenticated { | ||
log.Error(fmt.Errorf(tokenReview.Status.Error), "Error with token review authentication status, using default audiences") | ||
return defaultAudiences | ||
} | ||
|
||
return tokenReview.Status.Audiences | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Reading these docs: https://kubernetes.io/docs/reference/access-authn-authz/authentication/. There is a note that the audiences field is optional and that, if not present, it may still mean the token is valid for the cluster. So, I'm not sure if this is safe. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Underlying AuthConfig will be defaulted if not configured specifically.
Current implementation defaults it to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In the docs that I linked, there is this text over
IIRC, this default is on odh-model-controller side. This is OK. My concern is that my understanding of the kubernetes docs is that the cluster may choose to omit the The writing is somewhat confusing. So, I may be understanding things badly. |
||
} |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we should stick to the correct terminology. We are providing canned responses, so this is stubbing, not mocking. A bit more about it in this great blog post https://martinfowler.com/articles/mocksArentStubs.html |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
package cluster_test | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
|
||
"github.com/go-logr/logr" | ||
authentication "k8s.io/api/authentication/v1" | ||
"sigs.k8s.io/controller-runtime/pkg/client" | ||
|
||
"github.com/opendatahub-io/opendatahub-operator/v2/pkg/cluster" | ||
|
||
. "github.com/onsi/ginkgo/v2" | ||
. "github.com/onsi/gomega" | ||
) | ||
|
||
var defaultAudiences = []string{"https://kubernetes.default.svc"} | ||
|
||
var _ = Describe("Handling Token Audiences", func() { | ||
var logger logr.Logger | ||
|
||
BeforeEach(func() { | ||
logger = logr.Logger{} | ||
}) | ||
|
||
Context("Determining the effective cluster audiences", func() { | ||
When("non-default audiences are provided", func() { | ||
It("should return the provided audiences", func() { | ||
specAudiences := []string{"https://example.com"} | ||
Expect(cluster.GetEffectiveClusterAudiences(nil, logger, &specAudiences, cluster.GetSAToken)).To(Equal(specAudiences)) | ||
}) | ||
}) | ||
|
||
When("non-default audiences are fetched successfully", func() { | ||
It("should return the fetched audiences", func() { | ||
stubAudiences := []string{"https://stub.audience.com"} | ||
stubGetSAToken := func() (string, error) { | ||
return "stub_token", nil | ||
} | ||
|
||
fakeClient := &stubAudiencesClient{stubAudiences: stubAudiences} | ||
|
||
Expect(cluster.GetEffectiveClusterAudiences(fakeClient, logger, nil, stubGetSAToken)).To(Equal(stubAudiences)) | ||
}) | ||
}) | ||
|
||
When("an error occurs while fetching the audiences", func() { | ||
It("should return the default audiences", func() { | ||
stubFailGettingToken := func() (string, error) { | ||
return "", fmt.Errorf("we failed getting token") | ||
} | ||
|
||
Expect(cluster.GetEffectiveClusterAudiences(nil, logger, nil, stubFailGettingToken)).To(Equal(defaultAudiences)) | ||
}) | ||
}) | ||
}) | ||
}) | ||
|
||
type stubAudiencesClient struct { | ||
client.Client | ||
stubAudiences []string | ||
} | ||
|
||
// controller-runtime fake client package does not allow to hook into request/response chain, unlike client-go | ||
// fake clientset, where we could use "reactors" [1] | ||
// To manipulate TokenReview.Status (from where the audiences are read) we need to hook | ||
// into response of the Create operation, so stubbing client.Client#Create is the easiest and sufficient option. | ||
// | ||
// [1] https://pkg.go.dev/k8s.io/[email protected]/testing#Fake.AddReactor | ||
func (s *stubAudiencesClient) Create(_ context.Context, obj client.Object, _ ...client.CreateOption) error { | ||
if tokenReview, isTokenReview := obj.(*authentication.TokenReview); isTokenReview { | ||
tokenReview.Status.Audiences = s.stubAudiences | ||
tokenReview.Status.Authenticated = true | ||
return nil | ||
} | ||
return nil | ||
} |
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.
This seems to use the ServiceAccount mounted by the cluster, as a pivot to find the audientes.
I wonder if it isn't enough to parse the ServiceAccount token?
Just by parsing the one from CRC, I see the audiences claim in the payload:
I'm not sure how it would be for ROSA.
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.
Correct, originally we were using opaque token for the bash "workaround" and this solution is based on this, so perhaps, using SA (jwt) token aud is simpler and more efficient. We could replace this impl and use https://github.com/golang-jwt/jwt instead to fetch standard claims without verification (so passing
nil
as the key func ). @israel-hdez @aslakknutsen do you think it's better to rely on the fact that SA token is JWT?I just checked in ROSA and we can also parse JWT instead. For opaque (openshift oauth) tokens it's the same audience. We can get it by using the exact call to TokenReview API.
This behavior is only invoked when you do not specify anything in DSCI.ServiceMesh.Auth part. If you later do, it will update underlying config map which is now used by
odh-model-controller
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.
AFAIK, core Kubernetes only supports JWT (read 1st sentence of this). So, I'd expect any SA token to be JWT. I understand we have control about the mounted/projected token so, as long as the setup does not change, we should be safe to assume it is a JWT.
About the opaque tokens, my understanding is that in core Kubernetes these are only supported when a 3rd party issues the token and the API Server would validate the token via a Webhook to the 3rd party (i.e. Kubernetes does not validate by its own). OpenShift's OAuth server may fall in this category.