How to configure a non-default serviceAccount on a deployment How to configure a non-default serviceAccount on a deployment kubernetes kubernetes

How to configure a non-default serviceAccount on a deployment


As you will need to specify 'podSpec' in Deployment as well, you should be able to configure the service account in the same way. Something like:

apiVersion: extensions/v1beta1kind: Deploymentmetadata:  name: my-deploymentspec:  template:    # Below is the podSpec.    metadata:      name: ...    spec:      serviceAccountName: build-robot      automountServiceAccountToken: false      ...