hi,
I'm following the k8s installation docs here: https://docs.seqera.io/platform-cloud/compute-envs/k8s
There is a step describing the process of creating a persistant api token.
kubectl apply -f - <<EOF
apiVersion: v1
kind: Secret
metadata:
name: tower-launcher-token
annotations:
kubernetes.io/service-account.name: tower-launcher-sa
type: kubernetes.io/service-account-token
EOF
These long lived tokens no longer appear to be recommend and are described as 'legacy tokens' and the yaml above does not appear to even generate a secret any more. I believe tokens are now cycled periodically, expired if unused and their lifecycle is somewhat different too.
Are there updated instructions available for k8s v1.32?
Thanks!