As of now, each application when created gets a Cloud Deploy service account that does the app deployment on the GKE cluster. This SA gets container.developer role so it can technically deploy to any namespace in the cluster, which is a security risk.
We should follow a principle least privilege and implement RBAC based SA so that they can only deploy to a given name space on the cluster.
An example on how to do this is https://cloud.google.com/deploy/docs/securing/sa-by-namespace