cybozu-go / accurate

Kubernetes controller for multi-tenancy. It propagates resources between namespaces accurately and allows tenant users to create/delete sub-namespaces.
https://cybozu-go.github.io/accurate/
Apache License 2.0
38 stars 5 forks source link

Support Kubernetes 1.24 #57

Closed masa213f closed 2 years ago

masa213f commented 2 years ago

https://github.com/cybozu-go/accurate/issues/55 Support Kubernetes 1.24 and update dependencies.

And I update e2e test due to the following change in k8s 1.24.

https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.24.md#urgent-upgrade-notes

The LegacyServiceAccountTokenNoAutoGeneration feature gate is beta, and enabled by default. When enabled, Secret API objects containing service account tokens are no longer auto-generated for every ServiceAccount. Use the TokenRequest API to acquire service account tokens, or if a non-expiring token is required, create a Secret API object for the token controller to populate with a service account token by following this guide.

Signed-off-by: Masayuki Ishii masa213f@gmail.com