I am interested in https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/#service-account-token-volume-projection which allows users to project customized service account token into a Pod's volume.
If I have one projected volume with one ServiceAccountToken in a live pod as below Spec:
Am I able to add one more serviceAccountToken without restart the Pod? I followed above K8s wiki and can only de-deploy or recreate the pod to make the projected volume in Pod to pick new serviceAccountToken via kubectl apply:
So my question is:
Does K8S support dynamically bind more serviceAccountToken into a projected volume? If not, is there any plan to support this feature, I guess that would be very useful to use with OIDC feature. Since user may want to have new audience and want separate tokens.
Thank you!
Yi