You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When fetching Kubernetes information, the OAuth token must first be stored in the credentials.
The XdsKubernetesService relies on this stored credential for its operation.
Problem:
Currently, XdsKubernetesService only uses the credentials when creating a KubernetesEndpointGroup.
If the credentials are updated, the KubernetesEndpointGroup is not recreated to reflect the change.
Potential Solutions
Store the OAuth token directly in the Kubernetes configuration to ensure the latest token is always used.
Implement a mechanism to refetch the credentials under certain conditions, such as when an authentication exception occurs.
The text was updated successfully, but these errors were encountered:
When fetching Kubernetes information, the OAuth token must first be stored in the credentials.
The
XdsKubernetesService
relies on this stored credential for its operation.centraldogma/xds/src/main/java/com/linecorp/centraldogma/xds/k8s/v1/XdsKubernetesService.java
Line 228 in 9d95540
Problem:
Currently,
XdsKubernetesService
only uses the credentials when creating aKubernetesEndpointGroup
.If the credentials are updated, the
KubernetesEndpointGroup
is not recreated to reflect the change.Potential Solutions
The text was updated successfully, but these errors were encountered: