When I create a service account in Kubernetes with the following specification
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: deploy-bot
It automatically creates the following secret with prefix deploy-bot-token-XXXX
$ kubectl get secret
NAME TYPE DATA AGE
default-token-lvq79 kubernetes.io/service-account-token 3 60m
deploy-bot-token-7gmnh kubernetes.io/service-account-token 3 4m53s
Is there a way via which we can disable the automatic creation of secret tokens while creating service accounts?