Hey, I’m trying to convert .drone.jsonnet into .drone.yml and everything works fine, except service_account_name property that is being skipped.
My pipeline looks like the following, and I need service account name for kubernetes runner in EKS. I guess this property might not be well supported, I found out about it by inspecting code in https://github.com/drone-runners/drone-runner-kube/blob/fb2b2429906a9c59a65104e402c138f5d5cb223f/engine/spec.go.
kind: 'pipeline',
type: 'kubernetes',
name: 'deploy',
service_account_name: 'deploy-account-name',
steps: [...]
Is there a way to somehow fix it or some work around?
I guess it’s less of an issue if this property is honoured when configuring drone to use jsonnet directly (by pointing builds to use .drone.jsonnet). I haven’t tried it yet, as I’m in the process of transitioning from yml to jsonnet and I’m just manually converting to .drone.yml for now.
Thanks,
Ruben